]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/compat/quake3.qc
Merge branch 'master' into Mario/invasion_types
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / compat / quake3.qc
1 #include "quake3.qh"
2
3 #include <server/defs.qh>
4 #include <server/miscfunctions.qh>
5 #include <common/weapons/_all.qh>
6
7 spawnfunc(weapon_crylink);
8 spawnfunc(weapon_electro);
9 spawnfunc(weapon_hagar);
10 spawnfunc(weapon_hook);
11 spawnfunc(weapon_machinegun);
12 spawnfunc(weapon_vortex);
13 spawnfunc(weapon_minelayer);
14
15 spawnfunc(target_items);
16
17 spawnfunc(item_bullets);
18 spawnfunc(item_cells);
19 spawnfunc(item_rockets);
20 spawnfunc(item_shells);
21
22 spawnfunc(item_strength);
23
24 spawnfunc(item_armor_big);
25 spawnfunc(item_armor_mega);
26 spawnfunc(item_armor_small);
27
28 spawnfunc(item_health_medium);
29 spawnfunc(item_health_mega);
30
31 //***********************
32 //QUAKE 3 ENTITIES - So people can play quake3 maps with the xonotic weapons
33 //***********************
34
35 // NOTE: for best experience, you need to swap MGs with SGs in the map or it won't have a MG
36
37 // SG -> SG
38 spawnfunc(ammo_shells)         { spawnfunc_item_shells(this);         }
39
40 // MG -> MG
41 spawnfunc(ammo_bullets)        { spawnfunc_item_bullets(this);        }
42
43 // GL -> Mortar
44 spawnfunc(ammo_grenades)       { spawnfunc_item_rockets(this);        }
45
46 // Mines -> Rockets
47 spawnfunc(weapon_prox_launcher) { spawnfunc_weapon_minelayer(this);   }
48 spawnfunc(ammo_mines)           { spawnfunc_item_rockets(this);       }
49
50 // LG -> Lightning
51 spawnfunc(weapon_lightning)    { spawnfunc_weapon_electro(this);      }
52 spawnfunc(ammo_lightning)      { spawnfunc_item_cells(this);          }
53
54 // Plasma -> Hagar
55 spawnfunc(weapon_plasmagun)    { spawnfunc_weapon_hagar(this);        }
56 spawnfunc(ammo_cells)          { spawnfunc_item_rockets(this);        }
57
58 // Rail -> Vortex
59 spawnfunc(weapon_railgun)      { spawnfunc_weapon_vortex(this);       }
60 spawnfunc(ammo_slugs)          { spawnfunc_item_cells(this);          }
61
62 // BFG -> Crylink
63 spawnfunc(weapon_bfg)          { spawnfunc_weapon_crylink(this);      }
64 spawnfunc(ammo_bfg)            { spawnfunc_item_cells(this);          }
65
66 // grappling hook -> hook
67 spawnfunc(weapon_grapplinghook) { spawnfunc_weapon_hook(this);        }
68
69 // RL -> RL
70 spawnfunc(ammo_rockets)        { spawnfunc_item_rockets(this);        }
71
72 // Armor
73 spawnfunc(item_armor_body)     { spawnfunc_item_armor_mega(this);     }
74 spawnfunc(item_armor_combat)   { spawnfunc_item_armor_big(this);      }
75 spawnfunc(item_armor_shard)    { spawnfunc_item_armor_small(this);    }
76 spawnfunc(item_enviro)         { spawnfunc_item_invincible(this);     }
77
78 // medkit -> armor (we have no holdables)
79 spawnfunc(holdable_medkit)         { spawnfunc_item_armor_mega(this);     }
80
81 // doubler -> strength
82 spawnfunc(item_doubler)        { spawnfunc_item_strength(this); }
83
84 .float wait;
85 .float delay;
86
87 // weapon remove ent from df
88 void target_init_verify(entity this)
89 {
90         entity trigger, targ;
91         for(trigger = NULL; (trigger = find(trigger, classname, "trigger_multiple")); )
92                 for(targ = NULL; (targ = find(targ, targetname, trigger.target)); )
93                         if (targ.classname == "target_init" || targ.classname == "target_give" || targ.classname == "target_items")
94                         {
95                                 trigger.wait = 0;
96                                 trigger.delay = 0;
97                                 targ.wait = 0;
98                                 targ.delay = 0;
99
100                                 //setsize(targ, trigger.mins, trigger.maxs);
101                                 //setorigin(targ, trigger.origin);
102                                 //remove(trigger);
103                         }
104 }
105
106 spawnfunc(target_init)
107 {
108         this.spawnflags = 0; // remove all weapons except the ones listed below
109         this.netname = "shotgun"; // keep these weapons through the remove trigger
110         spawnfunc_target_items(this);
111         InitializeEntity(this, target_init_verify, INITPRIO_FINDTARGET);
112 }
113
114 // weapon give ent from defrag
115 void target_give_init(entity this)
116 {
117         IL_EACH(g_items, it.targetname == this.target,
118         {
119                 if (it.classname == "weapon_rocketlauncher" || it.classname == "weapon_devastator") {
120                         this.ammo_rockets += it.count * WEP_CVAR(devastator, ammo);
121                         this.netname = cons(this.netname, "devastator");
122                 }
123                 else if (it.classname == "weapon_lightning") {
124                         this.ammo_cells += it.count * WEP_CVAR_PRI(electro, ammo); // WEAPONTODO
125                         this.netname = cons(this.netname, "electro");
126                 }
127                 else if (it.classname == "weapon_plasmagun") {
128                         this.ammo_rockets += it.count * WEP_CVAR_PRI(hagar, ammo); // WEAPONTODO
129                         this.netname = cons(this.netname, "hagar");
130                 }
131                 else if (it.classname == "weapon_bfg") {
132                         this.ammo_cells += it.count * WEP_CVAR_PRI(crylink, ammo);
133                         this.netname = cons(this.netname, "crylink");
134                 }
135                 else if (it.classname == "weapon_grenadelauncher" || it.classname == "weapon_mortar") {
136                         this.ammo_rockets += it.count * WEP_CVAR_PRI(mortar, ammo); // WEAPONTODO
137                         this.netname = cons(this.netname, "mortar");
138                 }
139                 else if (it.classname == "item_armor_body")
140                         this.armorvalue = 100;
141                 else if (it.classname == "item_health_mega")
142                         this.health = 200;
143                 //remove(it); // removing ents in init functions causes havoc, workaround:
144         setthink(it, SUB_Remove);
145         it.nextthink = time;
146         });
147         this.spawnflags = 2;
148         this.spawnfunc_checked = true;
149         spawnfunc_target_items(this);
150         InitializeEntity(this, target_init_verify, INITPRIO_FINDTARGET);
151 }
152
153 spawnfunc(target_give)
154 {
155         InitializeEntity(this, target_give_init, INITPRIO_FINDTARGET);
156 }
157
158 //spawnfunc(item_flight)       /* handled by buffs mutator */
159 //spawnfunc(item_haste)        /* handled by buffs mutator */
160 //spawnfunc(item_health)       /* handled in t_quake.qc */
161 //spawnfunc(item_health_large) /* handled in t_items.qc */
162 //spawnfunc(item_health_small) /* handled in t_items.qc */
163 //spawnfunc(item_health_mega)  /* handled in t_items.qc */
164 //spawnfunc(item_invis)        /* handled by buffs mutator */
165 //spawnfunc(item_regen)        /* handled by buffs mutator */
166
167 // CTF spawnfuncs handled in mutators/gamemode_ctf.qc now
168
169 .float notteam;
170 .float notsingle;
171 .float notfree;
172 .float notq3a;
173 .float notta;
174 .string gametype;
175 bool DoesQ3ARemoveThisEntity(entity this)
176 {
177         // Q3 style filters (DO NOT USE, THIS IS COMPAT ONLY)
178
179         if(this.notq3a)
180                 if(!teamplay || g_tdm || g_ctf)
181                         return true;
182
183         if(this.notta)
184                 if (!(!teamplay || g_tdm || g_ctf))
185                         return true;
186
187         if(this.notsingle)
188                 if(maxclients == 1)
189                         return true;
190
191         if(this.notteam)
192                 if(teamplay)
193                         return true;
194
195         if(this.notfree)
196                 if(!teamplay)
197                         return true;
198
199         if(this.gametype)
200         {
201                 string gametypename;
202                 // static char *gametypeNames[] = {"ffa", "tournament", "single", "team", "ctf", "oneflag", "obelisk", "harvester", "teamtournament"}
203                 gametypename = "ffa";
204                 if(teamplay)
205                         gametypename = "team";
206                 if(g_ctf)
207                         gametypename = "ctf";
208                 if(maxclients == 1)
209                         gametypename = "single";
210                 // we do not have the other types (oneflag, obelisk, harvester, teamtournament)
211                 if(strstrofs(this.gametype, gametypename, 0) < 0)
212                         return true;
213         }
214
215         return false;
216 }