mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 21:50:05 +00:00
60 lines
766 B
R
60 lines
766 B
R
|
#include "Entity.h"
|
||
|
|
||
|
@class Waypoint;
|
||
|
@class Bot;
|
||
|
|
||
|
struct bot_data_t = {
|
||
|
string name;
|
||
|
float pants, shirt;
|
||
|
};
|
||
|
typedef struct bot_data_t bot_data_t;
|
||
|
|
||
|
@interface Target: Entity
|
||
|
{
|
||
|
@public
|
||
|
Waypoint current_way;
|
||
|
Target _last;
|
||
|
}
|
||
|
@end
|
||
|
|
||
|
@interface Waypoint: Target
|
||
|
{
|
||
|
@public
|
||
|
Waypoint [4] links;
|
||
|
Waypoint []list;
|
||
|
unsigned count;
|
||
|
unsigned b_sound;
|
||
|
}
|
||
|
-(void)fix;
|
||
|
-(void)clearRouteForBot:(Bot)bot;
|
||
|
@end
|
||
|
|
||
|
@interface Bot: Target
|
||
|
{
|
||
|
@public
|
||
|
integer b_clientflag;
|
||
|
}
|
||
|
@end
|
||
|
|
||
|
@implementation Target
|
||
|
@end
|
||
|
|
||
|
@implementation Waypoint
|
||
|
-(void)fix
|
||
|
{
|
||
|
//local integer i = 2, tmp;
|
||
|
local unsigned u;
|
||
|
//tmp = (integer)links[i];
|
||
|
//for (u = 0; u < count; u++)
|
||
|
[list[u] fix];
|
||
|
}
|
||
|
|
||
|
-(void)clearRouteForBot:(Bot)bot
|
||
|
{
|
||
|
local integer flag;
|
||
|
flag = bot.b_clientflag;
|
||
|
b_sound &= ~flag;
|
||
|
}
|
||
|
@end
|
||
|
|