File: g_edicts.h

package info (click to toggle)
ufoai 2.5-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 82,128 kB
  • sloc: cpp: 225,227; python: 5,111; ansic: 4,133; php: 2,209; perl: 1,931; sh: 1,517; xml: 1,115; makefile: 401; sed: 11
file content (50 lines) | stat: -rw-r--r-- 1,791 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
 * @file
 * @brief functions to handle the storage and lifecycle of all edicts in the game module.
 */

/*
All original material Copyright (C) 2002-2013 UFO: Alien Invasion.

Original file from Quake 2 v3.21: quake2-2.31/game/g_utils.c
Copyright (C) 1997-2001 Id Software, Inc.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

*/

#pragma once

#include "g_local.h"

Edict* G_EdictsConstruct(void);
void G_EdictsInit(void);
Edict* G_EdictsGetNewEdict(void);
Edict* G_EdictDuplicate(const Edict* edict);
int G_EdictsGetNumber(const Edict* ent);
bool G_EdictsIsValidNum(const int idx);
Edict* G_EdictsGetByNum(const int num);
Edict* G_EdictsGetFirst(void);
Edict* G_EdictsGetNext(Edict* lastEnt);
Edict* G_EdictsGetNextInUse(Edict* lastEnt);
Edict* G_EdictsGetNextActor(Edict* lastEnt);
Edict* G_EdictsGetNextLivingActor(Edict* lastEnt);
Edict* G_EdictsGetNextLivingActorOfTeam(Edict* lastEnt, const int team);
Edict* G_EdictsGetActorByUCN(const int ucn, const int team);
Edict* G_EdictsGetTriggerNextMaps(Edict* lastEnt);
Edict* G_EdictsGetLivingActorFromPos(const pos3_t pos);
Edict* G_EdictsFindTargetEntity(const char* target);
void G_EdictsThink(void);