View Issue Details

IDProjectCategoryView StatusLast Update
0000041Gameplay + OpenGL[All Projects] Featurepublic2017-01-13 14:01
ReporterMajor Cooke 
Assigned To 
PrioritynormalSeverityfeatureReproducibilityhave not tried
Status closedResolutionwon't fix 
Summary0000041: SetNearestChaseAngle()
Description...Not exactly a clear title but it's what I could think of.

Anyway, SetNearestChaseAngle will grab the actor's angle and set the chase direction to the CLOSEST of the eight directions one can travel.

So if the actor's at an angle of 87, it'll set the chase direction to 90 degree one. If the actor's at 237, it'll set the chase direction to the 225 angle. Etc.
TagsNo tags attached.

Relationships

Activities

Major Cooke

Major Cooke

2017-01-13 07:37

reporter   ~0000058

Also, it shouldn't move the actor -- just turns their direction. I have a custom AI chasing function which reverts to using the old A_Chase logic if the target is out of sight or something is in the way so they can continue to navigate properly, but when they resume using it, they could potentially wind up turning around a whole 180 because that was their last chase direction.
Xaser

Xaser

2017-01-13 11:07

developer   ~0000064

If I'm reading this correctly, this is a function to force A_Chase to move in a particular direction? If so, sounds like it'd be better off as an "angle" parameter to A_Chase for finer control. For your use case, one can pass in self.angle as the angle param.
Major Cooke

Major Cooke

2017-01-13 11:47

reporter   ~0000065

You read it wrong. It's designed only to turn the current angle to a cardinal 45 degrees that is closest to its current angle.
Major Cooke

Major Cooke

2017-01-13 11:48

reporter   ~0000066

In particular, the ChaseDirection (or whatever it's called) integer will be adjusted. The one that goes from 0 to 7 I think...?
Xaser

Xaser

2017-01-13 12:07

developer   ~0000067

You're saying two different things. Are you wishing to set "movedir" to the current angle (rounded to 45 degrees and converted) or set the current angle to (the angle implied by) "movedir"?

(This still seems more natural to be a parameterize function, though you do bring up that the "setting movedir" case brings the challenge of how/if to convert an angle to a 0-7 int. Keeping everything in angles and documenting "hey, this WILL round to the nearest 45, yo" would be the most user-friendly).
Major Cooke

Major Cooke

2017-01-13 12:13

reporter   ~0000068

The former. Change the movedir rounded to 45 degrees and converted, yes.
Graf Zahl

Graf Zahl

2017-01-13 14:01

administrator   ~0000069

Why don't you implement such a simple math function yourself?
Anything in here is accessible to scripting.

Issue History

Date Modified Username Field Change
2017-01-13 07:35 Major Cooke New Issue
2017-01-13 07:37 Major Cooke Note Added: 0000058
2017-01-13 11:07 Xaser Note Added: 0000064
2017-01-13 11:47 Major Cooke Note Added: 0000065
2017-01-13 11:48 Major Cooke Note Added: 0000066
2017-01-13 12:07 Xaser Note Added: 0000067
2017-01-13 12:13 Major Cooke Note Added: 0000068
2017-01-13 14:01 Graf Zahl Note Added: 0000069
2017-01-13 14:01 Graf Zahl Status new => closed
2017-01-13 14:01 Graf Zahl Resolution open => won't fix
2017-01-29 21:18 Rachael Category Suggestion => Feature