Main > Free Download Search >

Free hearts 1.98 software for linux

hearts 1.98

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 57
Hearts 1.98

Hearts 1.98


Hearts is a card game with beta support for network play. more>>
Hearts is a little card game for four persons.
A computer version of the game comes with Microsoft Windows and is a pretty popular little thing. When I switched to using Linux, I really wanted to play it, but I didnt find anything at all, so I decided to write it myself and here it is.
Enhancements:
Fixed all known bugs:
- The card passing was always to the right.
- Portability issue regarding setting the random seed (std::random_shuffle + std::srand issue).
- A lot of processes were left running.
- Only one match (ie, a series of games until a player gets 100 points) was possible.
- Status bar tells the user what he he should do at every step (play, give cards right, etc.)
<<less
Download (0.55MB)
Added: 2005-06-20 License: GPL (GNU General Public License) Price:
1597 downloads
TkHearts 0.80

TkHearts 0.80


TkHearts is an clone of the Hearts card game. more>>
TkHearts is an clone of the Hearts card game. The AI is currently not fantastic.

Steven A has made a few changes with reguards to window handling, look and feel and features.

<<less
Download (0.095MB)
Added: 2006-09-11 License: GPL (GNU General Public License) Price:
1140 downloads
MaitreTarot 0.1.98

MaitreTarot 0.1.98


