Please login or register.

Login with username, password and session length
Advanced search  

News:

This forum provides RSS feed. To query recent posts use this url. More...


Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - princezna

Pages: [1]
1
Fixed / weird call stack behavior
« on: September 04, 2007, 02:42:05 PM »
Dear community members,
while developing a new project using WME, I came across some very strange behavior, that might lead us to bugs in the WME call stack. But it might as well just be me. ;) So here's the deal:

1) This one seems to be event related. A running event is interrupted by invoking the same event again. This is perfectly fine as long as we don't have custom subroutine (method) calls inside the event handler. The problem is that only the top subroutine on the call stack gets interrupted and the event handler continues execution until the end or until a return statement is found. Not following me? That's alright, because here's some code to demonstrate my point:

This is a script file attached to a rock object that is normally accessible to the player on the current scene.
Code: [Select]
on "LookAt"
{
  actor.GoTo( this.X, this.Y );
  actor.Talk( "It's just a small rock, but it might come in handy." )
}

Let's say the player triggers the "LookAt" event and while the actor is still walking to the rock, he triggers the event again. The actor stops and the event is restarted. That's fine - nothing unexpected here. Now we want the actor to perform some generic action as he tries to reach the selected object.

This is a script file attached to the main actor.
Code: [Select]
method GoToLocation( px, py )
{
  // perform some action, doesn't really matter what, might be nothing
  this.GoTo( px, py );
}

Now we change the item script to include this new method. It's not the event that gets interrupted now - it's the GoToLocation method only. How does it affect the game? The main actor stops, says "It's just a small rock, ..." and the event is restarted - the actor starts moving towards the rock again. Of course we could check, if the required conditions are met after each call to a subroutine inside the event handler, but this introduces a lot of redundant code and makes custom methods kind of useless in this or similar situations. So tell me: Is this intended behaviour or a bug? By the way this happens both in stable and beta.

2) I discovered this one when playing around with the last stable version of WME (didn't try it yet in beta). I had a few events I needed to trigger after a certain period of time, so I wrote this little script that basicly works as timers. (A timer class would be a nice addition to the next WME version, don't you think? ;))

Here's the code:
Code: [Select]
#include "scripts\base.inc"

global timers = new Array();

method timer_set( obj, time, event, loop )
{
  var index = timers.Length;
  var timer = new Object();

  timer.master = obj; // the object we're going to apply the event to
  timer.start = Game.CurrentTime;
  timer.interval = time;
  timer.event = event; // event to be applied
  timer.loop = loop; // True = loop the timer, False = only one shot

  timers[index] = timer;

  return (index);
}

/* this method is supposed to remove the timer

   btw I wouldn't mind if someone explained to me in detail how does
   garbage collection in WME work */
method timer_remove( index )
{
  timers[index] = null;
}

/* update all active timers

   this method should be called everytime in the main loop */
method timer_update()
{
  var current, master;
  var delta, i;

  for( i = 0; i < timers.Length; i = i + 1 )
  {
    current = timers[i];
    if ( !current )
      continue;

    delta = Game.CurrentTime - current.start;
    if ( delta >= current.interval )
    {
      master = current.master;
      if ( master.CanHandleEvent( current.event ) )
        master.ApplyEvent( current.event );

      if ( !current.loop )
        timers[i] = null;
    }
  }
}

The problem here is that WME jumps almost randomly in the script! When the execution reaches this line:
Code: [Select]
delta = Game.CurrentTime - current.start;It always jumps at the end of the method, not even trying to evaluate the following if condition. I tried to step through the code using the build-in debugger several times and I'm sure the condition is met, but never evaluated. So I wonder, what's up with that? ??? (Please restrain yourself from commenting on the timer implementation itself and concentrate on the problem in question.)

Everything was tested on my laptop running WinXP PRO SP2.
Any help would be very appreciated, thank you.

Pages: [1]

Page created in 0.036 seconds with 20 queries.