]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/csqcmodel/sv_model.qc
Merge branch 'martin-t/units' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / csqcmodel / sv_model.qc
1 /*
2  * Copyright (c) 2011 Rudolf Polzer
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to
6  * deal in the Software without restriction, including without limitation the
7  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8  * sell copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20  * IN THE SOFTWARE.
21  */
22 #include "sv_model.qh"
23
24 #include "common.qh"
25
26 // generic CSQC model code
27
28 bool CSQCModel_Send(entity this, entity to, int sf)
29 {
30         // some nice flags for CSQCMODEL_IF
31         noref bool isplayer = IS_CLIENT(this);
32         noref bool islocalplayer = (this == to);
33         noref bool isnolocalplayer = (isplayer && (this != to));
34
35         WriteHeader(MSG_ENTITY, ENT_CLIENT_MODEL);
36         WriteInt24_t(MSG_ENTITY, sf);
37         WriteByte(MSG_ENTITY, isplayer);
38
39 #define CSQCMODEL_IF(cond) if(cond) {
40 #define CSQCMODEL_ENDIF }
41 #define CSQCMODEL_PROPERTY(flag,t,r,w,f) \
42         if(sf & flag) \
43         { \
44                 w(MSG_ENTITY, this.csqcmodel_##f); \
45         }
46 #define CSQCMODEL_PROPERTY_SCALED(flag,t,r,w,f,s,mi,ma) CSQCMODEL_PROPERTY(flag,t,r,w,f)
47         ALLPROPERTIES
48 #undef CSQCMODEL_PROPERTY_SCALED
49 #undef CSQCMODEL_PROPERTY
50 #undef CSQCMODEL_ENDIF
51 #undef CSQCMODEL_IF
52
53         return true;
54 }
55
56 #if CSQCPLAYER_FORCE_UPDATES
57 .float csqcmodel_nextforcedupdate;
58 #endif
59 void CSQCModel_CheckUpdate(entity e)
60 {
61         // some nice flags for CSQCMODEL_IF
62         noref float isplayer = IS_CLIENT(e);
63         noref float islocalplayer = isplayer; // we set BOTH to 1 here as we need the sendflags
64         noref float isnolocalplayer = isplayer; // we set BOTH to 1 here as we need the sendflags
65
66 #if CSQCPLAYER_FORCE_UPDATES
67         if(isplayer && time > e.csqcmodel_nextforcedupdate)
68         {
69                 e.SendFlags |= CSQCMODEL_PROPERTY_ORIGIN;
70                 e.csqcmodel_nextforcedupdate = time + (1 / (CSQCPLAYER_FORCE_UPDATES)) * (0.5 + random()); // ensure about 4 origin sends per sec
71         }
72 #endif
73
74         if(e.effects & EF_RESTARTANIM_BIT)
75         {
76                 e.SendFlags |= CSQCMODEL_PROPERTY_FRAME | CSQCMODEL_PROPERTY_FRAME2; // full anim resend please
77                 e.effects &= ~EF_RESTARTANIM_BIT;
78         }
79
80         if(e.effects & EF_TELEPORT_BIT)
81         {
82                 e.SendFlags |= CSQCMODEL_PROPERTY_TELEPORTED; // no interpolation please
83                 e.effects &= ~EF_TELEPORT_BIT;
84         }
85
86 #define CSQCMODEL_IF(cond) if(cond) {
87 #define CSQCMODEL_ENDIF }
88 #define CSQCMODEL_PROPERTY(flag,t,r,w,f) \
89         { \
90                 t tmp = e.f; \
91                 if(tmp != e.csqcmodel_##f) \
92                 { \
93                         e.csqcmodel_##f = tmp; \
94                         e.SendFlags |= flag; \
95                 } \
96         }
97 #define CSQCMODEL_PROPERTY_SCALED(flag,t,r,w,f,s,mi,ma) \
98         { \
99                 t tmp = rint(bound(mi, s * e.f, ma) - mi); \
100                 if(tmp != e.csqcmodel_##f) \
101                 { \
102                         e.csqcmodel_##f = tmp; \
103                         e.SendFlags |= flag; \
104                 } \
105         }
106         ALLPROPERTIES
107 #undef CSQCMODEL_PROPERTY_SCALED
108 #undef CSQCMODEL_PROPERTY
109 #undef CSQCMODEL_ENDIF
110 #undef CSQCMODEL_IF
111 }
112
113 void CSQCModel_LinkEntity(entity e)
114 {
115         setSendEntity(e, CSQCModel_Send);
116         e.SendFlags = 0xFFFFFF;
117         CSQCModel_CheckUpdate(e);
118 }
119
120 void CSQCModel_UnlinkEntity(entity e)
121 {
122         setSendEntity(e, func_null);
123 }