real time strategy game
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6548
Custom Strategy Role Playing Game 0.15
Custom Strategy Role Playing Game project is an engine for creating strategy role-playing games. more>>
Custom Strategy Role Playing Game project is an engine for creating strategy role-playing games.
Two players confront two parties of characters (which have RPG attributes: job, level, exp, skills, etc.) over a battlefield, and the surviving party wins.
Jobs, skills, etc. are stored in XML custom files. It has a combat style similar to Final Fantasy Tactics and Shining Force.
Enhancements:
- Custom effects for skils.
- New contender attribute managing is working now.
- New skill types and skill capabilities (as enable at a certain level).
- Contenders final attributes can now depend on skills.
- Jobs have now a basic bonus and a level bonus (which depends on
- contenders level).
- Partial code rewriting for some old features.
<<lessTwo players confront two parties of characters (which have RPG attributes: job, level, exp, skills, etc.) over a battlefield, and the surviving party wins.
Jobs, skills, etc. are stored in XML custom files. It has a combat style similar to Final Fantasy Tactics and Shining Force.
Enhancements:
- Custom effects for skils.
- New contender attribute managing is working now.
- New skill types and skill capabilities (as enable at a certain level).
- Contenders final attributes can now depend on skills.
- Jobs have now a basic bonus and a level bonus (which depends on
- contenders level).
- Partial code rewriting for some old features.
Download (0.75MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1078 downloads
OCERA Real Time Ethernet 0.3.1
The ORTE is an implementation of the RTPS communication protocol defined by Real Time Innovations. more>>
The ORTE is an implementation of the RTPS communication protocol defined by Real Time Innovations.
RTPS is an application layer protocol targeted to the real-time communication area. It is built on top of a standard UDP stack.
This protocol is being submitted to the IETF as an informational RFC and has been adopted by the IDA group.
<<lessRTPS is an application layer protocol targeted to the real-time communication area. It is built on top of a standard UDP stack.
This protocol is being submitted to the IETF as an informational RFC and has been adopted by the IDA group.
Download (1.6MB)
Added: 2005-11-03 License: GPL (GNU General Public License) Price:
1454 downloads
Really Rather Good Battles In Space 1.03
Really Rather Good Battles In Space is a real time strategy game with fleets of spaceships. more>>
Really Rather Good Battles In Space is a real time strategy game with fleets of spaceships.
Single player real time strategy game following the fall of the great Argonian empire.
Main features:
- a short but relatively polished single player campaign
- pretty (albeit 2d) graphics
- spaceships
- explosions
<<lessSingle player real time strategy game following the fall of the great Argonian empire.
Main features:
- a short but relatively polished single player campaign
- pretty (albeit 2d) graphics
- spaceships
- explosions
Download (54MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1019 downloads
Advanced Strategic Command 1.16.4
Advanced Strategic Command is a free, turn based strategy game. more>>
Advanced Strategic Command is a free, turn based strategy game. Advanced Strategic Command project is designed in the tradition of the Battle Isle series from Bluebyte and is currently available for Windows and Linux.
Advanced Strategic Command is distributed under the terms of the Gnu General Public License (the license Linux uses too), which basically means the game is free, the complete source code is available and you can do everything with it as long as it remains free.
<<lessAdvanced Strategic Command is distributed under the terms of the Gnu General Public License (the license Linux uses too), which basically means the game is free, the complete source code is available and you can do everything with it as long as it remains free.
Download (11.5MB)
Added: 2006-11-04 License: GPL (GNU General Public License) Price:
638 downloads
Resource Management Game 0.12
Resource Management Game project is a Web-based resource management game. more>>
Resource Management Game project is a Web-based resource management game.
Resource Management Game is a PHP framework for easily creating resource management and strategy games.
Two playable games are included.
The system uses sessions to store data and should work out of the box with little or no configuration.
<<lessResource Management Game is a PHP framework for easily creating resource management and strategy games.
Two playable games are included.
The system uses sessions to store data and should work out of the box with little or no configuration.
Download (0.081MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1022 downloads
Spice Trade 1.2
Spice Trade is a RPG/strategy/adventure game. more>>
Spice Trade project is an RPG/strategy/adventure game.
Spice Trade is an RPG/adventure/strategy game in which the main character is a poor man who has lost his parents, inherited some land and a house.
He becomes a trader of spices and herbs in Baghdad at a time when Europeans are starting their "great voyages of exploration".
The game character has to ensure that the Europeans do not take over his country and his culture, while he has to expand the sphere of influence of his own culture.
<<lessSpice Trade is an RPG/adventure/strategy game in which the main character is a poor man who has lost his parents, inherited some land and a house.
He becomes a trader of spices and herbs in Baghdad at a time when Europeans are starting their "great voyages of exploration".
The game character has to ensure that the Europeans do not take over his country and his culture, while he has to expand the sphere of influence of his own culture.
Download (194.8MB)
Added: 2007-01-04 License: LGPL (GNU Lesser General Public License) Price:
1242 downloads
Rails Real-Time Form Validation Plug-In 1.0.2
Rails Real-Time Form Validation Plug-In uses AJAX to validate form data against a model in real-time. more>>
Rails Real-Time Form Validation Plug-In uses AJAX to validate form data against a model in real-time. AJAX requests are made as the user is filling in form fields.
The form data is then validated against a model on the server-side. RTV then responds with javascript that dynamically updates the HTML document. This enables you to mark form fields as valid/invalid using CSS.
The download package now includes a sample rails application. It does not need a database to run, thanks to this. Simply execute ./script/server from the rtv_sample_app directory and point your bwoser to http://localhost:3000.
Usage:
Download and extract the contents of the_plugin directory to your vendor/plugins directory. Please the the rtv_sample_app for more details.
In your controller:
include UIEnhancements::RealtimeValidation
helper :RealtimeValidation
realtime_validation_for(:the_form_id, :the_model)
In your view, after a form:
In your CSS (example):
.fieldWithoutErrors,
.fieldWithErrors
{
outline-width: 1px;
outline-color: white;
outline-style: solid;
/* !!HACK!! IE will not use this because it does not understand !important. Border is not needed for firefox, so make it 0px!*/
border-width: 0px !important;
/*for IE!*/
border-width: 1px;
border-color: white;
border-style: solid;
}
.fieldWithErrors
{
background: pink;
background-color:pink;
outline-color: red;
/*for IE!*/
border-color: red;
}
/* Browser support may be limited here...*/
.fieldWithErrors input,
.fieldWithErrors select,
.fieldWithErrors textarea
{
background: pink;
background-color: pink;
}
Known to work with:
- Rails 1.1.6
- FireFox 2
Enhancements:
- This release adds a sample application, some code cleanup and minor bugfixes, and some changes to the sample CSS.
<<lessThe form data is then validated against a model on the server-side. RTV then responds with javascript that dynamically updates the HTML document. This enables you to mark form fields as valid/invalid using CSS.
The download package now includes a sample rails application. It does not need a database to run, thanks to this. Simply execute ./script/server from the rtv_sample_app directory and point your bwoser to http://localhost:3000.
Usage:
Download and extract the contents of the_plugin directory to your vendor/plugins directory. Please the the rtv_sample_app for more details.
In your controller:
include UIEnhancements::RealtimeValidation
helper :RealtimeValidation
realtime_validation_for(:the_form_id, :the_model)
In your view, after a form:
In your CSS (example):
.fieldWithoutErrors,
.fieldWithErrors
{
outline-width: 1px;
outline-color: white;
outline-style: solid;
/* !!HACK!! IE will not use this because it does not understand !important. Border is not needed for firefox, so make it 0px!*/
border-width: 0px !important;
/*for IE!*/
border-width: 1px;
border-color: white;
border-style: solid;
}
.fieldWithErrors
{
background: pink;
background-color:pink;
outline-color: red;
/*for IE!*/
border-color: red;
}
/* Browser support may be limited here...*/
.fieldWithErrors input,
.fieldWithErrors select,
.fieldWithErrors textarea
{
background: pink;
background-color: pink;
}
Known to work with:
- Rails 1.1.6
- FireFox 2
Enhancements:
- This release adds a sample application, some code cleanup and minor bugfixes, and some changes to the sample CSS.
Download (0.082MB)
Added: 2006-11-27 License: Public Domain Price:
1064 downloads
Real-Time Proactive Secret Sharing Library 0.1
Real-Time Proactive Secret Sharing Library is an implementation of the Shamirs secret sharing scheme. more>>
Real-Time Proactive Secret Sharing Library is an implementation of the Shamirs secret sharing scheme and Herzbergs proactive secret sharing algorithm.
Real-Time Proactive Secret Sharing Library targets the RTAI OS. It includes a port of GNU GMP to RTAI, which is used for multiple precision arithmetic operations.
to run the rt-pss
./start_pss ID (*) ID should be between 0 and PSSW_NUMBER_OF_MACHINES-1(this constant is defined in src/share_app_pssw.h)
(*) each local RT-PSS should be executed with a
different ID starting with 0
(*) you must have superuser privilegies to do that.
to stop the rt-pss
./stop_pss (*) be sure that no applications that uses the RT-PSS are
running.
(*) you must have superuser privilegies to do that.
developing RT-PSS Apps
There is a demo application available in the directory: examples/GetShare. The RT-PSS API can be consulted in the file README.API
<<lessReal-Time Proactive Secret Sharing Library targets the RTAI OS. It includes a port of GNU GMP to RTAI, which is used for multiple precision arithmetic operations.
to run the rt-pss
./start_pss ID (*) ID should be between 0 and PSSW_NUMBER_OF_MACHINES-1(this constant is defined in src/share_app_pssw.h)
(*) each local RT-PSS should be executed with a
different ID starting with 0
(*) you must have superuser privilegies to do that.
to stop the rt-pss
./stop_pss (*) be sure that no applications that uses the RT-PSS are
running.
(*) you must have superuser privilegies to do that.
developing RT-PSS Apps
There is a demo application available in the directory: examples/GetShare. The RT-PSS API can be consulted in the file README.API
Download (1.3MB)
Added: 2006-06-09 License: GPL (GNU General Public License) Price:
1235 downloads
Quarters Board Game 4.0
Quarters Board Game is a strategy game for two players. more>>
Quarters Board Game project is a strategy game for two players.
Although its rules are relatively simple, it still offers some of the same opportunities for skill as in chess.
This program was originally conceived in the summer of 1986 during a study of the mini-max algorithm for chess playing computers, and was thus designed to offer some of the same type of strategies.
The game was originally written in BASIC, then ported to Turbo Pascal, then to C, and finally to Java.
The Java version is not necessarily object oriented, since it is a crude port from the C version.
<<lessAlthough its rules are relatively simple, it still offers some of the same opportunities for skill as in chess.
This program was originally conceived in the summer of 1986 during a study of the mini-max algorithm for chess playing computers, and was thus designed to offer some of the same type of strategies.
The game was originally written in BASIC, then ported to Turbo Pascal, then to C, and finally to Java.
The Java version is not necessarily object oriented, since it is a crude port from the C version.
Download (0.16MB)
Added: 2007-01-15 License: GPL (GNU General Public License) Price:
1013 downloads
Tribal Trouble 2 Beta 0.9
Tribal Trouble 2 Beta 0.9 brings users a fast-paced amazing real time strategy game in the wacky Viking age where pillaging and plundering were everyone favorite pastimes. more>> Tribal Trouble 2 Beta 0.9 brings users a fast-paced amazing real time strategy game in the wacky Viking age where pillaging and plundering were everyone favorite pastimes.
Create your own Viking chieftain (or chieftess), sail on quests to foreign places, challenge other online players to battle and then go spend your loot on more Viking gear!
Enhancements:
- Number of players on each island shown on the Hall map.
- Players can create their own rooms in the Hall.
- The Lur Blaster will no longer lose energy if he is stunned while playing a tune.
- Initial cease-fire period reduced in treasure games to avoid tower axemen rushing.
Requirements: Java 2 Standard Edition Runtime Environment
Added: 2009-05-06 License: Freeware Price: FREE
811 downloads
SliceTime 0.9e
Slicetime is a program that helps you track time you spend on projects. more>>
Slicetime is a program that helps you track time you spend on projects. Slicetime is designed to make it easy to switch between different projects, the main window is in the shape of vertical sidebar that makes it convenient to keep it always visible on the side of the screen. In short, continuous tracking of time taken on projects is made as effortless as possible.
The purpose of the program is to make you aware of which tasks take more time, and which take less; it can also be used to keep track and charge time if youre working for someone on hourly basis. The advantage of the program is that it lets you switch back and forth very easily, letting you keep a very accurate account of how much a task took even if you have to stop it frequently and work on something else.
The results can be very surprising, something may feel like it took only a few minutes whereas it took almost an hour in real time; the reverse is sometimes true although not as often.
Slicetime main window is a vertical bar with a row of buttons, each button representing a project. When the button is pressed in, the project is active, the rest of projects are inactive. Each project button shows the time taken on the project today. At 12 oclock the daily time is reset and new days count is started.
Time is kept for current day, week, month and total. Example: I may have a slicetime project that has 3:59 time today, 8:00 this week (including today), 17:00 this month (including this week) and 125:00 total time, which may have been accumulated over years.
Slicetime makes it easy to change project time for current day if you forgot to check in or check out. Menu command (add or subtract project time) will add or subtract the time for today. Another command will set all times for total, month, week and day.
Slicetime as of now has two report options, it can report by time taken for each project on a daily, weekly, montly and total basis and the same by percentage. For example, it will show that today project A was 60%, project B - 30% and C - 10%, and will do the same for current week, month and total.
Note that Slicetime does not keep separate time accounting from previous week, month, day, etc. It will not tell you that you spend 5 hours last saturday. It will only tell you total time, time taken on current month, week and day; but it makes perfect sense to keep this data as well, and I will almost certainly add it.
Functionality:
- Add project
- Remove project (deletes all data and button, irrecoverable, use sparingly!)
- Report by time
- Report by percentage
- Set project time
- Add or subtract project time
Version restrictions:
- Number of project buttons is effectively limited by vertical size of screen. On a common 1024 res, you can fit in around 42 projects, which should be enough for anyone, but I will add an option of hiding projects from main window if requested.
- Latest version not tested in Unix, but will most likely work. I will test it soon & fix if needed.
- Could keep time for each past day, week, month, year. Most likely will be added eventually.
Enhancements:
- Several bugs were fixed.
- The interface was changed to be more user friendly.
- Autosave functionality was added to make up for some stability problems on WinXP.
<<lessThe purpose of the program is to make you aware of which tasks take more time, and which take less; it can also be used to keep track and charge time if youre working for someone on hourly basis. The advantage of the program is that it lets you switch back and forth very easily, letting you keep a very accurate account of how much a task took even if you have to stop it frequently and work on something else.
The results can be very surprising, something may feel like it took only a few minutes whereas it took almost an hour in real time; the reverse is sometimes true although not as often.
Slicetime main window is a vertical bar with a row of buttons, each button representing a project. When the button is pressed in, the project is active, the rest of projects are inactive. Each project button shows the time taken on the project today. At 12 oclock the daily time is reset and new days count is started.
Time is kept for current day, week, month and total. Example: I may have a slicetime project that has 3:59 time today, 8:00 this week (including today), 17:00 this month (including this week) and 125:00 total time, which may have been accumulated over years.
Slicetime makes it easy to change project time for current day if you forgot to check in or check out. Menu command (add or subtract project time) will add or subtract the time for today. Another command will set all times for total, month, week and day.
Slicetime as of now has two report options, it can report by time taken for each project on a daily, weekly, montly and total basis and the same by percentage. For example, it will show that today project A was 60%, project B - 30% and C - 10%, and will do the same for current week, month and total.
Note that Slicetime does not keep separate time accounting from previous week, month, day, etc. It will not tell you that you spend 5 hours last saturday. It will only tell you total time, time taken on current month, week and day; but it makes perfect sense to keep this data as well, and I will almost certainly add it.
Functionality:
- Add project
- Remove project (deletes all data and button, irrecoverable, use sparingly!)
- Report by time
- Report by percentage
- Set project time
- Add or subtract project time
Version restrictions:
- Number of project buttons is effectively limited by vertical size of screen. On a common 1024 res, you can fit in around 42 projects, which should be enough for anyone, but I will add an option of hiding projects from main window if requested.
- Latest version not tested in Unix, but will most likely work. I will test it soon & fix if needed.
- Could keep time for each past day, week, month, year. Most likely will be added eventually.
Enhancements:
- Several bugs were fixed.
- The interface was changed to be more user friendly.
- Autosave functionality was added to make up for some stability problems on WinXP.
Download (0.008MB)
Added: 2006-07-02 License: GPL (GNU General Public License) Price:
1210 downloads
Forgotten Destruction 341
Forgotten Destruction project is a cross-platform realtime strategy game. more>>
Forgotten Destruction project is a cross-platform realtime strategy game.
Forgotten Destruction is a fun, interesting, and enjoyable realtime strategy game. Its targetted operating systems are Linux, Windows 95, Windows 98, Windows ME, Windows 2000, Windows XP, MacOS 9, and MacOS X.
The game is centered around the conflict of two powerful, space- exploring races. One is a destructive empire lead by currupt dictators, the other is a civilised confederation, consisting of an alliance between all Earth nations, and nearby allies of humanity.
The game itself supports audio sound effects and music, realtime sound mixing, amazing 2D raster graphics, stunning visual effects, and more.
<<lessForgotten Destruction is a fun, interesting, and enjoyable realtime strategy game. Its targetted operating systems are Linux, Windows 95, Windows 98, Windows ME, Windows 2000, Windows XP, MacOS 9, and MacOS X.
The game is centered around the conflict of two powerful, space- exploring races. One is a destructive empire lead by currupt dictators, the other is a civilised confederation, consisting of an alliance between all Earth nations, and nearby allies of humanity.
The game itself supports audio sound effects and music, realtime sound mixing, amazing 2D raster graphics, stunning visual effects, and more.
Download (3.1MB)
Added: 2006-11-11 License: GPL (GNU General Public License) Price:
1080 downloads
Quantum Star: Generations 0.7.2c
Quantum Star: Generations is an easy to install and manage space strategy browser-based game. more>>
Quantum Star: Generations project is an easy to install and manage space strategy browser-based game.
Quantum Star: Generations is a browser-based space strategy and trading game played across a mapped galaxy against other players. Utilizing mining, trading, research, and production through easy-to-use tools, QS enables both broad micro-management of resources or more "aggregated" methods. Players compete, combat enemy fleets, and manage planets to become the "last man standing". No user downloads are required, and the game is free to host or play.
Quantum Star: Generations Evolved is a browser-based space strategy game. It is playable from any modern browser such as Mozilla Firefox or Internet Explorer. It is written in the PHP programming language and utilises either MySQL or PostgreSQL as a backend database. It is also free for download and may be hosted independently by any user. The game is released under the terms of the Affero General Public License.
Quantum Star: Generations Evolved is a free open source application. Being open source you may modify and redistribute the source code under the terms of the Affero General Public License, or at your option the GNU General Public License version 3 (not version 2).
Main features:
- Free
- Its fun!
- Easy installation
- Support for all versions of MySQL and PostgreSQL
- Support for both PHP4 and PHP5
- Platform independent
- Multiple language support with UTF-8 the standard character encoding
- Focus on security and resource efficiency
- Automated administration tasks
- Did we mention it is fun?
<<lessQuantum Star: Generations is a browser-based space strategy and trading game played across a mapped galaxy against other players. Utilizing mining, trading, research, and production through easy-to-use tools, QS enables both broad micro-management of resources or more "aggregated" methods. Players compete, combat enemy fleets, and manage planets to become the "last man standing". No user downloads are required, and the game is free to host or play.
Quantum Star: Generations Evolved is a browser-based space strategy game. It is playable from any modern browser such as Mozilla Firefox or Internet Explorer. It is written in the PHP programming language and utilises either MySQL or PostgreSQL as a backend database. It is also free for download and may be hosted independently by any user. The game is released under the terms of the Affero General Public License.
Quantum Star: Generations Evolved is a free open source application. Being open source you may modify and redistribute the source code under the terms of the Affero General Public License, or at your option the GNU General Public License version 3 (not version 2).
Main features:
- Free
- Its fun!
- Easy installation
- Support for all versions of MySQL and PostgreSQL
- Support for both PHP4 and PHP5
- Platform independent
- Multiple language support with UTF-8 the standard character encoding
- Focus on security and resource efficiency
- Automated administration tasks
- Did we mention it is fun?
Download (MB)
Added: 2007-03-11 License: AGPL (Affero General Public License) Price:
961 downloads
Feudalistic Dynasties 0.0.2
Feudalistic Dynasties is a turn-based strategy game placed in the time of feudality in the early middle ages. more>>
Feudalistic Dynasties is a turn-based strategy game placed in the time of feudality in the early middle ages.
As a king of a fictitious European dynasty you have to manage your land setting in vassals, building settlements, recruting combatants...
Please note that feudalistic Dynasties is still in pre-alpha status, so some features may not be implemented. To see which features are yet implemented read the NEWS item of the last release of the game.
Feudalistic Dynasties is published under the GNU General Public License (GPL). You can compile feudalistic Dynasties on various platforms, because paragui uses SDL and SDL supports a large number of plattforms.
<<lessAs a king of a fictitious European dynasty you have to manage your land setting in vassals, building settlements, recruting combatants...
Please note that feudalistic Dynasties is still in pre-alpha status, so some features may not be implemented. To see which features are yet implemented read the NEWS item of the last release of the game.
Feudalistic Dynasties is published under the GNU General Public License (GPL). You can compile feudalistic Dynasties on various platforms, because paragui uses SDL and SDL supports a large number of plattforms.
Download (1.2MB)
Added: 2007-04-09 License: GPL (GNU General Public License) Price:
932 downloads
FreeRa 070122
FreeRa is a Westwood red alert game engine. more>>
FreeRa is a Westwood red alert game engine (original .mix files required). This is a rebuild of the (westwood) red alert game engine (based on FreeCNC).
FreeRa is a real time strategy game. To play the game with this engine you need the original game (mix files). The only game supported is red alert 1.
<<lessFreeRa is a real time strategy game. To play the game with this engine you need the original game (mix files). The only game supported is red alert 1.
Download (0.50MB)
Added: 2007-02-02 License: GPL (GNU General Public License) Price:
591 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 real time strategy game 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