MaitreTarot project is a French Tarot game. more>>
MaitreTarot project is a French Tarot game.
It is a game like Freecell or poker, and has nothing to do with astrology. It has a server and various client software.
Main features:
- A server, that knows the rules, that gives the cards to the clients, that counts the points, and everything else that a server should do.
- Clients. The main idea is to have differents clients. Some would be clients for human players, with a GUI (gtk+, qt, web, ncurses, win32...). And some would be AI. That would allow users to play with AI, and even AI tournaments could be played in order to know the best AI!
Enhancements:
- minor changes in mt_gtk_client
- libmaitretarot is split into libmaitretarot and libmt_client
<<less
Download (0.089MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1067 downloads
Hearts for GNOME 0.1.3

Hearts for GNOME 0.1.3


Hearts for GNOME is an implementation of the classic card game for the GNOME desktop. more>>
Hearts for GNOME is an implementation of the classic card game for the GNOME desktop, featuring configurable rulesets and editable computer opponents to satisfy widely diverging playing styles. Hearts is Free Software, released under the GNU General Public License and should be able to run on any computer that can run the GNOME desktop.
Main features:
- Various rulesets with configurable options
- Multiple computer opponents with differing styles of play
- Drag & drop adding of new opponents
- Easy creation and modification of opponents through the Lua scripting language
<<less
Download (0.43MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1085 downloads
InnerSpace 0.9

InnerSpace 0.9


InnerSpace began as a pseudo-MUD framework, and in its heart it still is. more>>
InnerSpace began as a pseudo-MUD framework, and in its heart it still is. Work is progressing on making it a robust multiuser code execution platform, written entirely in Python.
Installation:
Client:
- download and install twistedjava, make sure twistedjava.jar is in your classpath
- cd to the innerspace installation directory
- run ./build_client.py
- add the jar file build/is-client.jar to your classpath
- run java inner.space.client.client
- enter the username/password and host information to connect to a demo server will often be available at bubblehouse.org:8420
Server:
- download and install twisted; make sure twisted is in your pythonpath, or your < pythonhome >/lib/site-packages directory. Also ensure that the current directory (.) is
part of your pythonpath
- cd to the innerspace installation directory
- to build a minimal database, run:
bin/bootstrap-server.py
- to run a server using the provided database, run:
bin/run-server.py
Enhancements:
Requirements for server:
- python 2.4
- twisted 2.0.1
Requirements for client:
- java runtime environment >= 1.4.2
- twistedjava v0.6.1
Enhancements:
- oved get_environment function to code module, all prep of execution environment happens there
- if a verb has its is_method property set (i.e. as a keyword argument to add_verb), the parser will ignore it as a verb choice, so it can only be executed programmatically
- added sudo method which runs a function as the owner of the current verb
<<less
Download (0.14MB)
Added: 2005-10-19 License: GPL (GNU General Public License) Price:
1470 downloads
perltoot 5.8.8

perltoot 5.8.8


perltoot is Toms object-oriented tutorial for perl. more>>
perltoot is Toms object-oriented tutorial for perl.

Object-oriented programming is a big seller these days. Some managers would rather have objects than sliced bread. Why is that? Whats so special about an object? Just what is an object anyway?

An object is nothing but a way of tucking away complex behaviours into a neat little easy-to-use bundle. (This is what professors call abstraction.) Smart people who have nothing to do but sit around for weeks on end figuring out really hard problems make these nifty objects that even regular people can use. (This is what professors call software reuse.) Users (well, programmers) can play with this little bundle all they want, but they arent to open it up and mess with the insides. Just like an expensive piece of hardware, the contract says that you void the warranty if you muck with the cover. So dont do that.

The heart of objects is the class, a protected little private namespace full of data and functions. A class is a set of related routines that addresses some problem area. You can think of it as a user-defined type. The Perl package mechanism, also used for more traditional modules, is used for class modules as well. Objects "live" in a class, meaning that they belong to some package.

More often than not, the class provides the user with little bundles. These bundles are objects. They know whose class they belong to, and how to behave. Users ask the class to do something, like "give me an object." Or they can ask one of these objects to do something. Asking a class to do something for you is calling a class method. Asking an object to do something for you is calling an object method. Asking either a class (usually) or an object (sometimes) to give you back an object is calling a constructor, which is just a kind of method.

Thats all well and good, but how is an object different from any other Perl data type? Just what is an object really; that is, whats its fundamental type? The answer to the first question is easy. An object is different from any other data type in Perl in one and only one way: you may dereference it using not merely string or numeric subscripts as with simple arrays and hashes, but with named subroutine calls. In a word, with methods.

The answer to the second question is that its a reference, and not just any reference, mind you, but one whose referent has been bless()ed into a particular class (read: package). What kind of reference? Well, the answer to that one is a bit less concrete. Thats because in Perl the designer of the class can employ any sort of reference theyd like as the underlying intrinsic data type. It could be a scalar, an array, or a hash reference. It could even be a code reference. But because of its inherent flexibility, an object is usually a hash reference.

<<less
Download (12.2MB)
Added: 2007-06-20 License: Perl Artistic License Price:
857 downloads
PHP Polar Tools 0.4

PHP Polar Tools 0.4


PHP Polar Tools is a set of PHP classes for the parsing and management of Polar Heart Rate Monitor data. more>>
PHP Polar Tools project is a set of PHP classes that can parse and manage the Polar Heart Rate Monitor data.

<<less
Download (MB)
Added: 2007-04-21 License: GPL (GNU General Public License) Price:
916 downloads
Nebula Cards 0.7

Nebula Cards 0.7


Nebula Cards project is a card game engine. more>>
Nebula Cards project is a card game engine.
Nebula Cards is a networked, modular card game engine written in pure Java.
The game rules, user interfaces, and computer players all take the form of pluggable Java classes, and most four-player, trick-taking games can be implemented.
It currently includes Spades and Hearts, with a computer player for Spades.
Enhancements:
- last release before a major restructuring.
- added Game class in a backward-compatible way.
- added util.proc to house the new GameProcedure library.
- added util.ui.GraphicalCardSelector (untested).
<<less
Download (MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1075 downloads
Ogrian Carpet 0.9

Ogrian Carpet 0.9


Ogrian Carpet is a 3D fantasy action/strategy game. more>>
Ogrian Carpet project is a 3D fantasy action/strategy game.
Ogrian Carpet is an outdoor first person shooter game with real time strategy elements, inspired by the game Magic Carpet.
It uses Ogre3D as the renderer and allows you to fly around an island casting spells, summoning monsters, collecting mana, and building castles.
The object of the game is to build a castle, collect mana, and destroy your enemies. To build a castle, select a location, look at the ground, and cast the build spell. Note, you cannot build castles very close to water or other castles.
Your castle starts out small, with only one turret. As more mana is added to your castle, it will gain more turrets. Each turret adds another crane to your castles defense and another spell to your arsenal.
Basically, the game consists of fighting for control of mana. Whenever you encounter another wizard, shoot them with fireballs. If you hit them enough, they will "die" and be sent back to their castle. You are then free to claim all the mana in the area for yourself.
Once all the mana has been claimed, attack your enemys castle to get mana out of it so you can claim it for yourself. Once you enemys castle is out of mana, you can eliminate it by killing its heart. When all of your opponents have been banished, youve won.
Enhancements:
- AI bot player for skirmish
- things can now be loaded from an image, rather then randomly
- option for old randomized maps
- trees can now always bee seen
- made castle mana drops aggregate more
- loosened the restrictions on summoning
- made the config menu better
- added victory conditions to skirmish: kill all enemy towers/castles
- made ticks and gnomes stay in the formation you put them in
- made monsters and towers drop less then their cost when they have no wizard
- made mana float higher
- made towers cheaper (50)
- made sentinels drop much less (3)
- changed speed behavior on lava maps
- added victory music
- new music
<<less
Download (20.0MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
1049 downloads
TkGames 1.0.6

TkGames 1.0.6


TkGames is a games pack that includes Yahtzee, Hearts, Hangman, Polygon puzzle, Solitaire, written in Tcl/Tk. more>>
TkGames is a games pack that includes Yahtzee, Hearts, Hangman, Polygon puzzle, Solitaire, written in Tcl/Tk.

Games:

PolyPuzzle:

Based on a tesselation puzzle named Beat the Computer, this is my first "original" tk program. Over the last couple of years, Ive implemented most of the different puzzles.

Tksol:

Thanks to Bao Trinh for letting me adopt his program. Over several point releases Ive fixed quite a few bugs, added some features and really got my hands dirty learning Tcl.

TkHangman:

My first Tcl/Tk program - A half-working and abandoned hangman program I adopted from Ibiblio.org, and eventually rewrote.

TkHearts:

Thanks to Mike Griffiths for coding this great Hearts clone. Its a mostly complete game, but the AI could be refined. Steven A has hacked this game and made a few small changes with reguards to window handling and look and feel.

TkYahtzee:

This is another program I found at tcl.tk which is mostly complete but had small playability issues. Ive moved the dice close to the buttons and toned down the abrasive colouring. Its still needs a proper highscore widget. Thanks to the (uncredited) author.

<<less
Download (0.36MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
815 downloads
NetMAX Desktop 1.7

NetMAX Desktop 1.7


NetMAX Desktop is a live-CD distribution of Linux upon which NetMAX Server products are based. more>>
NetMAX Desktop is a live-CD distribution of Linux upon which NetMAX Server products are based. It includes best of breed applications: Secure Linux (kernel 2.6.11.5), OpenOffice.org, Blender, GAIM, Gnome 2.8, Dia, gtkam, Azureus bittorrent client, Firefox 1.0, Thunderbird 1.0, Totem multimedia player, XINE multimedia player, Wine compatibility layer, hotplug hardware detection and OpenVPN SSL VPN.
This distribution seeks to fill the role of a fully-functional enterprise class desktop system without licensing fees. In contrast to many of the other live-CD distributions out there, it has been designed to be intuitive enough for non-computer savvy folks to use -- including integrated Windows application support.
Power users will find that this distribution puts security first, adheres to published standards, and thus behaves in the way they expect it to. Unlike previous attempts to simplify Linux for the desktop, the power and customizability that has gained the hearts of the open-source community has not been removed.
Main features:
Cutting Edge Features:
- Complete desktop functionality (network files, presentations, spreadsheet, word processors, browser, art generation, digital camera support, etc.)
- Automatic detection of disks and mountable partitions, as well as automatic mounting of USB storage devices and network (NFS) shares
- Built-in NetMAX network file systems, permissions, authentication and provisioning
- Windows application compatibility
- NetMAX Desktop can be run without permanent installation
- NetMAX Desktop can create NIST-certified disk dumps for forensic analysis
- NetMAX Desktop includes a comprehensive suite of Linux-based multi-file system format disk discovery and recovery utilities
NetMAX Desktop is built for security:
- NetMAX Desktop is based on Secure Linux, and meets or exceeds most government security requirements
- NetMAX Desktop has integrated iptables firewall capabilities and SSL-based OpenVPN
Easy to Use and Install:
- Choose to run the NetMAX Desktop direct from CD, without modifying anything on your hard drive
- Or, choose to install the NetMAX Desktop to your hard drive as your default operating system
<<less
Download (695MB)
Added: 2005-08-31 License: GPL (GNU General Public License) Price:
1537 downloads
AVR Libc 1.4.1

AVR Libc 1.4.1


AVR Libc is a high quality C library for use with GCC on Atmel AVR microcontrollers. more>>
AVR Libc is a Free Software project whose goal is to provide a high quality C library for use with GCC on Atmel AVR microcontrollers.
Together, avr-binutils, avr-gcc, and avr-libc form the heart of the Free Software toolchain for the Atmel AVR microcontrollers.
They are further accompanied by projects for in-system programming software (uisp, avrdude [formerly avrprog]), simulation (simulavr) and debugging (avr-gdb, AVaRICE).
AVR Libc is licensed under a single unified license. This so-called modified Berkeley license is intented to be compatible with most Free Software licenses like the GPL, yet impose as little restrictions for the use of the library in closed-source commercial applications as possible.
Enhancements:
- This release fixed a problem where util/delay.h was missing an inline keyword.
- An incorrect definition of the IVSEL bit in the MCUCR register was fixed.
- The simple demo was modernized a bit.
- New "largedemo" and "stdiodemo" demo projects were added.
- The demo projects now install their source code as part of the documentation tree.
- ATtiny24, ATtiny44, and ATtiny84 are now supported.
<<less
Download (0.45MB)
Added: 2006-01-03 License: BSD License Price:
1405 downloads
Heart of The Alien Redux 1.2.2

Heart of The Alien Redux 1.2.2


Heart of The Alien Redux project is a complete rewrite of game Heart of The Alien. more>>
Heart of The Alien Redux project is a complete rewrite of game Heart of The Alien.

This game was rewritten modern computers and consoles.

Heart of The Alien is the sequel for the undoubtably the best adventure of all times, Another World. Developed back in 1994 by Interplay exclusively for the Sega CD console.

This is an open-source project which aims to bring this highly-addictive game to all modern consoles and computer platforms.

<<less
Download (MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1064 downloads
AstroMenace 1.0

AstroMenace 1.0


AstroMenace is a modern 3D scrolling space shooter with ship upgrade possibilities. more>>
AstroMenace project is a modern 3D scrolling space shooter with ship upgrade possibilities. You can improve your ship configuration by installing new weapons, defensive systems, power stations and much more.

To improve your ship, you must earn money by destroying throngs of enemies on every level. A friendly interface, easy controls, and fancy 3D graphics will bring you straight into the heart of galactic war. Enjoy!

<<less
Download (37.4MB)
Added: 2007-01-17 License: Freeware Price:
1064 downloads
SVG-cards 2.0.1

SVG-cards 2.0.1


SVG-cards is a set of playing cards made from pure SVG with all kings, queens, jacks, numbers, jokers, and backs of cards. more>>
SVG-cards is a set of playing cards made from pure SVG with all kings, queens, jacks, numbers, jokers, and backs of cards.
You can use SVG-cards everywhere you like : Web pages, games, the GNOME desktop, the KDE desktop, and so on...
You can print them on your color printer and make real cards or T-shirts.
The kings, queens and jacks are based on the french representation, because I find them beautiful. You can access to each either by rendering the file into a pixmap and clipping each card or by using their name with a DOM interface. All cards are inside a SVG group.
Example :
the king of spade is inside this group :
< g id="king_spade" >
...
< /g >
Names are the following :
black_joker
red_joker
back
{king,queen,jack}_{club,diamond,heart,spade}
{1,2,3,4,5,6,7,8,9,10}_{club,diamond,heart,spade}
Examples :
- the ace of club is 1_club
- the queen of diamond is queen_diamond
Enhancements:
- A bug that prevented SVG cards from being displayed in Firefox and Adobe Illustrator was fixed.
<<less
Download (0.34MB)
Added: 2006-06-30 License: LGPL (GNU Lesser General Public License) Price:
1219 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 4
  • 1
  • 2
  • 3
  • 4