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 49.594.474 Times

Freestyle Bmx Games software
Filter: All | Freeware | Demo
 

Freestyle Bmx Games

< 1 2 3 4 5 > 
Added: October 26, 2010 | Visits: 1.737

Games::Mastermind::Solver Games::Mastermind::Solver is a Master Mind puzzle solver. SYNOPSIS # a trivial Mastermind solver use Games::Mastermind; use Games::Mastermind::Solver::BruteForce; my $player = Games::Mastermind::Solver::BruteForce ->new( Games::Mastermind->new ); my $try; print join( ,...



Platforms: *nix

License: Freeware Size: 4.1 KB Download (185): Games::Mastermind::Solver Download

Added: March 20, 2010 | Visits: 897

Games::Blackjack Games::Blackjack is a Perl module with Blackjack Utility Classes. SYNOPSIS use Games::Blackjack; # Create new shoe of cards my $shoe = Games::Blackjack::Shoe->new(nof_decks => 4); # Create two hands, player/dealer my $player = Games::Blackjack::Hand->new(shoe => $shoe); my $dealer =...





Platforms: *nix

License: Freeware Size: 6.14 KB Download (101): Games::Blackjack Download

Added: August 26, 2010 | Visits: 1.245

Games::ScottAdams::Tutorial Games::ScottAdams::Tutorial is a Perl module with the Scott Adams Adventure Compiler Tutorial. INTRODUCTION This document walks you through the process of creating a small but complete and playable game with six rooms, seven items including a single treasure, and a couple of puzzles. It...


Platforms: *nix

License: Freeware Size: 49.15 KB Download (124): Games::ScottAdams::Tutorial Download

Added: July 06, 2010 | Visits: 1.213

Games::ScottAdams::Manual Games::ScottAdams::Manual is the Scott Adams Adventure Compiler Reference Manual. SYNOPSIS # foo.sa - definition file for Scott Adams adventure "foo" %room swamp dismal swamp %exit n meadow %exit e edge %exit w grove %item mud Evil smelling mud %getdrop mud %action take mud here...


Platforms: *nix

License: Freeware Size: 49.15 KB Download (99): Games::ScottAdams::Manual Download

Added: April 05, 2010 | Visits: 1.417

Games::Checkers SYNOPSIS # automatical computer-vus-computer play script use Games::Checkers::Constants; use Games::Checkers::Board; use Games::Checkers::BoardTree; my $board = new Games::Checkers::Board; my $color = White; my $numMoves = 0; print $board->dump; while ($board->canColorMove($color)) {...


Platforms: *nix

License: Freeware Size: 286.72 KB Download (118): Games::Checkers Download

Added: March 21, 2010 | Visits: 2.178

Java Games Java Games project is a collection of simple games that are compiled into Java applets and meant to be played online in a Web browser. Currently the collection contains four games: XO World (similar to tic-tac-toe, but with lines of 5 on a 10x10 board); 100 Mack (guess the random combination of...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (592): Java Games Download

Added: April 27, 2010 | Visits: 900

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 (88): Games::Object Download

Added: November 27, 2010 | Visits: 1.260

Games::Go::SGF2misc::SVG Games::Go::SGF2misc::SVG is a Perl package to simplify SGF game rendering using Image::LibrSVG. SYNOPSIS use Games::Go::SGF2misc::SVG; my $image = new Games::Go::SGF2misc::SVG(imagesize => 3in, boardsize => 19, gobanColor=> white ); $image->drawGoban(); $image->placeStone(b,cd);...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (100): Games::Go::SGF2misc::SVG Download

Added: January 24, 2010 | Visits: 1.681

Games::OpenGL::Font::2D Games::OpenGL::Font::2D module can load/render 2D colored bitmap fonts via OpenGL. SYNOPSIS use Games::OpenGL::Font::2D; my $font = Games::OpenGL::Font::2D->new( file => font.bmp ); use SDL::App::FPS; my $app = SDL::App::FPS->new( ... ); # dont forget to change these on resize...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (170): Games::OpenGL::Font::2D Download

Added: May 03, 2010 | Visits: 908

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: September 05, 2010 | Visits: 1.771

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 (93): Games::Dice Download

Added: September 27, 2010 | Visits: 899

Games::Mastermind Games::Mastermind is a simple framework for MasterMind games. SYNOPSIS use Games::Mastermind; # the classic game $mm = Games::Mastermind->new; # make a guess $marks = $game->play(qw( Y C W R )); # results print "You win!n" if $marks->[0] == $mm->holes(); # the game history is...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (105): Games::Mastermind Download

Added: March 20, 2010 | Visits: 919

Games::Alak Games::Alak is a simple game-tree implementation of a gomoku-like game. SYNOPSIS % perl -MGames::Alak -e Games::Alak::play ...Or just run Alak.pm as if it were a program... ...Program responds with output, and a prompt: Lookahead set to 3. I am X, you are O. Enter h for help X moves...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (114): Games::Alak Download

Added: July 04, 2010 | Visits: 949

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 (90): Games::LMSolve::Base Download

Added: November 09, 2010 | Visits: 1.971

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 (94): Games::Go::SGF Download

Added: March 21, 2010 | Visits: 2.039

Games::Goban Games::Goban is a board for playing go, renju, othello, etc. SYNOPSIS use Games::Goban; my $board = new Games::Goban ( size => 19, game => "go", white => "Seigen, Go", black => "Minoru, Kitani", referee => &Games::Goban::Rules::Go, ); $board->move("pd"); $board->move("dd"); print...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (164): Games::Goban Download

Added: June 14, 2010 | Visits: 1.139

Games::AlphaBeta::Reversi Games::AlphaBeta::Reversi is a Reversi position class for use with Games::AlphaBeta. SYNOPSIS package My::Reversi; use base qw(Games::AlphaBeta::Reversi); # implement drawing routine sub draw { ... } package main; use My::Reversi; use Games::AlphaBeta; my ($p, $g); $p =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (131): Games::AlphaBeta::Reversi Download

Added: February 27, 2010 | Visits: 887

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 (91): Games::AlphaBeta::Position Download

Added: July 04, 2010 | Visits: 935

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 (95): Games::Sequential::Position Download

Added: March 27, 2010 | Visits: 2.480

Gnome Games 2.18.2.1 / Gnome Games is a collection of games for the GNOME desktop. There are sixteen games including card games, puzzle games, and arcade games. These games are designed to be simple but addictive – five minute games for when you need a break. Regretfully we cannot be held responsible for the...


Platforms: *nix

License: Freeware Size: 9 MB Download (279): Gnome Games 2.18.2.1 / Download

< 1 2 3 4 5 >