omi-eikyo/src/g_object.h

53 lines
1.2 KiB
C
Raw Normal View History

2017-09-20 08:42:57 -07:00
// Copyright © 2017 Project Golan, all rights reserved.
#ifndef g_object_h
#define g_object_h
2017-09-27 18:47:18 -07:00
#include "g_objdef.h"
2017-09-20 08:42:57 -07:00
#include <Doominati.h>
2017-09-27 18:47:18 -07:00
#define G_propMemOfs(ofs, t, name) \
__prop name {__get: DGE_Object_MemberGet(t, ->id, ofs), \
__set: DGE_Object_MemberSet(t, ->id, ofs)}
2017-09-20 08:42:57 -07:00
2017-09-27 18:47:18 -07:00
#define G_propMemExt(base, ofs, t, name) \
G_propMemOfs(DGE_OME_##base + (ofs), t, name)
2017-09-20 08:42:57 -07:00
2017-09-29 04:50:36 -07:00
#define G_Entity_propMem(ofs, t, name) G_propMemExt(Entity, ofs, t, name)
2017-09-20 08:42:57 -07:00
// Types ---------------------------------------------------------------------|
2017-09-27 18:51:40 -07:00
enum G_subty
{
subtype_none,
2017-09-29 04:50:36 -07:00
subtype_missile,
subtype_test,
2017-09-27 18:51:40 -07:00
subtype_player,
subtype_max,
};
2017-09-29 04:50:36 -07:00
#define G_Entity_props() DGE_EntityProps() \
G_propMemOfs(DGE_OME(Entity.subtype), int, subtype)
2017-09-27 18:47:18 -07:00
typedef struct G_entit // Entity
2017-09-20 08:42:57 -07:00
{
2017-09-27 18:47:18 -07:00
int id;
G_Entity_props()
} G_entit;
2017-09-20 08:42:57 -07:00
2017-09-29 04:50:36 -07:00
#define G_Missile_props() DGE_MissileEntityProps() \
G_propMemOfs(DGE_OME(Entity.subtype), int, subtype)
typedef struct G_missl // Missile
{
int id;
G_Missile_props()
} G_missl;
2017-09-27 18:47:18 -07:00
// Extern Functions ----------------------------------------------------------|
2017-09-21 10:53:20 -07:00
2017-09-23 12:43:54 -07:00
void G_Entity_Create(union G_mfdat *info);
void G_Sector_Create(union G_mfdat *info);
2017-09-20 08:42:57 -07:00
#endif