car world
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1065
Car World 0.243
CarWorld is a small driving simulator/demo I use to test various things of interest. more>>
CarWorld is a small driving simulator/demo I use to test various things of interest. It was mostly developed when I was a student. Car World is released with the full source code under the GNU General Public License.
The rendering
The two top pictures represent an slightly older version (v0.072) but graphically similar of CarWorld as it was presented for my project. v0.072 includes an OpenGL based renderer allowing
file input and displaying of texture mapped models with interpolated surface normals, real time projected shadows (as seen in the dino lights example).
background object
on screen command line to modify visual and simulation parameters
The mechanics
based on classical mechanics
uses standard metrics (Newtons, meters, seconds...)
there are no constraints on the environment surface
variable length time increments and variable increment number means "CarWorld time" is not dependent on frame rate.
adjustable simulation specs include: metrics, mass, moment of inertia around rotation axis, suspension pre load, compression damping, rebound damping, engine torque output, air friction, surface friction.
<<lessThe rendering
The two top pictures represent an slightly older version (v0.072) but graphically similar of CarWorld as it was presented for my project. v0.072 includes an OpenGL based renderer allowing
file input and displaying of texture mapped models with interpolated surface normals, real time projected shadows (as seen in the dino lights example).
background object
on screen command line to modify visual and simulation parameters
The mechanics
based on classical mechanics
uses standard metrics (Newtons, meters, seconds...)
there are no constraints on the environment surface
variable length time increments and variable increment number means "CarWorld time" is not dependent on frame rate.
adjustable simulation specs include: metrics, mass, moment of inertia around rotation axis, suspension pre load, compression damping, rebound damping, engine torque output, air friction, surface friction.
Download (0.64MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1203 downloads
Rail World 0.8
Rail World is a 2-D train simulation game. more>>
Rail World project is a 2-D train simulation game.
Rail World is a railroad train simulation game designed to bring the features of model railroading to the desktop using actual aerial or satellite photographs as the backdrop for maps.
You can control multiple trains, switches, load/unload cargo, and more.
Main features:
- Use actual aerial photographs or satellite images as the basis for maps.
- Manage multiple trains as a conductor.
- Drive trains using throttle and brake as an engineer.
- Grapple with realistic physics, including stopping distance and collisions.
- Set switches and specific train routing.
- Load and unload cargo.
<<lessRail World is a railroad train simulation game designed to bring the features of model railroading to the desktop using actual aerial or satellite photographs as the backdrop for maps.
You can control multiple trains, switches, load/unload cargo, and more.
Main features:
- Use actual aerial photographs or satellite images as the basis for maps.
- Manage multiple trains as a conductor.
- Drive trains using throttle and brake as an engineer.
- Grapple with realistic physics, including stopping distance and collisions.
- Set switches and specific train routing.
- Load and unload cargo.
Download (4.5MB)
Added: 2007-06-23 License: GPL (GNU General Public License) Price:
870 downloads
XO World 0.1
XO World is a board game that lets you play Tic-tac-toe versus computer on 10x10 board. more>>
XO World is a board game that lets you play Tic-tac-toe versus computer on 10x10 board.
You play against computer on 10x10 board. Both you and opponent place signs (yours is X, and computers is O) on the board - one at a time. The goal is to make a line of 5 signs before your opponent. Lines can be horizontal, vertical or diagonal.
<<lessYou play against computer on 10x10 board. Both you and opponent place signs (yours is X, and computers is O) on the board - one at a time. The goal is to make a line of 5 signs before your opponent. Lines can be horizontal, vertical or diagonal.
Download (0.13MB)
Added: 2007-02-19 License: Freeware Price:
978 downloads
Robotworld 0.1
Robotworld is a distributed world for programmable robots. more>>
Robot World aims to be a distributed physical environment inhabited by programmable robots, spanning across countless computers on the internet in true peer-to-peer fashion.
Robot World components:
- Parser / compiler compiles robot programs into byte code, stored in a .xml file
- Inject - send a robot program to the world
- RobotWorld - the world simulation program
- dsm - the bytecode disassembler
- rowo.y - language grammar file
parser
Compile a robot. Creates an .xml file from a .r file
$ parser sample.r
dsm
Disassembles a robot .xml file.
$ dsm sample.xml
robotworld
Testbed. Receiving server for "inject" - see below.
$ robotworld
inject
Send robot to world. "robotworld" must be running.
$ inject sample.xml
<<lessRobot World components:
- Parser / compiler compiles robot programs into byte code, stored in a .xml file
- Inject - send a robot program to the world
- RobotWorld - the world simulation program
- dsm - the bytecode disassembler
- rowo.y - language grammar file
parser
Compile a robot. Creates an .xml file from a .r file
$ parser sample.r
dsm
Disassembles a robot .xml file.
$ dsm sample.xml
robotworld
Testbed. Receiving server for "inject" - see below.
$ robotworld
inject
Send robot to world. "robotworld" must be running.
$ inject sample.xml
Download (0.023MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1650 downloads
HELIO World 0.9
HELIO World project is a PHP class that generates world maps. more>>
HELIO World project is a PHP class that generates world maps.
<<less Download (0.052MB)
Added: 2006-08-31 License: LGPL (GNU Lesser General Public License) Price:
1156 downloads
Safe::World 0.14
Safe::World can create multiple virtual instances of a Perl interpreter that can be assembled together. more>>
Safe::World can create multiple virtual instances of a Perl interpreter that can be assembled together.
SYNOPSIS
See USE section for complexer example and the test.pl script.
use Safe::World ;
my $world = Safe::World->new(
stdout => $stdout , ## - redirect STDOUT to this scalar.
stderr => $stderr , ## - redirect STDERR to this scalar.
flush => 1 , ## - output is flushed, soo dont need to wait exit to
## have all the data inside $stdout.
) ;
## Evaluate some code:
$world->eval(q`
use Data::Dumper ;
print Dumper( {a => 1 , b => 2} ) ;
`);
$world->close ; ## ensure that everything is finished and flushed.
die($stderr) if $stderr ;
print $stdout ;
$world = undef ; ## Destroy the world. Here the compartment is cleanned.
Note that in this example, inside the World is loaded Data::Dumper, but Data::Dumper was loaded only inside of it, keeping the outside normal.
<<lessSYNOPSIS
See USE section for complexer example and the test.pl script.
use Safe::World ;
my $world = Safe::World->new(
stdout => $stdout , ## - redirect STDOUT to this scalar.
stderr => $stderr , ## - redirect STDERR to this scalar.
flush => 1 , ## - output is flushed, soo dont need to wait exit to
## have all the data inside $stdout.
) ;
## Evaluate some code:
$world->eval(q`
use Data::Dumper ;
print Dumper( {a => 1 , b => 2} ) ;
`);
$world->close ; ## ensure that everything is finished and flushed.
die($stderr) if $stderr ;
print $stdout ;
$world = undef ; ## Destroy the world. Here the compartment is cleanned.
Note that in this example, inside the World is loaded Data::Dumper, but Data::Dumper was loaded only inside of it, keeping the outside normal.
Download (0.034MB)
Added: 2007-08-15 License: Perl Artistic License Price:
802 downloads
Hell World 0.1.5
Hell World is a thrilling FPS adventure game which features excellent graphics. more>>
Hell World is a thrilling FPS adventure game which features excellent graphics, a dark atmosphere and an excellent scenario. Hell World game is designed to be a port of the Windows-only version of Hell World.
It is written using the openGL and SDL library and is developing for the last months by ironhell3.
The game starts from main.c There we call first two functions, sdl_init() and game_init() to initialise the sdl and game part of the game.After the succesfull initialisation of Hell World we loop in a while() function.Each frame we check the keyboard and mouse for events through keyhandler() and then render the game frames through loop().When we catch a done=true signal we quit the game.
Important:
1)We are in need of developers,musicians,artists etc to help develop this game
2)This game is released under the GPL license.Please READ the COPYING file for more info
Enhancements:
- Fixed movement
- Added fog
- Added crates
- Redesign of level 1 including texture changes
<<lessIt is written using the openGL and SDL library and is developing for the last months by ironhell3.
The game starts from main.c There we call first two functions, sdl_init() and game_init() to initialise the sdl and game part of the game.After the succesfull initialisation of Hell World we loop in a while() function.Each frame we check the keyboard and mouse for events through keyhandler() and then render the game frames through loop().When we catch a done=true signal we quit the game.
Important:
1)We are in need of developers,musicians,artists etc to help develop this game
2)This game is released under the GPL license.Please READ the COPYING file for more info
Enhancements:
- Fixed movement
- Added fog
- Added crates
- Redesign of level 1 including texture changes
Download (0.14MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1354 downloads
Tile World 1.2.2
Tile World is an emulator of Chips Challenge. more>>
Tile World is an emulation of the game "Chips Challenge". "Chips Challenge" was originally written for the Atari Lynx by Chuck Sommerville, and was later ported to MS Windows by Microsoft (among other ports).
Please note: Tile World is an emulation of the game engine(s) only. It does not come with the chips.dat file that contains the original level set. This file is copyrighted and cannot be freely distributed. The chips.dat file was originally part of the MS version of "Chips Challenge". If you have a copy of this version of the game, you can use that file to play the game in Tile World. If you do not have a copy of this file, however, you can still play Tile World with the many freely available level sets created by fans of the original game, including CCLP2.
"Chips Challenge" is a game made up of both intellectually engaging puzzles and situations demanding fast reflexes. As you might have guessed, it is a tile-based game. The object of each level is simply to get out -- i.e., to find and achieve the exit tile. This simple task, however, can sometimes be extremely challenging.
<<lessPlease note: Tile World is an emulation of the game engine(s) only. It does not come with the chips.dat file that contains the original level set. This file is copyrighted and cannot be freely distributed. The chips.dat file was originally part of the MS version of "Chips Challenge". If you have a copy of this version of the game, you can use that file to play the game in Tile World. If you do not have a copy of this file, however, you can still play Tile World with the many freely available level sets created by fans of the original game, including CCLP2.
"Chips Challenge" is a game made up of both intellectually engaging puzzles and situations demanding fast reflexes. As you might have guessed, it is a tile-based game. The object of each level is simply to get out -- i.e., to find and achieve the exit tile. This simple task, however, can sometimes be extremely challenging.
Download (1.0MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
778 downloads
The Mana World 0.0.23
The Mana World (TMW) is a serious effort to create an innovative free and open source MMORPG. more>>
The Mana World (TMW) is a serious effort to create an innovative free and open source MMORPG. TMW uses 2D graphics and aims to create a large and diverse interactive world. The Mana World project is licensed under the GPL, making sure this game cant ever run away from you.
The project includes the development of both a client and a server, as well as the development of an online world. At the moment were making alpha releases of the client, while our server is in early development.
The eAthena free software Ragnarok Online server is used until our own server has matured enough to replace it. Once ready, well be making releases of our server too so anybody will be free to set up their own server and start building their own online world.
<<lessThe project includes the development of both a client and a server, as well as the development of an online world. At the moment were making alpha releases of the client, while our server is in early development.
The eAthena free software Ragnarok Online server is used until our own server has matured enough to replace it. Once ready, well be making releases of our server too so anybody will be free to set up their own server and start building their own online world.
Download (3.5MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
Samoth World Editor 0.11
Samoth World Editor project consists of medieval/fantasy universe RPG. more>>
Samoth World Editor project consists of medieval/fantasy universe RPG.
Main features:
- Map loading/creation/saving (the last one almost done, physics still to do)
- Real-time scene viewing
- Scene tree edition
- Node, light, skybox, fog edition
- Physics creation (from mesh) : done, but useless, since they cannot be saved yet.
Enhancements:
- First draw : map editor available, even if not finished.
<<lessMain features:
- Map loading/creation/saving (the last one almost done, physics still to do)
- Real-time scene viewing
- Scene tree edition
- Node, light, skybox, fog edition
- Physics creation (from mesh) : done, but useless, since they cannot be saved yet.
Enhancements:
- First draw : map editor available, even if not finished.
Download (17.8MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1031 downloads
Image::WorldMap 0.14
Image::WorldMap is a Perl module to create graphical world maps of data. more>>
Image::WorldMap is a Perl module to create graphical world maps of data.
SYNOPSIS
use Image::WorldMap;
my $map = Image::WorldMap->new("earth-small.png", "maian/8");
$map->add(4.91, 52.35, "Amsterdam.pm");
$map->add(-2.355399, 51.3828, "Bath.pm");
$map->add(-0.093999, 51.3627, "Croydon.pm");
$map->draw("test.png");
This module helps create graphical world maps of data, such as the Perl Monger World Map (http://www.astray.com/Bath.pm/). This module takes in a number of label locations (longitude/latitude) and outputs an image. It can attach text to the labels, and tries to make sure that labels do not overlap.
It is intended to be used to create images of information such as "where are all the Perl Monger groups?", "where in the world are all the CPAN mirrors?" and so on.
This module comes with a low-resolution image of the world. Additional larger images have not been bundled with the module due to their size, but are available at: http://www.astray.com/WorldMap/
<<lessSYNOPSIS
use Image::WorldMap;
my $map = Image::WorldMap->new("earth-small.png", "maian/8");
$map->add(4.91, 52.35, "Amsterdam.pm");
$map->add(-2.355399, 51.3828, "Bath.pm");
$map->add(-0.093999, 51.3627, "Croydon.pm");
$map->draw("test.png");
This module helps create graphical world maps of data, such as the Perl Monger World Map (http://www.astray.com/Bath.pm/). This module takes in a number of label locations (longitude/latitude) and outputs an image. It can attach text to the labels, and tries to make sure that labels do not overlap.
It is intended to be used to create images of information such as "where are all the Perl Monger groups?", "where in the world are all the CPAN mirrors?" and so on.
This module comes with a low-resolution image of the world. Additional larger images have not been bundled with the module due to their size, but are available at: http://www.astray.com/WorldMap/
Download (0.083MB)
Added: 2006-10-27 License: Perl Artistic License Price:
635 downloads
Rigs of Rods 0.31a
Rigs of Rods is a truck simulator based on soft body physics. more>>
Rigs of Rods is a truck simulator based on soft body physics.
Rigs of Rods is a simulation game based on a custom advanced soft body physics engine.
In a vast open world, you can drive trucks, control cranes and fly airplanes. The chassis and wheels deform according to the stress they bear, and crashes are interesting to see too!
The linux version is still a release candidate under compatibility testing.
The main issue is that it is compiled with a GCC 4.1.1 compiler, and there are many incompatible C++ ABI out there. So it will probably work on a gcc 4.1.1 system, and break on a gcc 3.4 or 3.6 system. I dont know if there is an easy fix to that. Be aware that upgrading your gcc may break badly your system if not done correctly, so do it at your own risk.
Also, if you see the config box, but the game crashes, check the sanity of your GLX system first (test with another GLX program) because it breaks easily. It works with NVidia drivers, but I have not tested the ATI ones.
Read the README.LINUX file for more important informations.
Enhancements:
- Boats, with a small wahoo, a Class 1 speedboat contributed by cdquicksilver, and a very large high sea tug, the Smit Rotterdam, that has a rollable platform.
- A new terrain, called "island", that is still under construction but that will soon replace the two classic RoR terrains, because they are not realistic islands.
- Infinite sea with waves. Take the Smit and sail far from the island: you will encounter high swells offshore. You can even configure the wave fields (see the datawavefield.cfg file).
- A separate configurator program. Now you must start the RoRconfig program first, to choose your configuration options, save them, then start RoR.
- Serious bugfixing: camera shaking has been dramatically reduced, and the "crash on plane crash" problem is mostly eliminated.
- Addition of the Challenger car contributed by hemicuda.
<<lessRigs of Rods is a simulation game based on a custom advanced soft body physics engine.
In a vast open world, you can drive trucks, control cranes and fly airplanes. The chassis and wheels deform according to the stress they bear, and crashes are interesting to see too!
The linux version is still a release candidate under compatibility testing.
The main issue is that it is compiled with a GCC 4.1.1 compiler, and there are many incompatible C++ ABI out there. So it will probably work on a gcc 4.1.1 system, and break on a gcc 3.4 or 3.6 system. I dont know if there is an easy fix to that. Be aware that upgrading your gcc may break badly your system if not done correctly, so do it at your own risk.
Also, if you see the config box, but the game crashes, check the sanity of your GLX system first (test with another GLX program) because it breaks easily. It works with NVidia drivers, but I have not tested the ATI ones.
Read the README.LINUX file for more important informations.
Enhancements:
- Boats, with a small wahoo, a Class 1 speedboat contributed by cdquicksilver, and a very large high sea tug, the Smit Rotterdam, that has a rollable platform.
- A new terrain, called "island", that is still under construction but that will soon replace the two classic RoR terrains, because they are not realistic islands.
- Infinite sea with waves. Take the Smit and sail far from the island: you will encounter high swells offshore. You can even configure the wave fields (see the datawavefield.cfg file).
- A separate configurator program. Now you must start the RoRconfig program first, to choose your configuration options, save them, then start RoR.
- Serious bugfixing: camera shaking has been dramatically reduced, and the "crash on plane crash" problem is mostly eliminated.
- Addition of the Challenger car contributed by hemicuda.
Download (29.3MB)
Added: 2007-04-18 License: GPL (GNU General Public License) Price:
901 downloads
phpArmory 0.2
phpArmory is a PHP class library that allows developers to access data from the World of Warcraft Armory Web site. more>>
phpArmory is a PHP class library. It allows PHP software developers to easily access data from the World of Warcraft Armory Web site.
phpArmory project is useful because the Armory Web site contains up-to-date and official details on characters, guilds, and items in World of Warcraft.
Enhancements:
- Class functions return an associative array instead of serialized XML data.
- Added phpArmory::itemFetch() which returns an associative array with item details.
<<lessphpArmory project is useful because the Armory Web site contains up-to-date and official details on characters, guilds, and items in World of Warcraft.
Enhancements:
- Class functions return an associative array instead of serialized XML data.
- Added phpArmory::itemFetch() which returns an associative array with item details.
Download (0.17MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
872 downloads
World of Padman 1.1
World of Padman is a multiplayer Fun Action Shooter at Q3 Engine base. more>>
World of Padman is a multiplayer Fun Action Shooter at Q3 Engine base.
World of Padman was a popular total conversation mod for the quake 3 engine.
Since the release of the gpled sourcecode, their team-members are worked hard to brush up the maps, models and the whole bunch of other things that belongs to a superior mod. They Invented new weapons, gaming goals on so on.
Today it is the day to proudly anounce the availibility of WoP for Linux, MacOsX and Windows, also.
The standalone game is an funshooter at its best! Come and try it for free, you have nothing to invest but your download time.
The game comes absolutly free as in beer. For details for the copyrighted graphics read at the project site http://worldofpadman.com.
<<lessWorld of Padman was a popular total conversation mod for the quake 3 engine.
Since the release of the gpled sourcecode, their team-members are worked hard to brush up the maps, models and the whole bunch of other things that belongs to a superior mod. They Invented new weapons, gaming goals on so on.
Today it is the day to proudly anounce the availibility of WoP for Linux, MacOsX and Windows, also.
The standalone game is an funshooter at its best! Come and try it for free, you have nothing to invest but your download time.
The game comes absolutly free as in beer. For details for the copyrighted graphics read at the project site http://worldofpadman.com.
Download (550.2MB)
Added: 2007-04-02 License: Freeware Price:
943 downloads
World Domination 0.3
World Domination is a Real Time Strategy game inspired by the board game Axis and Allies utilizing the Stratagus engine. more>>
World Domination is a Real Time Strategy game inspired by the board game Axis and Allies utilizing the Stratagus engine.
World Domination will emphasize strategy and not "see who can build the most units the fastest." Resources are not gathered like in other RTSs, rather they are distributed after a fixed interval of time based on how much land a player occupies.
Enhancements:
- Added support for AI.
- Fixed may bugs and desyncs so you should be able to finish a network game without it crashing.
- New Graphics.
- Some new Maps
<<lessWorld Domination will emphasize strategy and not "see who can build the most units the fastest." Resources are not gathered like in other RTSs, rather they are distributed after a fixed interval of time based on how much land a player occupies.
Enhancements:
- Added support for AI.
- Fixed may bugs and desyncs so you should be able to finish a network game without it crashing.
- New Graphics.
- Some new Maps
Download (3.3MB)
Added: 2006-02-16 License: GPL (GNU General Public License) Price:
1348 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above car world search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed