]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/csqcmodel/sv_model.qc
fix some typos
[xonotic/xonotic-data.pk3dir.git] / qcsrc / 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
23 // generic CSQC model code
24
25 #define PROPERTY(flag,r,w,f) \
26         .float csqcmodel_##f;
27 #define PROPERTY_SCALED(flag,r,w,f,s,mi,ma) PROPERTY(flag,r,w,f)
28         ALLPROPERTIES
29 #undef PROPERTY_SCALED
30 #undef PROPERTY
31
32 float CSQCModel_Send(entity to, float sf)
33 {
34         WriteByte(MSG_ENTITY, ENT_CLIENT_MODEL);
35         WriteShort(MSG_ENTITY, sf);
36
37 #define PROPERTY(flag,r,w,f) \
38         if(sf & flag) \
39         { \
40                 w(MSG_ENTITY, self.csqcmodel_##f); \
41         }
42 #define PROPERTY_SCALED(flag,r,w,f,s,mi,ma) PROPERTY(flag,r,w,f)
43         ALLPROPERTIES
44 #undef PROPERTY_SCALED
45 #undef PROPERTY
46
47         return TRUE;
48 }
49
50 void CSQCModel_CheckUpdate()
51 {
52         float tmp;
53 #define PROPERTY(flag,r,w,f) \
54         tmp = self.f; \
55         if(tmp != self.csqcmodel_##f) \
56         { \
57                 self.csqcmodel_##f = tmp; \
58                 self.SendFlags |= flag; \
59         }
60 #define PROPERTY_SCALED(flag,r,w,f,s,mi,ma) \
61         tmp = bound(mi, s * self.f, ma); \
62         if(tmp != self.csqcmodel_##f) \
63         { \
64                 self.csqcmodel_##f = tmp; \
65                 self.SendFlags |= flag; \
66         }
67         ALLPROPERTIES
68 #undef PROPERTY_SCALED
69 #undef PROPERTY
70 }
71
72 void CSQCModel_LinkEntity()
73 {
74         self.SendEntity = CSQCModel_Send;
75         self.SendFlags = 0xFFFFFF;
76 }
77
78 void CSQCModel_UnlinkEntity()
79 {
80         self.SendEntity = func_null;
81 }