Home
last modified time | relevance | path

Searched refs:Thinker (Results 1 – 25 of 99) sorted by relevance

1234

/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/world/
H A Dthinker.cpp28 DENG2_PIMPL_NOREF(Thinker) in DENG2_PIMPL_NOREF() argument
118 Thinker::Thinker(dsize sizeInBytes, IData *data) in Thinker() function in Thinker
126 Thinker::Thinker(AllocMethod alloc, dsize sizeInBytes, Thinker::IData *data) in Thinker() function in Thinker
134 Thinker::Thinker(Thinker const &other) in Thinker() function in Thinker
156 Thinker::Thinker(thinker_s *podThinkerToTake, de::dsize sizeInBytes) in Thinker() function in Thinker
161 Thinker &Thinker::operator = (Thinker const &other) in operator =()
172 void Thinker::zap() in zap()
185 thinker_s &Thinker::base() in base()
200 Thinker::IData &Thinker::data() in data()
206 Thinker::IData const &Thinker::data() const in data()
[all …]
/dports/games/ecwolf/ecwolf-1.3.3-src/src/
H A Dthinker.cpp91 Thinker *thinker = iter; in MarkRoots()
111 Thinker *thinker = iter; in Tick()
152 Thinker *thinker; in Serialize()
186 Thinker * const prev = static_cast<Thinker*>(thinker->elPrev); in Deregister()
187 Thinker * const next = static_cast<Thinker*>(thinker->elNext); in Deregister()
205 Thinker::Thinker(ThinkerList::Priority priority) in IMPLEMENT_ABSTRACT_CLASS()
215 void Thinker::Deactivate() in Deactivate()
220 void Thinker::Destroy() in Destroy()
227 void Thinker::Init() in Init()
237 Thinker *next = static_cast<Thinker*>(elNext); in PropagateMark()
[all …]
H A Dthinker.h45 class Thinker; variable
65 typedef EmbeddedList<Thinker>::Iterator Iterator;
74 friend class Thinker;
75 void Register(Thinker *thinker, Priority type=NORMAL);
76 void Deregister(Thinker *thinker);
82 EmbeddedList<Thinker>::List thinkers[NUM_TYPES];
85 class Thinker : public DObject, public EmbeddedList<Thinker>::Node
87 DECLARE_ABSTRACT_CLASS(Thinker, DObject)
90 Thinker(ThinkerList::Priority priority);
98 bool IsThinking() const { return EmbeddedList<Thinker>::List::IsLinked(this); } in IsThinking()
H A Dactor.h80 class AActor : public Thinker,
85 DECLARE_CLASS(AActor, Thinker)
212 class AActorProxy : public Thinker
214 DECLARE_CLASS(AActorProxy, Thinker) in DECLARE_CLASS() argument
H A Dlnspec.cpp109 class EVDoor : public Thinker
111 DECLARE_CLASS(EVDoor, Thinker)
389 class EVElevator : public Thinker
391 DECLARE_CLASS(EVElevator, Thinker)
394 Thinker(ThinkerList::WORLD), activator(activator), sndseq(NULL), in EVElevator()
723 class EVPushwall : public Thinker
725 DECLARE_CLASS(EVPushwall, Thinker)
729 Thinker(ThinkerList::WORLD), spot(spot), moveTo(NULL), direction(direction), position(0), in EVPushwall()
961 class EVVictorySpin : public Thinker
963 DECLARE_CLASS(EVVictorySpin, Thinker)
[all …]
H A Dp_switch.cpp63 class DActiveButton : public Thinker
65 DECLARE_CLASS (DActiveButton, Thinker)
101 DActiveButton *button = (DActiveButton*) ((Thinker*)iter); in P_StartButton()
310 DActiveButton::DActiveButton () : Thinker(ThinkerList::WORLD) in IMPLEMENT_INTERNAL_CLASS()
324 fixed_t x, fixed_t y, bool useagain) : Thinker(ThinkerList::WORLD) in DActiveButton()
H A Dr_sprites.h63 class SpriteZoomer : public Thinker
65 DECLARE_CLASS(SpriteZoomer, Thinker)
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/include/doomsday/world/
H A Dthinker.h94 class LIBDOOMSDAY_PUBLIC Thinker
117 Thinker &_thinker;
144 Thinker(de::dsize sizeInBytes = 0, IData *data = 0);
148 Thinker(Thinker const &other);
158 Thinker(thinker_s const &podThinker, de::dsize sizeInBytes,
167 Thinker(thinker_s *podThinkerToTake, de::dsize sizeInBytes);
169 Thinker &operator = (Thinker const &other);
254 class ThinkerT : public Thinker
258 : Thinker(alloc, sizeof(Type)) {} in Thinker() function
260 : Thinker(alloc, sizeInBytes) {} in Thinker() function
[all …]
/dports/games/vavoom/vavoom-1.33/source/
H A Dnet_channel_thinker.cpp58 , Thinker(NULL) in VThinkerChannel()
80 if (Thinker && !OpenedLocally) in ~VThinkerChannel()
82 Thinker->DestroyThinker(); in ~VThinkerChannel()
83 Thinker->XLevel->RemoveThinker(Thinker); in ~VThinkerChannel()
84 Thinker->ConditionalDestroy(); in ~VThinkerChannel()
99 if (Thinker) in SetThinker()
118 Thinker = AThinker; in SetThinker()
120 if (Thinker) in SetThinker()
122 ThinkerClass = Thinker->GetClass(); in SetThinker()
194 EvalCondValues(Thinker, Thinker->GetClass(), FieldCondValues); in Update()
[all …]
H A Dnet_object_map.cpp113 VThinker* Thinker = Cast<VThinker>(Obj); in CanSerialiseObject() local
114 if (Thinker) in CanSerialiseObject()
117 return !!Connection->ThinkerChannels.FindPtr(Thinker); in CanSerialiseObject()
181 Obj = ((VThinkerChannel*)Chan)->Thinker; in SerialiseObject()
188 VThinker* Thinker = Cast<VThinker>(Obj); in SerialiseObject() local
189 vuint8 IsThinker = !!Thinker; in SerialiseObject()
191 if (Thinker) in SerialiseObject()
197 VThinkerChannel* Chan = Connection->ThinkerChannels.FindPtr(Thinker); in SerialiseObject()
H A Dp_thinker.cpp58 IMPLEMENT_CLASS(V, Thinker) in IMPLEMENT_CLASS() argument
501 P_GET_PTR(VThinker*, Thinker); in IMPLEMENT_FUNCTION()
504 RET_PTR(new VScriptThinkerIterator(Self, Class, Thinker)); in IMPLEMENT_FUNCTION()
/dports/games/vavoom/vavoom-1.33/progs/common/engine/
H A DThinker.vc10 //** $Id: Thinker.vc 4110 2009-11-13 21:54:07Z dj_jl $
26 class Thinker : GameObject
63 native readonly private Thinker Prev;
64 native readonly private Thinker Next;
79 native final spawner Thinker Spawn(class<Thinker> Type, optional TVec AOrigin,
87 native final dlight_t *AllocDlight(Thinker Owner);
91 native final iterator AllThinkers(class<Thinker> Class, out Thinker Thinker);
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/api/
H A Dapi_thinker.h46 DENG_API_TYPEDEF(Thinker) in DENG_API_TYPEDEF() argument
57 DENG_API_T(Thinker);
68 DENG_USING_API(Thinker);
/dports/cad/verilator/verilator-4.216/test_regress/t/
H A Dt_interface_arraymux.v57 module Thinker module
121 Thinker #(
136 Thinker #(
/dports/cad/kicad-library-footprints-devel/kicad-footprints-ac8de318d8ef7b3eb64c78c6c2650b7b085f3271/RF_Module.pretty/
H A DAi-Thinker-Ra-01-LoRa.kicad_mod1 (module Ai-Thinker-Ra-01-LoRa (layer F.Cu) (tedit 5A57D4D7)
2 (descr "Ai Thinker Ra-01 LoRa")
8 (fp_text value Ai-Thinker-Ra-01-LoRa (at 0 9.75) (layer F.Fab)
44 (model ${KICAD6_3DMODEL_DIR}/RF_Module.3dshapes/Ai-Thinker-Ra-01-LoRa.wrl
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/client/src/world/base/
H A Dthinkers.cpp67 Thinker sentinel;
120 Thinker::release(*th); in releaseAll()
300 Thinker::release(th); in remove()
518 Thinker::destroy(th); in Thinker_Run()
530 if (th->d) THINKER_DATA(*th, Thinker::IData).think(); in Thinker_Run()
566 DENG_DECLARE_API(Thinker) =
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/client/src/client/
H A Dclpolymover.cpp45 Thinker th(Thinker::AllocateMemoryZone); in newThinker()
H A Dclplanemover.cpp37 Thinker th(Thinker::AllocateMemoryZone); in newThinker()
/dports/deskutils/calibre/calibre-src-5.34.0/recipes/
H A Damerican_thinker.recipe13 title = u'American Thinker'
14 …description = "American Thinker is a daily internet publication devoted to the thoughtful explorat…
/dports/games/pcgen/pcgen/data/3e/rpg_objects/darwins_world/world_rules/
H A Dworldrulestemplates.lst20 …BONUS:STAT|WIS|2 BONUS:STAT|CHA|-4 CSKILL:TYPE=Knowledge FAVOREDCLASS:Thinker ABILITY:Special …
23 …AT|INT|1 BONUS:STAT|WIS|1 BONUS:STAT|CHA|-2 FAVOREDCLASS:Guardian|Thinker ABILITY:Special A…
24 …BONUS:STAT|STR|-1 BONUS:STAT|INT|-1 BONUS:STAT|CHA|2 FAVOREDCLASS:Thinker
28 …dge (Technology)|2|TYPE=Racial FAVOREDCLASS:Guardian|Thinker ABILITY:Internal|…
29 …=Racial BONUS:STAT|INT|1 BONUS:STAT|WIS|-1 FAVOREDCLASS:Scav|Thinker ABILITY:FEAT|AUTO…
30 … (Tinker)|2|TYPE=Racial BONUS:STAT|INT|2 FAVOREDCLASS:Thinker ABILITY:Internal…
H A Dworldrulesfeats.lst14 # Secret Lore: Supposed to make Exclusive Skills Cross-Class for Thinker. Set Animal Empathy and R…
33 … PRECLASS:1,Scav=0,Thinker=0 PREPCLEVEL:MAX=1 PRETEMPLATE:1,Primitive DESC:Internal …
40 …E:Special VISIBLE:NO PRECLASS:1,Thinker=9 DESC:Internal for Thi…
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/doom64/src/
H A Dd64_api.cpp216 DENG_DECLARE_API(Thinker);
240 DENG_GET_API(DE_API_THINKER, Thinker);
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/doom/include/
H A Dd_api.h62 DENG_USING_API(Thinker);
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/doom64/include/
H A Dd64_api.h62 DENG_USING_API(Thinker);
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/heretic/include/
H A Dh_api.h62 DENG_USING_API(Thinker);

1234