Jump to content
The Dark Mod Forums

Recommended Posts

Posted (edited)

Currently I got system that snaps a particular entity from location A to location B. So it's an instant movement.

 

What I need is the following. I need to move entity from A to B, not snap it, over the course of time. So instead of an instant snap, it will move from A to B in 2 sec (for example).

 

My guess it that I need to advance coordinate in SetWorldOrigin(I think that's what I use currently to change location of the entity) in a loop, but I am having brain fart and can't put it all together. I am thinking it could be SetWorldOrigin( currentOrigin ) where currentOrigin = ( destinationB - currentOrigin ) / granularity.

 

vector currentOrigin = sourceA;

vector granularity = '100 100 100' ;

 

delta = ( destinationB - currentOrigin ) / granularity;

 

loop begins

SetWorldOrigin( currentOrigin );

currentOrigin = currentOrigin + delta;

loop ends

 

Something like that?

 

I assume time should be in the condition of the loop? If so, how to I plug it in and have it updated? What if time runs out, but entity is still in between source and destination ? How would I make it where entity will move from A to B in the given time, guaranteed ? Thanks!

 

EDIT: Should I do something like the following ?

 

currentTime = time;

 

while (currentTime <= 2sec) {

... code in the loop from above ...

currentTime = currentTime + timeIncrement;

}

 

and timeIncrement probably would be 2 sec / ( (B - A) / 2 sec ) ?

Edited by motorsep
Posted (edited)

Have a look at the script events for idMovers. I expect most if not all of those are vanilla doom3. To achieve what you are trying to do, you can specify either the speed or the time to reach the goal before calling moveToPos(x,y,z).

 

If that's no good, then you want to move your entity a fraction of the total distance each tic. You shouldn't rely on tics being spaced evenly in time, because other things might slow down the frame rate. So use the game clock. Something like:

vector destinationOrigin = $target.getOrigin(); // or whatever
vector startingOrigin = $mover.getOrigin();
vector journey = sys.vecLength( destinationOrigin - startingOrigin );
float moveStartTime = sys.getTime();
float journeyTime = 3; // seconds
float distance = sys.vecLength( journey );
float travelled = 0;

while ( travelled < distance )
{
  float timePassed = sys.getTime() - moveStartTime;
  float fracCompleted = timePassed /  journeyTime;
  $mover.setOrigin( startingOrigin + fracCompleted * journey );
  travelled = sys.vecLength( $mover.getOrigin() - startingOrigin );
  sys.waitFrame()
}

 

Edit: I see I mixed game code and script code in that example. If using a script, you want to sys.waitFrame() in the loop. If in game code, don't loop but set it up so the code in the loop gets called once per frame.

Edited by SteveL
Posted

Translated to script language... I don't like leaving hybrid code lying around :) Although hopefully you can use the existing idMover script events which let you use a natural looking acceleration and deceleration time too.

Posted

Thanks, I'll try digesting it after work :)

 

I can't use idMove script events on non-func_mover entity. And since what I am doing is totally free form (entity follows player with delay), func_mover is a no-go.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recent Status Updates

    • JackFarmer

      Happy Labour Day, my taffing taffers & hard working mapping friends!
      And remember the poor souls who, within the Inventors’ organization, labor under Jonus’s yoke to ensure the success of that very guild! Always remember the hard workers!
      · 0 replies
    • datiswous

      Is there a script command to make a screenshot?
      I just though it could be interesting to be able to create a screenshot at a certain point in time. Then use that screenshot possibly in a debrief.
      I guess the second question is: Can you use a (in-game made) screenshot in a (debrief) gui?
      · 1 reply
    • Bikerdude  »  Display Cement

      So what type, and what ratio of portland to sand 😏
      · 1 reply
    • JackFarmer

      Our esteemed professional mapping predecessors from 20 years ago faced the same challenges we do today!
      · 2 replies
    • snatcher

      TDM Modpack 5.1 is out!
      · 0 replies
×
×
  • Create New...