Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.410.069 Times

Winter Driving Games freeware
Filter: All | Freeware | Demo
 

Winter Driving Games

< 1 2 3 4 5 
Released: October 16, 2012  |  Added: October 16, 2012 | Visits: 1.374

Puzzle Games Play the latest free Puzzle Games - board puzzle games, puzzle brain games, room escape games, tower defense puzzle games, strategy games, jigsaw puzzle games, new hidden object games and more puzzlers on 9PUZ.com. We also have the walkthroughs and cheats for most of the puzzle games, you can...



Platforms: Windows, Mac, iPhone, iPod, Java, Linux, Linux Console, Linux Gnome, Linux GPL, Linux Open Source, Symbian, Other

License: Freeware Size: 1.18 MB Download (100): Puzzle Games Download

Added: November 20, 2010 | Visits: 1.921

Games::Quakeworld::Query Games::Quakeworld::Query is a class for querying QuakeWorld servers. SYNOPSIS use Games::Quakeworld::Query; my $QWQ = Games::Quakeworld::Query->new("quake.server.com", "27500"); my %info = $QWQ->getinfo(); # obsoleted, use $qwq->get("") instead print "Server uses map:...





Platforms: *nix

License: Freeware Size: 4.1 KB Download (99): Games::Quakeworld::Query Download

Added: September 05, 2010 | Visits: 1.779

Games::Dice Games::Dice is a Perl module that can be used to simulate dice rolls. SYNOPSIS use Games::Dice roll; $strength = roll 3d6+1; use Games::Dice roll_array; @rolls = roll_array 4d8; Games::Dice simulates die rolls. It uses a function-oriented (not object-oriented) interface. No functions...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (99): Games::Dice Download

Added: January 25, 2010 | Visits: 841

Mac BBC Games List Mac BBC Games List is a games database front end for Mac BeebEm. The program displays a list of games that can be sorted by name, year, publisher or genre. A screen shot is also displayed if available. Double clicking a program will launch BeebEm with the disc loaded and automatically start the...


Platforms: Mac

License: Freeware Size: 7.8 MB Download (99): Mac BBC Games List Download

Added: June 20, 2010 | Visits: 1.154

