Main > Free Download Search >

Free real time strategy software for linux

real time strategy

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4903
OCERA Real Time Ethernet 0.3.1

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.
<<less
Download (1.6MB)
Added: 2005-11-03 License: GPL (GNU General Public License) Price:
1454 downloads
SliceTime 0.9e

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.
<<less
Download (0.008MB)
Added: 2006-07-02 License: GPL (GNU General Public License) Price:
1210 downloads
Real Estate Management Software 1.27a

Real Estate Management Software 1.27a


Real Estate Management Software is a real estate management solution for real estate professionals. more>>
Real Estate Management Software is the perfect real estate management solution for real estate professionals.
Get all your listings on the web with free, easy to use web-based real estate management software.
Create your areas, school districts and property types and even upload images. Full featured searching available. 100% free license. Uses PHP and MySQL.
Enhancements:
- This real estate management release has some updates to the system documentation.
<<less
Download (0.19MB)
Added: 2006-02-03 License: Free To Use But Restricted Price:
1371 downloads
Journyx Free Time Tracking Software 7.6

Journyx Free Time Tracking Software 7.6


Journyx Time Tracking is time tracking software that lets an employee enter project time and expense information from anywhere on the web. Add Journyx... more>> <<less
Download (31250KB)
Added: 2009-04-29 License: Freeware Price: Free
177 downloads
Blackjack basic strategy calculator 2.4

Blackjack basic strategy calculator 2.4


Blackjack basic strategy calculator project is a Monte Carlo basic strategy calculator. more>>
Blackjack basic strategy calculator project is a Monte Carlo basic strategy calculator.
bsc finds the Blackjack strategy through the Monte Carlo method.
It analyzes each situation with adaptive depth, and is generally optimized for speed.
The rules are hard coded for the authors local casino; adding others or changing them is left for others to do.
It seems to find the correct strategy, but the house edge appears a bit wrong.
Main features:
- no double after split
- double only 9..11
- split as often as you want
- European no hole card
- no surrender
- dealer stands on soft 17
- perfect continous shuffle machine (CSM)
- 6 decks
<<less
Download (0.054MB)
Added: 2006-10-23 License: GPL (GNU General Public License) Price:
1107 downloads
Rails Real-Time Form Validation Plug-In 1.0.2

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.
<<less
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 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
<<less
Download (1.3MB)
Added: 2006-06-09 License: GPL (GNU General Public License) Price:
1235 downloads
ccache stats 0.2

ccache stats 0.2


ccache stats is a simple way to get real time ccache stats for gentoo maniacs!! more>>
ccache stats is a simple way to get real time ccache stats for gentoo maniacs!! I was in trouble formatting output.

Finally I wrote a horrible perl script to do it, trying to limit damages caused by file accesses...

Im not a programmer and I havent so much time, so Im sure it can be improved.. First of all Ill be involved in improving graphics!!

Feel free to give suggestion!

OK.. At the moment I assume you install it by superkaramba tool.. so I match its download directory to run the script stats.pl.. If you download it via website make sure the corresponding line in .theme file match the correct dir! (Im studying a way to skip this problem)

<<less
Download (0.004MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1220 downloads
Custom Strategy Role Playing Game 0.15

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.
<<less
Download (0.75MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1078 downloads
TimeTrex Time and Attendance 2.2.13-1034

TimeTrex Time and Attendance 2.2.13-1034


Web-based Time And Attendance suite which offers Employee Time and Attendance (timeclock, timecard, timesheet) and Payroll all in single tightly integ... more>> <<less
Download (3906KB)
Added: 2009-04-20 License: Freeware Price: Free
838 downloads
Tribal Trouble 2 Beta 0.9

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


<<less
Added: 2009-05-06 License: Freeware Price: FREE
811 downloads
Really Rather Good Battles In Space 1.03

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
<<less
Download (54MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1019 downloads
Cascade Historian 6.2.0

Cascade Historian 6.2.0


Cascade Historian software is an event driven data storage program. more>>
Cascade Historian software is an event driven data storage program used to maintain persistent time-sequence data sets derived from process data.

Features and Benefits

In addition to providing storage the Historian also offers a historical query facility suitable for generating graphs and tabular output for export to other analysis programs. Other programs can also send data to the Cascade Historian by linking the API library and making the appropriate function calls.

The data storage mechanism within the Cascade Historian will maintain any number of simultaneous time histories, one for each configured process point.

The data for each point is maintained in one or more files, allowing for removal of stale data or offline archival of old data. These files are either numbered in increasing numerical order, or dated. When using dated files, the Cascade Historian automatically begins logging to a new file at midnight.

Data logging by event

The Cascade Historian records data by event. If no data change event occurs for a point, no data is written to disk. This saves disk space when the process point is idle, and captures even very short duration events when the point is changing. This is both more efficient and more accurate than a sampling historian. It is possible to place both a time and value deadband on each point to reduce storage for points whose values are constantly changing by insignificant amounts. The Cascade Historian will not reorder out of sequence data.

Data is stored on disk in fixed length binary records to minimize disk space, with a time resolution of nanoseconds. These files can be easily read by any custom program as well as by the Cascade Historian.

Any process may request data from the Cascade Historian. The Cascade Historian maintains a configurable in-memory cache for each point being recorded so that queries of recent data will not require disk access. If the request cannot be satisfied from the in-memory cache, then the disk files related to the point will be consulted for the data to satisfy the request. The requests can take one of the following forms:

Raw Data - Simply returns all recorded events for the data point, reported vs. time.
Periodic Data - Performs linear interpolation on the data to produce a data set at an even time interval. This produces the same result that a sampling historian would produce.
Relative Interpolation - Performs interpolation of one data point against another to produce a Y vs. X data set. Interpolation is performed on Y to produce (X,Y) pairs at the times of known values of X.
Periodic Relative Interpolation - Performs interpolation of one data point against another to produce a Y vs. X data set. Interpolation is performed on both X and Y to produce (X,Y) pairs at an even time interval.

The Cascade Historian has been built to allow quick addition of other forms of historical query.
<<less
Download (MB)
Added: 2007-06-18 License: Free for non-commercial use Price:
859 downloads
FreeRa 070122

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.

<<less
Download (0.50MB)
Added: 2007-02-02 License: GPL (GNU General Public License) Price:
591 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
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5