forked from raduprv/Eternal-Lands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2d_objects.h
275 lines (247 loc) · 8.25 KB
/
2d_objects.h
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/*!
* \file
* \ingroup display
* \brief Handles rendering and loading 2d objects
*/
#ifndef __OBJ_2D_H__
#define __OBJ_2D_H__
#include "vmath.h"
#include "bbox_tree.h"
#ifdef __cplusplus
extern "C" {
#endif
/*!
*\name 2D Object array sizes
* The sizes of the arrays where we keep 2d objects and 2d object definitions
*/
/*! \{ */
#define MAX_OBJ_2D 15000 /*!<Maximum number of 2d objects in a map*/
#define MAX_OBJ_2D_DEF 1000 /*!<Maximum number of loaded 2d object definitions*/
/*! \} */
/*!
* obj_2d_def is loaded from a .2do-file and is shared amongst all objects of that type in the obj_2d_def_cache array
*/
typedef struct
{
#ifdef FASTER_MAP_LOAD
char file_name[128]; /*!< name of the file that contains the definition of the 2d object */
#endif
/*! \name start and end coordinates of the texture @{ */
float u_start; /*!< start position of the u coordinate */
float u_end; /*!< end position of the u coordinate */
float v_start; /*!< start position of the v coordinate */
float v_end; /*!< end position of the v coordiante */
/*! @} */
/*! \name size of the 2d object @{ */
float x_size; /*!< size in x direction */
float y_size; /*!< size in y direction */
/*! @} */
float alpha_test; /*!< Use alpha?*/
int object_type; /*!< Is this a ground, fence or plant object?
* ground: don't change rotation
* plant: put in an upwards rotation (x_rot+=90) and set z_rot=-rz
* fence: put in an upwards rotation (x_rot+=90)
*/
int texture_id; /*!< The location in the texture cache. */
} obj_2d_def;
/*!
* The obj_2d determines the position and rotation of the given 2d object. Furthermore it determines the type
*/
typedef struct
{
#ifndef FASTER_MAP_LOAD
char file_name[80]; /*!< name of the file that contains the definition of the 2d object */
#endif
/*! \name position of the object @{ */
float x_pos;
float y_pos;
float z_pos;
/*! @} */
/*! \name rotation of the object @{ */
float x_rot;
float y_rot;
float z_rot;
/*! @} */
MATRIX4x4 matrix; /*!< translation and rotaion matrix */
char display;/*!< flag determining whether the object is to be shown on screen. */
char state; /*!< state flag for future expansion & data alignment. */
obj_2d_def *obj_pointer; /**< Points to the 2d object type in the obj_2d_def list */
#ifdef CLUSTER_INSIDES
short cluster;
#endif
} obj_2d;
#ifndef FASTER_MAP_LOAD
/*!
* This is used for searching the 2d object cache for an already existing instance of the object definition
*/
typedef struct
{
char file_name[128]; /*!< the filename of the object */
obj_2d_def *obj_2d_def_id; /*!< a pointer to the header structure of this object */
}obj_2d_cache_struct;
extern obj_2d_cache_struct obj_2d_def_cache[MAX_OBJ_2D_DEF]; /*!< The 2d object cache array - holds all loaded 2d object definitions*/
#endif // FASTER_MAP_LOAD
extern obj_2d *obj_2d_list[MAX_OBJ_2D]; /*!< The 2d object array - holds all 2d objects on that map*/
extern float texture_scale; /*!< scaling factor for textures */
/*
* \ingroup display_2d
* \brief Displays the 2d object given by object_id
*
* Displays the 2D object given by object_id
*/
void draw_2d_object(obj_2d * object_id);
/*!
* \ingroup display_2d
* \brief Displays the 2dobjects in the obj_2d_list array
*
* Parses through the obj_2d_list, checking for an object within the viewing distance (dist_x^2+dist_y^2<=220)
*
* \sa draw_2d_object
* \sa obj_2d_list
* \callgraph
*/
void display_2d_objects();
#ifdef CLUSTER_INSIDES
/*!
* \ingroup load_2d
* \brief Get the bounding box of a 2D object
*
* Compute the bounding box for the 2D object with ID \a id.
*
* \param id The position on obj_2d_list of the object
* \param box Pointer to the resulting bounding box
* \retval int 0 on failure, 1 on success
*/
int get_2d_bbox (int id, AABBOX* box);
#endif // CLUSTER_INSIDES
#ifdef FASTER_MAP_LOAD
/*!
* \ingroup load_2d
* \brief Adds a 2d object at the given location.
*
* Adds a 2d object at the given location.
* It's usually called in the map loading process. Requires a location and rotation for the 2d object, that's loaded from the$
*
* \param id_hint Hint on the position of the object in the list. If
* this spot is already taken, a vacant spot will be
* chosen, but chances are that mouse click events on
* object won;t work because of a wrong ID.
* \param file_name The filename of the object we wish to add
* \param x_pos The x position
* \param y_pos The y position
* \param z_pos The z position
* \param x_rot The x rotation
* \param y_rot The y rotation
* \param z_rot The z rotation
* \retval int Returns -1 on failure and the location in the obj_2d_list if it succeeds
* \callgraph
*/
int add_2d_obj(int id_hint, const char* file_name,
float x_pos, float y_pos, float z_pos,
float x_rot, float y_rot, float z_rot, unsigned int dynamic);
#else // FASTER_MAP_LOAD
/*!
* \ingroup load_2d
* \brief Adds a 2d object at the given location.
*
* Adds a 2d object at the given location.
* It's usually called in the map loading process. Requires a location and rotation for the 2d object, that's loaded from the file given by the first parameter
*
* \param file_name The filename of the object we wish to add
* \param x_pos The x position
* \param y_pos The y position
* \param z_pos The z position
* \param x_rot The x rotation
* \param y_rot The y rotation
* \param z_rot The z rotation
* \retval int Returns -1 on failure and the location in the obj_2d_list if it succeeds
* \callgraph
*/
int add_2d_obj(char * file_name, float x_pos, float y_pos, float z_pos,
float x_rot, float y_rot, float z_rot, unsigned int dynamic);
#endif // FASTER_MAP_LOAD
/*!
* \ingroup load_2d
* \brief Show or hide one or more 2D map objects
*
* Show or hide 2D map objects.
* This routine is usually under server control to allow dynamically enabling or disabling seeing objects
*
* \param display_flag whether the objects are to be displayed or not
* \param ptr pointer to an array of object ID's to be affected
* \param len the length in bytes of the array
* \callgraph
*/
void set_2d_object (Uint8 display, const void *ptr, int len);
/*!
* \ingroup load_2d
* \brief Set the state for one or more 2D map objects
*
* Set the sate for 2D map objects.
* This routine is usually under server control to allow dynamically setting a state for an object, this is for future expansion
*
* \param display_flag whether the objects are to be displayed or not
* \param ptr pointer to an array of object ID's to be affected
* \param len the length in bytes of the array
* \callgraph
*/
void state_2d_object (Uint8 state, const void *ptr, int len);
/*!
* \ingroup display_2d
* \brief Destroys the 2d object at position i in the obj_2d_list
*
* Destroys the 2d object on position i in the obj_2d_list - frees the memory and sets the obj_2d_list[i]=NULL.
*
* \param i The position in the obj_2d_list
*
* \callgraph
*/
void destroy_2d_object(int i);
/*!
* \ingroup display_2d
* \brief Destroys all current 2d objects
*
* Destroys all 2d objects currently in the obj_2d_list
*
* \callgraph
*/
void destroy_all_2d_objects(void);
/*!
* \ingroup display_2d
* \brief Destroys all current 2d object defs
*
* Destroys all 2d object defs currently in the obj_2d_def_cache
*
* \callgraph
*/
void destroy_all_2d_object_defs(void);
#ifdef NEW_SOUND
/*!
* \ingroup load_2d
* \brief Searches for a 2d ground object at a location
*
* It searches for a 2d ground object at the specified location
*
* \param x_pos The x position to search for
* \param y_pos The y position to search for
* \retval char Returns the object's filename if found, "" otherwise.
*
* \sa add_e3d_at_id
*
* \callgraph
*/
const char* get_2dobject_at_location(float x_pos, float y_pos);
#endif // NEW_SOUND
#ifdef MAP_EDITOR2
/*!
* \ingroup display_2d
* \brief Draws all 2D objects and evaluates collision with the mouse pointer
*
* Draws all 2D objects and evaluates collision with the mouse pointer - if there's a collision it sets selected_2d_object accordingly
*/
void get_2d_object_under_mouse();
#endif
#ifdef __cplusplus
} // extern "C"
#endif
#endif