Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a text game and I need a simple combat system, like in MUDs, you issue commands, and once in a while "tick" happens, when all those commands execute, player and monsters deal damage, all kinds of different stuff happens. How do I implement that concept? I thought about making a variable that holds last tick time, and a function that just puts events on stack and when that time is (time +x) executes them all simutaniously. Is there any easier or cleaner variant to do that?

What would be possible syntax for that?

double lastTickTime;
double currentTime;

void eventsPile(int event, int target)
{
// how do i implement stack of events? And send them to execute() when time is up?
}

void execute(int event, int target)
{
     if ((currentTime - lastTickTime) == 2)
     {
         eventsHandler(event, target);
     }    
     else 
     { // How do I put events on stack?
     }
}
share|improve this question
2  
What you have sounds good to me. – Peter Alexander Nov 20 '10 at 19:33
I've used that sort of approach in the past and it worked well, for what it's worth. – Stuart Golodetz Nov 20 '10 at 19:37
updated, need help with implementation or direction on what to read. – Dvole Nov 20 '10 at 20:03

2 Answers

up vote 1 down vote accepted

The problem with simple action stack is that the order of actions will probably be time based - whoever types fastest will strike a first hit. You should probably introduce priorities in the stack, so that for instance all global events trigger first, then creatures' action events, but those action events are ordered by some attribute like agility, or level. If a creature has higher agility then that it gets the first hit.

share|improve this answer
Well that sounds hugely complicated to me, I'm just starting and it's my first programming project so – Dvole Nov 20 '10 at 19:54

Use a timer executing every x ms (whereas x is your ticktime), execute any actions put on the stack in that method.

share|improve this answer
...and make sure that executing the actions doesn't take longer than the length of your tick. – Stuart Golodetz Nov 20 '10 at 19:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.