Games::Othello Games::Othello is a Perl extension for modelling a game of Othello. SYNOPSIS use Games::Othello; my $game = Games::Othello->new(); while( !game->over ) { printf "It is presently %ss move", ($game->whos_move eq b) ? black, white; my @possible_moves = values $game->possible_moves(); if...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (98): Games::Othello Download

Added: March 01, 2010 | Visits: 1.038

Games::Sudoku::General Games::Sudoku::General is a Perl module that can solve sudoku-like puzzles. SYNOPSIS $su = Games::Sudoku::General->new (); print $su->problem(<solution(); 3 . . . . 8 . 2 . . . . . . 9 . . . . . 2 7 . 5 . . . 2 4 . 5 . . 8 . . . 8 5 . 7 4 . . 6 . 3 . . . . 9 4 . 1 . 4 . . . . 7...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (98): Games::Sudoku::General Download

Added: August 10, 2008 | Visits: 928

Webetiser(tm) Puzzle - Winter Package This jigsaw puzzle package delivers beautiful Winter puzzles. This package combines 115 puzzles, using 23 images with 5 severities each. For your convenience it contains the brand new Webetiser Puzzle Browser. You can use it to change between different packages and select puzzles through preview...


Platforms: Windows, *nix

License: Freeware Size: 3.05 KB Download (98): Webetiser(tm) Puzzle - Winter Package Download

Added: July 05, 2010 | Visits: 1.527

Games::Euchre::AI Games::Euchre::AI is a Player API for Euchre card game. This class implements a skeletal Euchre player programming interface. Subclasses can be created quite easily as interactive interfaces or AI computer players. If you wish to write your own computer player, I recommend you start with...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (97): Games::Euchre::AI Download

Added: May 03, 2010 | Visits: 917

Games::Console Games::Console Perl module provide a 2D quake style in-game console. SYNOPSIS use Games::Console; my $console = Games::Console->new( font => $font_object, background_color => [ 1,1,0], background_alpha => 0.4, text_color => [ 1,1,1 ], text_alpha => 1, speed => 50, # in percent per...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (97): Games::Console Download

Added: February 27, 2010 | Visits: 901

Games::AlphaBeta::Position Games::AlphaBeta::Position is a base Position class for use with Games::AlphaBeta. SYNOPSIS package My::GamePos; use base qw(Games::AlphaBeta::Position); sub apply { ... } sub endpos { ... } # optional sub evaluate { ... } sub findmoves { ... } package main; my $pos =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (97): Games::AlphaBeta::Position Download

Added: July 04, 2010 | Visits: 957

Games::LMSolve::Base Games::LMSolve::Base is a base class for puzzle solvers. SYNOPSIS package MyPuzzle::Solver; use Games::LMSolve::Base; @ISA = qw(Games::LMSolve::Base); # Override these methods: sub input_board { ... } sub pack_state { ... } sub unpack_state { ... } sub display_state { ... } sub...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (96): Games::LMSolve::Base Download

Added: July 04, 2010 | Visits: 945

Games::Sequential::Position Games::Sequential::Position is a base Position class for use with Games::Sequential. SYNOPSIS package My::GamePos; use base Games::Sequential::Position; sub init { ... } # setup initial state sub apply { ... } package main; my $pos = My::GamePos->new; my $game =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (96): Games::Sequential::Position Download

Added: August 02, 2008 | Visits: 883

Snow of Winter Screen Saver Screen Saver with Original Winter pictures. Snow, ice, mountains and other winter scenes. The screen saver has smooth transition effects and other user selectable options.


Platforms: Windows

License: Freeware Size: 3.16 MB Download (96): Snow of Winter Screen Saver Download

Added: November 09, 2010 | Visits: 1.980

Games::Go::SGF Games::Go::SGF is a Perl module that can parse and dissect Standard Go Format files. SYNOPSIS use Games::Go::SGF; my $sgf = new Games::Go::SGF($sgfdata); print "Game played on ".$sgf->date."n"; print $sgf->white. " (W) vs. ".$sgf->black." (B)n"; print "Board size: ".$sgf->size.". Komi:...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (95): Games::Go::SGF Download

Added: November 27, 2010 | Visits: 1.913

Games::Go::TDFinder TDFinder is a widget to support preparing Go tournament registration. SYNOPSIS use Games::Go::TDFinder; $tdFinder = $parent->Games::Go::TDFinder ( ? options ? ); TDFinder is a widget to assist in preparing a Go Tournament register.tde file in AGA (American Go Association) format. It...


Platforms: *nix

License: Freeware Size: 63.49 KB Download (95): Games::Go::TDFinder Download

Added: January 25, 2010 | Visits: 877

Winter Holiday Icons Winter Holiday Icons is a set of 7 winter holiday icons representing things like snow man, Christmas tree, candy cane and more.


Platforms: Mac

License: Freeware Download (93): Winter Holiday Icons Download

Released: June 30, 2012  |  Added: July 30, 2012 | Visits: 1.110

Flying V Mahjong It's getting colder and all the birds are starting to fly down south for the winter this fall! Celebrate this beautiful migration with Flying V Mahjong! Fall Mahjong brings you this fun, quick Mahjong game, in which your goal is to match all the tiles in pairs to clear the entire mahjong...


Platforms: Windows, Mac, *nix, Windows CE, Pocket PC, DOS, Other,Android,BlackBerry,iPhone,iPod,iTouch,Palm,Palm OS 6.0,Not Applicable,Handheld/Mobile Other,Java

License: Freeware Size: 2.53 MB Download (93): Flying V Mahjong Download

Added: November 11, 2010 | Visits: 1.040

Games::Irrlicht Games::Irrlicht is a Perl module that use the Irrlicht 3D Engine in Perl. SYNOPSIS package MyGame; use strict; use base Games::Irrlicht; use Games::Irrlicht::Constants; get EDT_SOFTWARE etc # override methods: The Why When building a game or screensaver displaying some continously...


Platforms: *nix

License: Freeware Size: 39.94 KB Download (91): Games::Irrlicht Download

Added: October 09, 2010 | Visits: 873

Games::Go::AGATourn AGATourn is a Perl extensions to ease the pain of using AGA tournament data files. SYNOPSIS use Games::Go::AGATourn; my $agaTourn = Games::Go::AGATourn->new (options); An AGATourn object represents a round or several rounds of an American Go Association tournament. There are methods for...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (90): Games::Go::AGATourn Download

Added: April 27, 2010 | Visits: 909

Games::Object Games::Object is a Perl module to provide a base class for game objects. SYNOPSIS package MyGameObject; use Games::Object; use vars qw(@ISA); @ISA = qw(Games::Object); sub new { # Create object my $proto = shift; my $class = ref($proto) || $proto; my $self = $class->SUPER::new(@_);...


Platforms: *nix

License: Freeware Size: 84.99 KB Download (89): Games::Object Download

< 1 2 3 4 5