]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/self.qh
Step 6: complete
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / self.qh
index fe26b08a415cc32a381b8040fc5448d003017e31..4af4b8ab024388ad1db5f0b067b7fee533e0a4e8 100644 (file)
@@ -21,6 +21,7 @@
     #define self (this, self)
     #undef SELFPARAM
     #define SELFPARAM() const entity this = __self
+    #define ENGINE_EVENT() const entity this = __self
 #endif
 
 // Step 4: kill unstructured setself
@@ -35,7 +36,7 @@
 #endif
 
 // Step 6: remove SELFPARAM, add parameters
-#if 0
+#if 1
     #undef SELFPARAM
 #endif
 
     #define WITHSELF(value, block) block
 #endif
 
-#define SELFWRAP(T, R, args, forward) \
-    .R() T; \
-    .R() __##T = T; \
+#define SELFWRAP(T, R, oldargs, args, forward) \
+    .R oldargs T; \
+    .R oldargs __##T = T; \
     .R args self##T; \
-    R T##_self() { SELFPARAM(); return this.self##T forward; }
+    R T##_self oldargs { ENGINE_EVENT(); return this.self##T forward; }
 
 noref entity _selftemp;
 #define SELFWRAP_SET(T, e, f) \
@@ -61,21 +62,43 @@ noref entity _selftemp;
 #define _SELFWRAP_GET(T, e) \
     (0, (e).__##T)
 
-SELFWRAP(think, void, (entity this), (this))
+SELFWRAP(think, void, (), (entity this), (this))
 #define setthink(e, f) SELFWRAP_SET(think, e, f)
 #define getthink(e) SELFWRAP_GET(think, e)
 
-SELFWRAP(touch, void, (entity this), (this))
+SELFWRAP(touch, void, (), (entity this), (this))
 #define settouch(e, f) SELFWRAP_SET(touch, e, f)
 #define gettouch(e) SELFWRAP_GET(touch, e)
 
-SELFWRAP(predraw, void, (entity this), (this))
+SELFWRAP(blocked, void, (), (entity this), (this))
+#define setblocked(e, f) SELFWRAP_SET(blocked, e, f)
+#define blocked stopusingthis
+
+SELFWRAP(predraw, void, (), (entity this), (this))
 #define setpredraw(e, f) SELFWRAP_SET(predraw, e, f)
 
-SELFWRAP(customizeentityforclient, bool, (entity this), (this))
+SELFWRAP(customizeentityforclient, bool, (), (entity this), (this))
 #define setcefc(e, f) SELFWRAP_SET(customizeentityforclient, e, f)
 #define getcefc(e) SELFWRAP_GET(customizeentityforclient, e)
 
+SELFWRAP(camera_transform, vector, (vector org, vector ang), (entity this, vector org, vector ang), (this, org, ang))
+#define setcamera_transform(e, f) SELFWRAP_SET(camera_transform, e, f)
+
+SELFWRAP(SendEntity, bool, (entity to, int sendflags), (entity this, entity to, int sendflags), (this, to, sendflags))
+#define setSendEntity(e, f) SELFWRAP_SET(SendEntity, e, f)
+
+#ifdef SVQC
+void make_safe_for_remove(entity this);
+#endif
+
+void objerror(entity this, string s)
+{
+#ifdef SVQC
+    make_safe_for_remove(this);
+#endif
+    WITHSELF(this, builtin_objerror(s));
+}
+
 #ifndef MENUQC
 void adaptor_think2touch(entity this) { WITH(entity, other, NULL, gettouch(this)(this)); }
 void adaptor_think2use(entity this) { if (this.use) this.use(this, NULL, NULL); }