Main > Free Download Search >

Free fixture universe software for linux

fixture universe

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 92
Universe 0.15

Universe 0.15


Universe project is a Open Source Master Of Orion-like game. more>>
Universe project is a Open Source Master Of Orion-like game.

Universe is an Open-Source game which resembles Master Of Orion. It is written in Java.

The goal is to have as few arbitrary limits as possible, allowing games as large as you wish. It also supports a concept called "Schemes" which allows programmers to develop distinct rule sets and extensions.

<<less
Download (0.48MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1176 downloads
Scum of the Universe 1.0

Scum of the Universe 1.0


Scum of the Universe is a space trading game that combines two genres: arcade and strategy. more>>
Scum of the Universe is a space trading game that combines two genres: arcade and strategy. On one side, its a classic vertical-scrolling space shooter game. On the other side, it is an adventure and strategy. You should choose whether youll be an independent space trader, firearms smuggler, fierce freedom-fighter or something in between.

Following the main storyline, you go through the galaxy from one planet to another. Space travel requires fuel, so you need to keep earning money to buy it. You can also buy various upgrades for your spaceship and weapons that affect the arcade part of the game. The storyline itself is not linear. There are also some points where youll need to make decisions that will determine your destiny.

For thousands of years, people of planet Xen have colonized the planets in their galaxy. As time went by, many colonies grew unhappy about their status, as everything was controlled by Xen. Some of them organized military units and declared independence. You can see the status of each planet by "Rebel Sentiment" indicator. Planets with RS higher than 50% are ruled by the Rebel government, and Rebel laws apply.

Trading firearms is legal on planets ruled by Rebels, as they need as much firepower as they can get. On the other hand, Empire forbid all the trading with firearms and other ground weaponry as they wish to maintain their military advantage. One of the ways to make a lot of money is to buy cheap guns at Empire planets and sell them for a lot of money on Rebel planets where demand is extremely high. But be careful as youll need to fight Empire fleet once they find out youre a smuggler.

Beside the raging war between Xen Empire and the rebels there is increased activity of alien species, who destroy human ships. The stronger alien activity, the more waves of alien ships youll need to defeat in each planets outer orbit. Some of the aliens you destroy may drop artifacts (big blue ones) which you can sell at any space station for 20credits a piece.

<<less
Download (3.6MB)
Added: 2007-06-01 License: Freeware Price:
877 downloads
Virtual Universe Client 0.72

Virtual Universe Client 0.72


Virtual Universe is a 3D cyberspace which offers more possibilities than just chat. more>>
The "Virtual Universe" is a 3D cyberspace which offers more possibilities than just chat: it is a combination of the Web, chat, and instant messaging within a realistic, three-dimensional cyberspace.
The "Virtual Universe" is a virtual reality environment which runs on top of the Internet.
Main features:
- chat with each other
- see the chat-partner as a virtual, three-dimensional person
- interact and communicate
- be creative in many ways
- create own worlds for any desired subject
Enhancements:
- A lighting bug in .COB/.SCN loader has been fixed.
<<less
Download (16.8MB)
Added: 2007-01-08 License: Freeware Price:
1020 downloads
Universe Crimson 1.1.1

Universe Crimson 1.1.1


Universe Crimson is a red theme with some hubble images as the wallpaper, but i like it. more>>
Universe Crimson is a red theme with some hubble images as the wallpaper, but i like it.

This theme is great, works with every thing, w00t a dark theme that works!

<<less
Download (1.7MB)
Added: 2007-04-13 License: Artistic License Price:
927 downloads
XCruiser 0.30

XCruiser 0.30


XCruiser project is a filesystem vizualization utility for X. more>>
XCruiser project is a filesystem vizualization utility for X.
XCruiser (formerly known as XCruise) is a filesystem visualization utility which compares a filesystem to a 3D-formed universe and allows you to "cruise" within it.
It constructs a universe from directory trees, and you can navigate with a mouse.
Enhancements:
- The code was rewritten almost entirely.
New features:
- Xt is supported.
- Easy customization of button bindings / colors / accelaration.
- Keyboard support (but inconvenient).
- A new rendering algorithm. (still incomplete!)
- Monochrome mode is dismissed.
<<less
Download (0.030MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1085 downloads
FITpro for Eclipse 0.51

FITpro for Eclipse 0.51


FITpro for Eclipse allows easier creation of FIT tests and suites, more flexible test execution, and more. more>>
FITpro for Eclipse allows easier creation of FIT tests and suites, more flexible test execution, and more.
Main features:
- Create Fit tests in WYSWIG HTML Editor
- Create suites, ordered collections of Fit tests and sub-suites.
- Execute tests and suites.
- Link from tests to related fixtures.
- Insert Test Template into a Fit test, based on an existing fixture.
<<less
Download (2.9MB)
Added: 2007-08-06 License: Eclipse Public License Price:
811 downloads
Virtual Universe 0.57 (Virtual World Server)

Virtual Universe 0.57 (Virtual World Server)


Virtual Universe World Server is a component which runs as subserver of a Universe server. more>>
Virtual Universe World Server is a component which runs as subserver of a Universe server.

The area such a worldserver can handle is limited only by the configuration the universe executes this server with.

The package offers unlimited free updates, unlimited free security-fixes
<<less
Download (MB)
Added: 2007-06-14 License: Freeware Price:
870 downloads
IGE - Outer Space 0.5.65

IGE - Outer Space 0.5.65


IGE - Outer Space is an on-line strategy game with SciFi theme. more>>
IGE - Outer Space is an on-line strategy game with SciFi theme.

IGE - Outer Space is an on-line strategy game which takes place in the dangerous universe. You must become the commander of many stars, planets, and great fleets and you will struggle for survival with other commanders.

Outer Space communicates with the server in the same way as your browser, but you will need a special client to play it. Using this client you can create an account on the server and you can start to explore the world of the Outer Space.

<<less
Download (MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
805 downloads
Test::Unit::TestCase 0.14

Test::Unit::TestCase 0.14


Test::Unit::TestCase is a unit testing framework base class. more>>
Test::Unit::TestCase is a unit testing framework base class.

SYNOPSIS

package FooBar;
use base qw(Test::Unit::TestCase);

sub new {
my $self = shift()->SUPER::new(@_);
# your state for fixture here
return $self;
}

sub set_up {
# provide fixture
}
sub tear_down {
# clean up after test
}
sub test_foo {
# test the foo feature
}
sub test_bar {
# test the bar feature
}

(Taken from the JUnit TestCase class documentation)

A test case defines the "fixture" (resources need for testing) to run multiple tests. To define a test case:

implement a subclass of TestCase
define instance variables that store the state of the fixture
initialize the fixture state by overriding set_up()
clean-up after a test by overriding tear_down().

Each test runs in its own fixture so there can be no side effects among test runs. Here is an example:

package MathTest;
use base qw(Test::Unit::TestCase);

sub new {
my $self = shift()->SUPER::new(@_);
$self->{value_1} = 0;
$self->{value_2} = 0;
return $self;
}

sub set_up {
my $self = shift;
$self->{value_1} = 2;
$self->{value_2} = 3;
}

For each test implement a method which interacts with the fixture. Verify the expected results with assertions specified by calling $self->assert() with a boolean value.

sub test_add {
my $self = shift;
my $result = $self->{value_1} + $self->{value_2};
$self->assert($result == 5);
}

Once the methods are defined you can run them. The normal way to do this uses reflection to implement run_test. It dynamically finds and invokes a method. For this the name of the test case has to correspond to the test method to be run. The tests to be run can be collected into a TestSuite. The framework provides different test runners, which can run a test suite and collect the results. A test runner either expects a method suite() as the entry point to get a test to run or it will extract the suite automatically.

If you do not like the rather verbose backtrace that appears when a test fails, you can use the quell_backtrace() method. You will get any message provided, but not the backtrace.

<<less
Download (0.044MB)
Added: 2007-06-13 License: Perl Artistic License Price:
864 downloads
True3D*Shell 1.3

True3D*Shell 1.3


True3D*Shell is an open source 3D desktop environment that allows users to experience 3D browsing. more>>
True3D*Shell is an open source 3D desktop environment that allows users to experience 3D browsing in a virtual reality universe where information is organized in bubbles connected by pipes. True3D*Shell is based on POSIX, Win32, FreeGLUT, OpenGL and MQ4CPP, and runs on IA32 and IA64 SMP platforms.
A user can browse local and remote filesystems and download and run selected files. It includes a robot mode that allows you to browse automatically.
Main features:
- Shell : provides access to the kernel services
- Desktop environment : offers a graphical user interface (GUI) solution to operate a computer
- Avatar : provides a fantastic representations of a persons self with witch user can explore the virtual universe.
- Virtual Reality : users can interact with a virtual environment either through the use of standard input devices such as a keyboard and mouse, or through multimodal devices.
- MVC paradigm : is a software architecture that separates an applications data model, user interface, and control logic into three distinct components.
- Multithreading : Threads are a way for a program to split itself into two or more simultaneously running tasks. Multiple threads can be executed in parallel on many computer systems.
- Grid computing : provides the ability to perform higher throughput computing by taking advantage of many networked computers to model a virtual computer architecture that is able to distribute process execution across a parallel infrastructure.
- MOM paradigms : Message Oriented Middleware is a category of inter-application communication software that relies on asynchronous message passing as opposed to a request/response metaphor.
<<less
Download (3.3MB)
Added: 2006-08-29 License: LGPL (GNU Lesser General Public License) Price:
1152 downloads
Quake 4 1.1 Point Release

Quake 4 1.1 Point Release


Quake 4 is a highly appreciated FPS game. more>>
Earth is under siege by the Strogg, a barbaric alien race moving through the universe consuming, recycling and annihilating any civilization in their path. In a desperate attempt to survive, an armada of Earths finest warriors is sent to take the battle to the Strogg home planet.
You are Matthew Kane, an elite member of Rhino Squad and Earths valiant invasion force. Fight alone, with your squad, or in hover tanks and mechanized walkers as you engage in a heroic mission to the heart of the Strogg war machine.
Battle through the beginning of the game as a combat marine, then after your capture, as a marine-turned-Strogg with enhanced abilities and the power to turn the tide of the war.
Built on id Softwares revolutionary DOOM 3 technology, QUAKE 4 also features fast-paced multiplayer competition modeled after the speed, feel, and style of QUAKE III Arena.
Quake 4 DEMO is released by Id Software.
Main features:
- Highly anticipated sequel to id softwares award-winning QUAKE II.
- Diversity of combat. Fight through solo missions as well as buddy and squad-based operations; or pilot heavy walkers and hover tanks through outdoor battles and epic firefights.
- Being captured and converted to Strogg becomes Earths only hope for defeating the Strogg.
- Player is not alone - he and his squad are part of a massive invasion force.
- Utilizes the industry leading DOOM 3 technology to create an unparalleled visual and aural experience.
- Arena-style multiplayer that allows players to play as Strogg or Marine in deathmatch, team deathmatch and capture-the-flag modes.
Enhancements:
- n addition to a number of new changes and updates, this 1.1 Point Release also includes the changes from update 1.0.4.0, beta 1.0.5.0 and beta 1.0.5.2. If you have not previously updated QUAKE 4, this update will bring your installation completely up to date. If you have previously installed an earlier update, this update can be installed over the earlier update(s) without problems - there is no need to re-install previous updates released through the id Software website. Doing so may adversely affect the proper functionality of your installation.
<<less
Download (321.7MB)
Added: 2006-03-29 License: Freeware Price:
1304 downloads
Free Orion 0.3

Free Orion 0.3


FreeOrion is an open-source game inspired by Master of Orion. more>>
FreeOrion is an open-source game inspired by Master of Orion, is a turn-based game of epic space strategy that builds on the classic 4X model by incorporating the nation-building elements of games such as Europa Universalis 2 and a versatile tactical combat engine.

While its modular, open-source design allows for a significant degree of customization of the game engine and the story elements by the community, the FreeOrion team is dedicated to the construction of a living, breathing universe in a grand campaign model.

<<less
Download (MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1027 downloads
Privateer Remake 1.2

Privateer Remake 1.2


Privateer gives you the freedom to carve your own path in the Wing Commander universe. more>>
Privateer gives you the freedom to carve your own path in the Wing Commander universe. Opportunity abounds in the Gemini Sector.
Wedged between the unknown frontier and the Kilrathi Empire, Gemini is home to various competing factions with which you can choose to align yourself.
Upgrade your ship or trade it in to deal with the demands of a Privateer. Find your fortune by logging into the mission computer, or take your chances with seedy characters in bars.
Meet up with Sandoval in New Detroit, tilt back a glass with Demetria in a Munchen bar in the Tingerhoff System. Make your way as a trader, traitor, bounty hunter, or pirate. Only you can imagine what you might encounter beyond the frontier.
Enhancements:
- New Refinery, Mining Base, Kamekh, Drayman, and Orion art was added.
- The targetting system was redone and is now more like the original.
- Radar range was reduced and all ships now have 2D wireframe HUD images and damage is shown by quadrant.
- The ship dealer now also functions as he did in the original.
- The auto-light now turns off when you are close to your destination.
- When a ship that is communicating with you is destroyed, its message now gets cut off. Asteroids can now be destroyed and mined.
- The repair bot was fixed.
- Unknown ships are there for the Righteous Fire campaign.
<<less
Download (190MB)
Added: 2005-07-18 License: GPL (GNU General Public License) Price:
1565 downloads
Thousand Parsec 0.4.1

Thousand Parsec 0.4.1


Thousand Parsec is a 4 Xs game (eXplore, eXpand, eXterminate, eXploit). more>>
Thousand Parsec is a 4 Xs game (eXplore, eXpand, eXterminate, eXploit) but it is different in the sense that it is designed for long games supporting universes as large as your computer can handle. (Have a quad Xeon with 4 gig of ram? Well have a couple of million systems in your universe!.

Thousand Parsec also supports long term play with players joining and leaving throughout the game. As well the tech tree is easily expandable and can be extended during the game without effecting anybody already playing (ie introduction of new technology as the game progresses).

You can choose to have highly exotic universes where the laws of physics are totally different or universes that are very similar to our own.

The game is TURN BASED, this means that clicking quickly isnt vital but strategy is.

The game should also be highly extend-able. Allowing player customisation not found in the commercial games.

Anyway we have high hopes for what TP will become. We have currently stolen a lot of ideas from Stars!, VGA Planets an XPace.
<<less
Download (0.21MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
959 downloads
StarTrade V0056

StarTrade V0056


StarTrade isa 2D topdown spacesimulation. more>>
StarTrade isa 2D topdown spacesimulation.
Main features:
- Game complete modifiable
- Nice particelsystem for smoke and spaceship engine etc.
- cool explosions
- intelligent NPCs, living Universe.
- weapons, ships, items, trade goods
- Prices change by demand and supply
- three factions
- actionfull spacefights
StarTrade is a Spacesimulation like Wing Commander:Privateer or X-Beyond the Frontier with 2D world view. You can trade, pirate or work for the Allianze to hunt pirats.
As some of you may have noticed, there was a game-submission a few months ago - "StarTrade", a freeware-currently-in-development-spacesim ressembling Wing Commander: privateer, Freelancer or X. But as most comments were positive, motivating to download StarTrade and give it a go, a problem showed up: StarTrade has been german-only.
I suddendly realized that, when releasing StarTrade for Linux-users, there will be also a large number of potentional gamers who do not speak german, so I started a communityproject in our official forum aiming at a first, rough (well.. we got a slight lack of translators who speak english as their first language) english translation - and here it is. Just visit the official StarTrade homepage (http://www.fetzenet.de), download, after already having installed StarTrade, the English-Mod and follow the instructions.
However, this is only a first attempt - Ive created an international Area in the official forum and everyones welcome to visit us. If you encounter any translation-errors or just want to improve something feel free to join the communityproject - the released version is only a first try.
Thats it. Have fun to everyone who will try out StarTrade e.g. the international Version of it!
<<less
Download (29.9MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1020 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5