Main > Free Download Search >

Free pc world software for linux

pc world

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1336
Car World 0.243

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.

<<less
Download (0.64MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1203 downloads
XO World 0.1

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.

<<less
Download (0.13MB)
Added: 2007-02-19 License: Freeware Price:
978 downloads
Rail World 0.8

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.
<<less
Download (4.5MB)
Added: 2007-06-23 License: GPL (GNU General Public License) Price:
870 downloads
HELIO World 0.9

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
Hell World 0.1.5

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
<<less
Download (0.14MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1354 downloads
Tile World 1.2.2

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.

<<less
Download (1.0MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
778 downloads
Robotworld 0.1

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
<<less
Download (0.023MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1650 downloads
Safe::World 0.14

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.

<<less
Download (0.034MB)
Added: 2007-08-15 License: Perl Artistic License Price:
802 downloads
The Mana World 0.0.23

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.

<<less
Download (3.5MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
Apache Hello World Benchmarks 1.04

Apache Hello World Benchmarks 1.04


Apache Hello World Benchmarks is a tool that generates benchmarks of Apache Web frameworks. more>>
Apache Hello World Benchmarks is a benchmarking tool that seeks to give a sense of Web application execution speed on various software platforms running under the Apache Web server.

Benchmarks can vary greatly from system to system, so this tool allows one to get numbers on ones own platform. Applications tested include mod_perl, mod_php, Tomcat, and Apache::ASP, with over 62 benchmarks in all.

Benchmark Descriptions:

Hello World 2000 ( 2000 )

The 2000 benchmark tries to emulate a heavy web page template. It is typically 3K+ in program length that results in output of over 20K. While this does not properly reflect any web applications speed of back end business logic execution, it does show a template heavy request with some application logic and loops, some HTTP parameter passing, and much variable interpolation in the output stream.

Hello World ( hello )

The Hello World benchmark merely prints "Hello World" and as such is a good test for the fastest a web page could ever run under the given web application environment. For historical reasons, the benchmarks are written to print "Hello" and then add to the output World as a raw string.

HelloDB ( hellodb )

The HelloDB benchmark merely queries the database for the string "Hello World", and as such represents the fastest a web application can process a request when talking to a database. This is a new benchmark with only MySQL supported for now, but more environments and databases will be added over time.

XSLT Big ( xsltbig )

This benchmark hits an XSLT rendering engine hard with 18K+ XML being transformed with a 1K+ XSL stylesheet for over 20K output. Though XSLT is generally slow, many applications will use XSLT caching to speed up response times. This benchmark should emulate well a real world XSLT usage scenario, with perhaps the XSL itself being too trivial.

Hello XSLT ( xslt )

Like the Hello World benchmark, the XSLT version just outputs "Hello World", or the closest we can get when doing XSLT, so it too demonstrates the fastest an application can render a page with XSLT. Benchmarks should be similarly configured between xsltbig and xslt, so a slow caching layer that benefits the former might slow down this benchmark.
<<less
Download (0.037MB)
Added: 2005-04-12 License: Perl Artistic License Price:
1657 downloads
Samoth World Editor 0.11

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.
<<less
Download (17.8MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1031 downloads
World of Padman 1.1

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.

<<less
Download (550.2MB)
Added: 2007-04-02 License: Freeware Price:
943 downloads
World Domination 0.3

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
<<less
Download (3.3MB)
Added: 2006-02-16 License: GPL (GNU General Public License) Price:
1348 downloads
Image::WorldMap 0.14

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/

<<less
Download (0.083MB)
Added: 2006-10-27 License: Perl Artistic License Price:
635 downloads
Comic World Cup Icons for Linux -

Comic World Cup Icons for Linux -


6 Comic freeware icons inspired in the FIFA World Cup 2006. more>> This is one of the Dirceu Veiga's products. It contains 6 comic freeware icons inspired in the FIFA World Cup 2006.
Its content consists of Fifa Trophy, Folder, Folder Ball, Folder Trophy, Folder World Cup, Soccer Ball, Trophy with Bal. You can have a look at it.
<<less
Download (252KB)
Added: 2009-04-12 License: Freeware Price: Free
198 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5