2 Copyright (C) 2003, 2010 - Wolfire Games
3 Copyright (C) 2010-2017 - Lugaru contributors (see AUTHORS file)
5 This file is part of Lugaru.
7 Lugaru is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 Lugaru is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Lugaru. If not, see <http://www.gnu.org/licenses/>.
24 #include "Animation/Animation.hpp"
25 #include "Animation/Skeleton.hpp"
26 #include "Environment/Terrain.hpp"
27 #include "Graphic/gamegl.hpp"
28 #include "Graphic/Models.hpp"
29 #include "Graphic/Sprite.hpp"
30 #include "Math/XYZ.hpp"
31 #include "Objects/PersonType.hpp"
32 #include "Objects/Weapons.hpp"
41 #define attacktypecutoff 4
42 #define playercontrolled 5
44 #define getweapontype 7
45 #define pathfindtype 8
47 struct InvalidPersonException : public exception {
48 const char * what () const throw () {
49 return "Invalid weapon number";
53 class Person : public enable_shared_from_this<Person>
59 static std::vector<std::shared_ptr<Person>> players;
64 // animCurrent and animTarget are used to interpolate between different animations
65 // (and for a bunch of other things).
66 // animations interpolate with one another at various speeds.
67 // animTarget seems to determine the combat state?
71 // frameCurrent and frameTarget are used to interpolate between the frames of an animation
72 // (e.g. the crouched animation has only two frames, lerped back and forth slowly).
73 // animations advance at various speeds.
84 float parriedrecently;
88 int lastattack, lastattack2, lastattack3;
90 XYZ currentoffset, targetoffset, offset;
99 //~ XYZ proportionhead;
100 //~ XYZ proportionlegs;
101 //~ XYZ proportionarms;
102 //~ XYZ proportionbody;
104 float unconscioustime;
122 bool rabbitkickenabled;
131 float damagetolerance;
133 float permanentdamage;
134 float superpermanentdamage;
136 /* Seems to be 0 = alive, 1 = unconscious, 2 = dead */
149 float bleedx, bleedy;
151 float texupdatedelay;
153 float headyaw, headpitch;
154 float targetheadyaw, targetheadpitch;
161 std::shared_ptr<Person> victim;
165 float normalsupdatedelay;
170 bool forwardstogglekeydown;
175 bool jumptogglekeydown;
177 bool crouchtogglekeydown;
179 bool drawtogglekeydown;
181 bool throwtogglekeydown;
187 float crouchkeydowntime;
188 float jumpkeydowntime;
196 float losupdatedelay;
203 float whichdirectiondelay;
206 float blooddimamount;
213 float lefthandmorphness;
214 float righthandmorphness;
216 float chestmorphness;
218 float targetlefthandmorphness;
219 float targetrighthandmorphness;
220 float targetheadmorphness;
221 float targetchestmorphness;
222 float targettailmorphness;
223 int lefthandmorphstart, lefthandmorphend;
224 int righthandmorphstart, righthandmorphend;
225 int headmorphstart, headmorphend;
226 int chestmorphstart, chestmorphend;
227 int tailmorphstart, tailmorphend;
229 float weaponmissdelay;
230 float highreversaldelay;
231 float lowreversaldelay;
244 float protectionhead;
245 float protectionhigh;
255 char clothes[10][256];
256 float clothestintr[10];
257 float clothestintg[10];
258 float clothestintb[10];
273 /* Key of weaponids which is the weapon in hand, if any. -1 otherwise.
274 * Always 0 or -1 as activeweapon is moved to position 0 when taken */
277 /* 0 or 1 to say if weapon is stuck in the front or the back */
278 int weaponstuckwhere;
282 int waypointtype[90];
288 XYZ finalfinaltarget;
290 int finalpathfindpoint;
291 int targetpathfindpoint;
292 int lastpathfindpoint;
293 int lastpathfindpoint2;
294 int lastpathfindpoint3;
295 int lastpathfindpoint4;
304 float runninghowlong;
311 float neckspurtdelay;
312 float neckspurtparticledelay;
313 float neckspurtamount;
316 bool rabbitkickragdoll;
318 Animation tempanimation;
323 Person(FILE*, int, unsigned);
325 void skeletonLoad(bool clothes = false);
327 // convenience functions
328 inline Joint& joint(int bodypart) { return skeleton.joints[skeleton.jointlabels[bodypart]]; }
329 inline XYZ& jointPos(int bodypart) { return joint(bodypart).position; }
330 inline XYZ& jointVel(int bodypart) { return joint(bodypart).velocity; }
331 inline AnimationFrame& currentFrame() { return Animation::animations.at(animCurrent).frames.at(frameCurrent); }
332 inline AnimationFrame& targetFrame() { return Animation::animations.at(animTarget).frames.at(frameTarget); }
334 void setProportions(float, float, float, float);
335 XYZ getProportion(int part) const;
339 void DoBlood(float howmuch, int which);
340 void DoBloodBig(float howmuch, int which);
341 bool DoBloodBigWhere(float howmuch, int which, XYZ where);
343 bool wasIdle() { return animation_bits[animCurrent] & ab_idle; }
344 bool isIdle() { return animation_bits[animTarget] & ab_idle; }
347 bool isSitting() { return animation_bits[animTarget] & ab_sit; }
349 bool isSleeping() { return animation_bits[animTarget] & ab_sleep; }
351 bool wasCrouch() { return animation_bits[animCurrent] & ab_crouch; }
352 bool isCrouch() { return animation_bits[animTarget] & ab_crouch; }
355 bool wasStop() { return animation_bits[animCurrent] & ab_stop; }
356 bool isStop() { return animation_bits[animTarget] & ab_stop; }
363 bool wasRun() { return animation_bits[animCurrent] & ab_run; }
364 bool isRun() { return animation_bits[animTarget] & ab_run; }
367 bool wasLanding() { return animation_bits[animCurrent] & ab_land; }
368 bool isLanding() { return animation_bits[animTarget] & ab_land; }
371 bool wasLandhard() { return animation_bits[animCurrent] & ab_landhard; }
372 bool isLandhard() { return animation_bits[animTarget] & ab_landhard; }
375 bool wasFlip() { return animation_bits[animCurrent] & ab_flip; }
376 bool isFlip() { return animation_bits[animTarget] & ab_flip; }
378 bool isWallJump() { return animation_bits[animTarget] & ab_walljump; }
380 void DoDamage(float howmuch);
383 skeleton.drawmodel.textureptr.bind();
384 glTexParameteri(GL_TEXTURE_2D, GL_GENERATE_MIPMAP, GL_TRUE);
385 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, skeleton.skinsize, skeleton.skinsize, 0, GL_RGB, GL_UNSIGNED_BYTE, &skeleton.skinText[0]);
388 int SphereCheck(XYZ *p1, float radius, XYZ *p, XYZ *move, float *rotate, Model *model);
390 void Puff(int whichlabel);
391 void FootLand(bodypart whichfoot, float opacity);
393 void setTargetAnimation(int);
395 void RagDoll(bool checkcollision);
397 void takeWeapon (int weaponId);
399 bool addClothes(const int& clothesId);
405 const int maxplayers = 10;