X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Flib%2Fself.qh;h=4299c19cd3674a286d3b5eea310a0754f3db0ad1;hb=5135af77c8666e85e6fa2e5664e7f53e09690b0d;hp=bc545b0d0f53721c338fe7b9d6af93b6a5e8bc6b;hpb=4d9a40898926a8da83b788f9a862f35cdd4c8905;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/lib/self.qh b/qcsrc/lib/self.qh index bc545b0d0..4299c19cd 100644 --- a/qcsrc/lib/self.qh +++ b/qcsrc/lib/self.qh @@ -1,5 +1,7 @@ #pragma once +#include "macro.qh" + // Transition from global 'self' to local 'this' // Step 1: auto oldself @@ -9,10 +11,10 @@ // Step 2: const self #if 1 - #define self (0, self) - [[alias("self")]] entity __self; + #define self (RVALUE, self) + ALIAS("self") entity __self; #define setself(s) (__self = s) - #define WITHSELF(value, block) WITH(entity, __self, value, (0, block)) + #define WITHSELF(value, block) WITH(entity, __self, value, (RVALUE, block)) #endif // Step 3: propagate SELFPARAM() @@ -32,7 +34,7 @@ // Step 5: this should work #if 1 #undef self - #define self (0, this) + #define self (RVALUE, this) #endif // Step 6: remove SELFPARAM, add parameters @@ -48,7 +50,7 @@ #define SELFWRAP(T, R, oldargs, args, forward) \ .R oldargs T; \ - .R oldargs __##T = T; \ + noref .R oldargs __##T = T; \ .R args self##T; \ R T##_self oldargs { ENGINE_EVENT(); return this.self##T forward; } @@ -56,23 +58,23 @@ noref entity _selftemp; #define SELFWRAP_SET(T, e, f) \ (_selftemp = (e), _selftemp.__##T = ((f) ? T##_self : func_null), _selftemp.self##T = (f)) #define SELFWRAP_GET(T, e) \ - (0, (e).self##T) + (RVALUE, (e).self##T) #define _SELFWRAP_SET(T, e, f) \ ((e).__##T = (f)) #define _SELFWRAP_GET(T, e) \ - (0, (e).__##T) + (RVALUE, (e).__##T) SELFWRAP(think, void, (), (entity this), (this)) #define setthink(e, f) SELFWRAP_SET(think, e, f) #define getthink(e) SELFWRAP_GET(think, e) -#ifndef MENUQC +#ifdef GAMEQC SELFWRAP(touch, void, (), (entity this, entity toucher), (this, other)) #define settouch(e, f) SELFWRAP_SET(touch, e, f) #define gettouch(e) SELFWRAP_GET(touch, e) #endif -#ifndef MENUQC +#ifdef GAMEQC SELFWRAP(blocked, void, (), (entity this, entity blocker), (this, other)) #define setblocked(e, f) SELFWRAP_SET(blocked, e, f) #define blocked stopusingthis @@ -81,7 +83,7 @@ SELFWRAP(blocked, void, (), (entity this, entity blocker), (this, other)) SELFWRAP(predraw, void, (), (entity this), (this)) #define setpredraw(e, f) SELFWRAP_SET(predraw, e, f) -#ifndef MENUQC +#ifdef GAMEQC SELFWRAP(customizeentityforclient, bool, (), (entity this, entity client), (this, other)) #define setcefc(e, f) SELFWRAP_SET(customizeentityforclient, e, f) #define getcefc(e) SELFWRAP_GET(customizeentityforclient, e) @@ -104,6 +106,6 @@ SELFWRAP(SendEntity, bool, (entity to, int sendflags), (entity this, entity to, #define movetogoal(e, ...) (__self = (e), builtin_movetogoal(__VA_ARGS__)) #define walkmove(e, ...) (__self = (e), builtin_walkmove(__VA_ARGS__)) -#ifndef MENUQC +#ifdef GAMEQC void adaptor_think2use(entity this) { if (this.use) this.use(this, NULL, NULL); } #endif