Home
last modified time | relevance | path

Searched refs:movplanedef_c (Results 1 – 7 of 7) sorted by relevance

/dports/games/edge/Edge-1.35-source/ddf/
H A Dline.h252 class movplanedef_c
255 movplanedef_c();
256 movplanedef_c(movplanedef_c &rhs);
257 ~movplanedef_c();
270 void Copy(movplanedef_c &src);
274 movplanedef_c& operator=(movplanedef_c &rhs);
710 movplanedef_c f;
713 movplanedef_c c;
884 movplanedef_c f, c;
H A Dline.cc79 static movplanedef_c dummy_floor;
1345 movplanedef_c::movplanedef_c() in movplanedef_c() function in movplanedef_c
1352 movplanedef_c::movplanedef_c(movplanedef_c &rhs) in movplanedef_c() function in movplanedef_c
1360 movplanedef_c::~movplanedef_c() in ~movplanedef_c()
1367 void movplanedef_c::Copy(movplanedef_c &src) in Copy()
1393 void movplanedef_c::Default(movplanedef_c::default_e def) in Default()
1477 movplanedef_c& movplanedef_c::operator=(movplanedef_c &rhs) in operator =()
1697 f.Default(movplanedef_c::DEFAULT_FloorLine); in Default()
1698 c.Default(movplanedef_c::DEFAULT_CeilingLine); in Default()
H A Dsector.cc534 f.Default(movplanedef_c::DEFAULT_FloorSect); in Default()
535 c.Default(movplanedef_c::DEFAULT_CeilingSect); in Default()
/dports/games/edge/Edge-1.35-source/src/
H A Dp_spec.h95 const movplanedef_c *type;
226 bool EV_ManualPlane(line_t * line, mobj_t * thing, const movplanedef_c * type);
229 bool EV_DoPlane(sector_t * sec, const movplanedef_c * type, sector_t * model);
H A Dp_plane.cc578 void P_SetupPlaneDirection(plane_move_t *plane, const movplanedef_c *def, in P_SetupPlaneDirection()
611 const movplanedef_c * def, in P_SetupSectorAction()
770 static bool EV_BuildOneStair(sector_t * sec, const movplanedef_c * def) in EV_BuildOneStair()
841 static bool EV_BuildStairs(sector_t * sec, const movplanedef_c * def) in EV_BuildStairs()
866 bool EV_DoPlane(sector_t * sec, const movplanedef_c * def, sector_t * model) in EV_DoPlane()
905 bool EV_ManualPlane(line_t * line, mobj_t * thing, const movplanedef_c * def) in EV_ManualPlane()
1016 donut[0].f.Default(movplanedef_c::DEFAULT_DonutFloor); in EV_DoDonut()
1021 donut[1].f.Default(movplanedef_c::DEFAULT_DonutFloor); in EV_DoDonut()
H A Dsv_misc.cc1145 const movplanedef_c ** dest = (const movplanedef_c **)storage + index; in SR_PlaneMoveGetType()
1208 const movplanedef_c *src = ((const movplanedef_c **)storage)[index]; in SR_PlaneMovePutType()
H A Dp_spec.cc66 return EV_DoPlane(s, (const movplanedef_c*)p1, (sector_t*)p2); in DoPlane_wrapper()