1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
|
/*
===========================================================================
Copyright (C) 2023 the OpenMoHAA team
This file is part of OpenMoHAA source code.
OpenMoHAA source code is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.
OpenMoHAA source code is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OpenMoHAA source code; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/
// DESCRIPTION:
// client side entity commands
/*
The cg_command system is used for a variety of different functions, but mostly it is
used for spawning client side temp models. Either through the use of emitters or
commands that are tied to various frames of animation.
The ctempmodel_t class is the data structure for all of the static tempmodels.
These are updated every frame and refEntity and refSprite data is created and added
to the renderer for drawing.
The spawnthing_t is the intermediate data holder. When the TIKI file is processed
the spawnthing_t is cleared out and values are assigned based on the commands issued.
cg_common_data is a list of common data elements that are the same in the ctempmodel_t and
the spawhthing_t
After the m_spawnthing is filled in, 1 or more ctempmodel_t structures are spawned.
The ClientCommandManager is the listener that process all of the commands in the
TIKI file, similar to ScriptMaster in the server game dll.
*/
#pragma once
#include "cg_local.h"
#include "listener.h"
#include "script.h"
#include "vector.h"
#include "../qcommon/qcommon.h"
#define EMITTER_DEFAULT_LIFE 1000
#define MAX_EMITTERS 32
#define MAX_SWIPES 32
#define T_RANDSCALE (1 << 0)
#define T_SCALEANIM (1 << 1)
#define T_SPHERE (1 << 2)
#define T_INWARDSPHERE (1 << 3)
#define T_CIRCLE (1 << 4)
#define T_FADE (1 << 5)
#define T_DIETOUCH (1 << 6)
#define T_ANGLES (1 << 7)
#define T_WAVE (1 << 8)
#define T_SWARM (1 << 9)
#define T_ALIGN (1 << 10)
#define T_COLLISION (1 << 11)
#define T_FLICKERALPHA (1 << 12)
#define T_DLIGHT (1 << 13)
#define T_FADEIN (1 << 14)
#define T_GLOBALFADEIN (1 << 15)
#define T_GLOBALFADEOUT (1 << 16)
#define T_PARENTLINK (1 << 17)
#define T_RANDOMROLL (1 << 18)
#define T_HARDLINK (1 << 19)
#define T_ANIMATEONCE (1 << 20)
#define T_BEAMTHING (1 << 21)
#define T_RANDVELAXIS (1 << 22)
#define T_BOUNCESOUND (1 << 23)
#define T_BOUNCESOUNDONCE (1 << 24)
#define T_TWINKLE (1 << 25)
#define T_TWINKLE_OFF (1 << 26)
#define T_ALIGNONCE (1 << 27)
#define T_SCALEUPDOWN (1 << 28)
#define T_AUTOCALCLIFE (1 << 29)
#define T_ASSIGNED_NUMBER (1 << 30)
#define T_DETAIL (1 << 31)
#define T2_MOVE (1 << 0)
#define T2_AMOVE (1 << 1)
#define T2_ACCEL (1 << 2)
#define T2_TRAIL (1 << 3)
#define T2_PHYSICS_EVERYFRAME (1 << 4)
#define T2_TEMPORARY_DECAL (1 << 5)
#define T2_BOUNCE_DECAL (1 << 6)
#define T2_PARALLEL (1 << 7)
#define T2_VOLUMETRIC (1 << 8)
#define T2_COLOR_AVEL (1 << 9)
#define T2_WIND_AFFECT (1 << 10)
#define T2_SPRITEGRIDLIGHTING (1 << 11)
#define T2_WATERONLY (1 << 12)
#define T2_ALIGNSTRETCH (1 << 13)
#define T2_ALWAYSDRAW (1 << 14)
#define T2_CLAMP_VEL (1 << 15)
#define T2_CLAMP_VEL_AXIS (1 << 16)
#define T2_CONE (1 << 17)
#define T2_RADIALVELOCITY (1 << 18)
#define T2_FRICTION (1 << 19)
#define T2_VARYCOLOR (1 << 20)
#define T2_SPIN (1 << 21)
#define T2_RELATIVEANGLES (1 << 22)
#define T2_NOTAGAXIS (1 << 23)
class spawnthing_t;
class specialeffect_t;
class MemArchiver;
typedef enum {
NOT_RANDOM,
RANDOM,
CRANDOM
} randtype_t;
class cg_common_data : public Class
{
public:
cg_common_data();
int life;
int createTime;
Vector origin;
Vector oldorigin;
Vector accel;
Vector angles;
Vector velocity;
Vector avelocity;
Vector parentOrigin;
Vector parentMins;
Vector parentMaxs;
Vector minVel;
Vector maxVel;
float color[4];
float alpha;
float scaleRate;
float scalemin;
float scalemax;
float bouncefactor;
int bouncecount;
int maxbouncecount;
str bouncesound;
int bouncesound_delay;
int flags;
int flags2;
dtiki_t *tiki;
int swarmfreq;
float swarmmaxspeed;
float swarmdelta;
float lightIntensity;
int lightType;
int fadeintime;
int fadedelay;
int parent;
int collisionmask;
int min_twinkletimeoff;
int max_twinkletimeoff;
int min_twinkletimeon;
int max_twinkletimeon;
int lightstyle;
int physicsRate;
float scale;
float scale2;
str swipe_shader;
str swipe_tag_start;
str swipe_tag_end;
str shadername;
float swipe_life;
float friction;
float decal_orientation;
float decal_radius;
float spin_rotation;
public:
void ArchiveToMemory(MemArchiver& archiver);
};
inline cg_common_data::cg_common_data()
{
int i;
bouncesound_delay = 0;
life = 0;
createTime = 0;
alpha = 0;
fadedelay = 0;
lightIntensity = 0;
lightType = (dlighttype_t)0;
bouncefactor = 0;
bouncecount = 0;
maxbouncecount = 0;
scaleRate = 0;
scale = 1;
scalemin = 0;
scalemax = 0;
swarmfreq = 0;
swarmmaxspeed = 0;
swarmdelta = 0;
flags = 0;
flags2 = 0;
fadeintime = 0;
parent = 0;
tiki = nullptr;
collisionmask = 0;
min_twinkletimeoff = 0;
max_twinkletimeoff = 0;
min_twinkletimeon = 0;
max_twinkletimeoff = 0;
lightstyle = -1;
physicsRate = 10;
for (i = 0; i < 4; i++) {
color[i] = 0;
}
}
class ctempmodel_t : public Class
{
public:
ctempmodel_t();
class ctempmodel_t *next;
class ctempmodel_t *prev;
cg_common_data cgd;
str modelname;
refEntity_t lastEnt;
refEntity_t ent;
int number;
int lastAnimTime;
int lastPhysicsTime;
int killTime;
int next_bouncesound_time;
int seed;
int twinkleTime;
int aliveTime;
qboolean addedOnce;
qboolean lastEntValid;
spawnthing_t *m_spawnthing;
void (*touchfcn)(ctempmodel_t *ct, trace_t *trace);
public:
void ArchiveToMemory(MemArchiver& archiver);
};
inline ctempmodel_t::ctempmodel_t()
{
number = 0;
lastPhysicsTime = 0;
lastAnimTime = 0;
killTime = 0;
next_bouncesound_time = 0;
seed = 0;
twinkleTime = 0;
aliveTime = 0;
addedOnce = qfalse;
lastEntValid = qfalse;
}
enum class vsstypes_t : unsigned char {
VST_DEFAULT,
VST_GUN,
VST_IMPACT,
VST_DIRT,
VST_HEAVY,
VST_STEAM,
VST_MIST,
VST_SGREN,
VST_GRENADE,
VST_FIRE,
VST_GREASEFIRE,
VST_DEBRIS,
NUM_VSS_TYPES
};
class cvssource_t
{
public:
cvssource_t *next;
cvssource_t *prev;
cvssource_t *stnext;
int stindex;
Vector lastOrigin;
float lastRadius;
float lastDensity;
float lastColor[3];
float lastLighting[3];
Vector newOrigin;
float newRadius;
float newDensity;
float newColor[3];
float newLighting[3];
float ooRadius;
Vector velocity;
float startAlpha;
int roll;
Vector repulsion;
int lifeTime;
int collisionmask;
int parent;
int flags;
int flags2;
int smokeType;
float typeInfo;
float fadeMult;
float scaleMult;
int lastPhysicsTime;
int lastLightingTime;
qboolean lastValid;
public:
cvssource_t();
public:
void ArchiveToMemory(MemArchiver& archiver);
};
inline cvssource_t::cvssource_t()
: next(NULL)
, prev(NULL)
, stnext(NULL)
, stindex(0)
, lastRadius(0)
, lastDensity(0)
, lastColor {0}
, lastLighting {0}
, newRadius(0)
, newDensity(0)
, newColor {0}
, newLighting {0}
, ooRadius(0)
, startAlpha(0)
, roll(0)
, lifeTime(0)
, collisionmask(0)
, parent(0)
, flags(0)
, flags2(0)
, smokeType(0)
, typeInfo(0)
, fadeMult(0)
, scaleMult(0)
, lastPhysicsTime(0)
, lastLightingTime(0)
, lastValid(qfalse)
{}
class cvssourcestate_t
{
public:
Vector origin;
float color[3];
float radius;
float density;
};
#define LIFE_SWIPE 1
#define MAX_SWIPE_POINTS 64
struct swipepoint_t {
vec3_t points[2];
float time;
};
class swipething_t : public Class
{
public:
qboolean enabled;
str tagname_start;
str tagname_end;
int entitynum;
float startcolor[4];
float endcolor[4];
swipepoint_t swipepoints[MAX_SWIPE_POINTS];
swipepoint_t cntPoint;
int num_live_swipes;
int first_swipe;
float life;
qhandle_t shader;
void Init();
};
inline void swipething_t::Init()
{
int i;
enabled = qfalse;
tagname_start = "";
tagname_end = "";
entitynum = -1;
for (i = 0; i < 4; i++) {
startcolor[i] = 1.f;
endcolor[i] = 0.f;
}
for (i = 0; i < MAX_SWIPE_POINTS; i++) {
VectorSet(swipepoints[i].points[0], 0.f, 0.f, 0.f);
VectorSet(swipepoints[i].points[1], 0.f, 0.f, 0.f);
swipepoints[i].time = 0.f;
}
num_live_swipes = 0;
first_swipe = 0;
}
// Enttracker is used to keep track of client side tempmodels. They are
// assigned a number from a pool of 256.
class enttracker_t : public Class
{
public:
enttracker_t();
int AssignNumber(void);
protected:
qboolean usedNumbers[256];
virtual void RemoveEntity(int entnum);
public:
void ArchiveToMemory(MemArchiver& archiver);
};
inline enttracker_t::enttracker_t()
{
memset(usedNumbers, 0, sizeof(usedNumbers));
}
inline void enttracker_t::RemoveEntity(int entnum)
{
// If the entnum is a magic number, then clear out the usedNumber field, so
// that it may be reused for this emitter.
if (entnum >= MAGIC_UNUSED_NUMBER) {
entnum -= MAGIC_UNUSED_NUMBER;
assert(entnum >= 0);
assert(entnum < 256);
usedNumbers[entnum] = qfalse;
}
}
inline int enttracker_t::AssignNumber(void)
{
int i;
// These numbers are used for client side tempmodels that are emitters
// themselves. Since they don't have real entity_numbers, they must be
// assigned a MAGIC number so we can keep track of the last time that the
// model emitted something.
// Search for a number that is not used
for (i = 0; i < 256; i++) {
if (!usedNumbers[i]) {
usedNumbers[i] = qtrue;
return MAGIC_UNUSED_NUMBER + i;
}
}
return -1;
}
class emittertime_t : public Class
{
public:
int entity_number;
int last_emit_time;
Vector oldorigin;
qboolean active;
qboolean lerp_emitter;
public:
void ArchiveToMemory(MemArchiver& archiver);
};
// emitterthing_t is used to keep track of the last time and emitter was updated
// for a particular entity number. It inherits from the enttracker_t so it can
// manage client side tempmodels
class emitterthing_t : public enttracker_t
{
protected:
Container<emittertime_t> m_emittertimes; // A list of entity numbers and the
// last time they emitted
public:
emittertime_t *GetEmitTime(int entnum);
virtual void RemoveEntity(int entnum);
qboolean startoff;
public:
void ArchiveToMemory(MemArchiver& archiver);
};
inline void emitterthing_t::RemoveEntity(int entnum)
{
int num, count;
emittertime_t *et;
if (entnum == -1) {
return;
}
count = m_emittertimes.NumObjects();
for (num = count; num >= 1; num--) {
et = &m_emittertimes.ObjectAt(num);
if (et->entity_number == entnum) {
m_emittertimes.RemoveObjectAt(num);
}
}
enttracker_t::RemoveEntity(entnum);
}
inline emittertime_t *emitterthing_t::GetEmitTime(int entnum)
{
int num, count;
emittertime_t *et;
count = m_emittertimes.NumObjects();
for (num = 1; num <= count; num++) {
et = &m_emittertimes.ObjectAt(num);
if (et->entity_number == entnum) {
return et;
}
}
// Add a new entry if we didn't find it already
et = &m_emittertimes.ObjectAt(m_emittertimes.AddObject({}));
et->entity_number = entnum;
et->last_emit_time = cg.time;
et->lerp_emitter = qfalse;
if (this->startoff) {
et->active = qfalse;
} else {
et->active = qtrue;
}
return et;
}
class commandtime_t : public Class
{
public:
int entity_number;
int command_number;
int last_command_time;
public:
void ArchiveToMemory(MemArchiver& archiver);
};
// This class is used for keeping track of the last time an entity executed a
// particular command. A command number must be assigned externally by the user
class commandthing_t : public enttracker_t
{
Container<commandtime_t> m_commandtimes; // A list of entity numbers and the last time they
// executed a command
public:
commandtime_t *GetLastCommandTime(int entnum, int commandnum);
virtual void RemoveEntity(int entnum);
void ArchiveToMemory(MemArchiver& archiver);
};
inline void commandthing_t::RemoveEntity(int entnum)
{
int num, count;
commandtime_t *ct;
count = m_commandtimes.NumObjects();
for (num = count; num >= 1; num--) {
ct = &m_commandtimes.ObjectAt(num);
if (ct->entity_number == entnum) {
m_commandtimes.RemoveObjectAt(num);
}
}
enttracker_t::RemoveEntity(entnum);
}
inline commandtime_t *commandthing_t::GetLastCommandTime(int entnum, int commandnum)
{
int num, count;
// Search for this entity number
count = m_commandtimes.NumObjects();
for (num = 1; num <= count; num++) {
commandtime_t *ct = &m_commandtimes.ObjectAt(num);
if ((ct->entity_number == entnum) && (ct->command_number == commandnum)) {
return ct;
}
}
// Add a new entry if we didn't find it
commandtime_t ct;
ct.entity_number = entnum;
ct.command_number = commandnum;
ct.last_command_time = 0;
m_commandtimes.AddObject(ct);
return &m_commandtimes.ObjectAt(m_commandtimes.NumObjects());
}
class spawnthing_t : public emitterthing_t
{
public:
Container<str> m_modellist; // A list of models that should be spawned from the emitter
Container<str> m_taglist; // A list of tags to create beams
cg_common_data cgd;
int entnum;
Vector origin_offset_base;
Vector origin_offset_amplitude;
Vector axis_offset_base;
Vector axis_offset_amplitude;
Vector randvel_base;
Vector randvel_amplitude;
Vector avelocity_base;
Vector avelocity_amplitude;
Vector angles_amplitude;
vec3_t axis[3];
vec3_t tag_axis[3];
float life_random;
float forwardVelocity;
float sphereRadius;
float coneHeight;
float spawnRate;
int lastTime;
int count;
int tagnum;
str emittername;
str animName;
float dcolor[3];
qboolean dlight;
int numtempmodels;
float linked_origin[3];
float linked_axis[3][3];
float fMinRangeSquared;
float fMaxRangeSquared;
// beam stuff also impact trace stuff
str startTag;
str endTag;
float length;
float min_offset;
float max_offset;
float overlap;
float numSubdivisions;
float delay;
float toggledelay;
int beamflags;
int numspherebeams;
float endalpha;
float spreadx;
float spready;
qboolean use_last_trace_end;
void (*touchfcn)(ctempmodel_t *ct, trace_t *trace);
str GetModel(void);
void SetModel(str model);
public:
void ArchiveToMemory(MemArchiver& archiver);
};
inline void spawnthing_t::SetModel(str model)
{
m_modellist.ClearObjectList();
m_modellist.AddObject(model);
}
inline str spawnthing_t::GetModel(void)
{
int num, index;
num = m_modellist.NumObjects();
if (!num) {
return "";
}
index = (num * random()) + 1;
if (index > num) {
index = num;
}
return m_modellist.ObjectAt(index);
}
// Keeps track of beams that are created by entities that need their positions
// updated every frame
class beamthing_t : public emitterthing_t
{
public:
str beamname;
str shadername;
str startTag;
str endTag;
int numSubdivisions;
dtiki_t *tiki;
float alpha;
float scale;
int flags;
float length;
int life;
float min_offset;
float max_offset;
float overlap;
int delay;
byte modulate[4];
};
#define MAX_TEMPMODELS 2048
#define MAX_BEAMS 4096
class ClientGameCommandManager : public Listener
{
private:
spawnthing_t m_localemitter; // local emitter used by animation commands
ctempmodel_t m_active_tempmodels;
ctempmodel_t *m_free_tempmodels;
ctempmodel_t m_tempmodels[MAX_TEMPMODELS];
cvssource_t m_active_vsssources;
cvssource_t *m_free_vsssources;
cvssource_t *m_vsssources;
int m_iAllocatedvsssources;
spawnthing_t *m_spawnthing;
Container<spawnthing_t *> m_emitters; // Global emitters set up by client commands
int m_seed;
commandthing_t m_command_time_manager; // Keeps track of entity numbers and the last
// time they executed particular commands
specialeffect_t *m_pCurrentSfx;
int m_iLastVSSRepulsionTime;
float m_fEventWait;
void (ClientGameCommandManager::*endblockfcn)(void);
cvssource_t *AllocateVSSSource();
void FreeVSSSource(cvssource_t *p);
void SpawnVSSSource(int count, int timealive);
void EventViewKick(Event *ev);
void Print(Event *ev);
void PrintDeathMsg(Event *ev); // Added in 2.0
void StartBlock(Event *ev);
void EndBlock(Event *ev);
void UpdateSpawnThing(spawnthing_t *ep);
void EmitterStartOff(Event *ev);
void SetAlpha(Event *ev);
void SetDieTouch(Event *ev);
void SetBounceFactor(Event *ev);
void SetBounceSound(Event *ev);
void SetBounceSoundOnce(Event *ev);
void SetModel(Event *ev);
void SetLife(Event *ev);
void SetColor(Event *ev);
void SetColorRange(Event *ev);
void SetLightstyle(Event *ev);
void SetRadialVelocity(Event *ev);
void SetVelocity(Event *ev);
void SetAngularVelocity(Event *ev);
void SetCount(Event *ev);
void SetScale(Event *ev);
void SetScaleUpDown(Event *ev);
void SetScaleMin(Event *ev);
void SetScaleMax(Event *ev);
void SetScaleRate(Event *ev);
void SetRandomVelocity(Event *ev);
void SetRandomVelocityAlongAxis(Event *ev);
void SetNoTagAxis(Event *ev); // Added in 2.0
void SetAccel(Event *ev);
void SetFriction(Event *ev);
void SetSpin(Event *ev);
void SetVaryColor(Event *ev);
void SetFade(Event *ev);
void SetFadeDelay(Event *ev);
void SetSpawnRange(Event *ev);
void SetSpawnRate(Event *ev);
void SetOriginOffset(Event *ev);
void SetOffsetAlongAxis(Event *ev);
void SetCone(Event *ev);
void SetCircle(Event *ev);
void SetSphere(Event *ev);
void SetInwardSphere(Event *ev);
void SetRandomRoll(Event *ev);
void SetVolumetric(Event *ev);
void SetSwarm(Event *ev);
void SetAlign(Event *ev);
void SetAlignOnce(Event *ev);
void SetCollision(Event *ev);
void SetFlickerAlpha(Event *ev);
void SetFadeIn(Event *ev);
void SetEntityColor(Event *ev);
void SetGlobalFade(Event *ev);
void SetRadius(Event *ev);
void SetParentLink(Event *ev);
void SetHardLink(Event *ev);
void SetAngles(Event *ev);
void SetRelativeAngles(Event *ev);
void ParentAngles(Event *ev);
void EmitterAngles(Event *ev);
void SetTwinkle(Event *ev);
void SetTrail(Event *ev);
void SetPhysicsRate(Event *ev);
void SetBounceDecal(Event *ev);
void UpdateSwarm(ctempmodel_t *p);
void BeginOriginSpawn(Event *ev);
void EndOriginSpawn(void);
void BeginOriginBeamSpawn(Event *ev);
void EndOriginBeamSpawn(void);
void BeginOriginBeamEmitter(Event *ev);
void EndOriginBeamEmitter(void);
void BeginTagSpawn(Event *ev);
void BeginTagSpawnLinked(Event *ev);
void EndTagSpawn(void);
void BeginTagBeamSpawn(Event *ev);
void EndTagBeamSpawn(void);
void BeginTagEmitter(Event *ev);
void EndTagEmitter(void);
void BeginOriginEmitter(Event *ev);
void EndOriginEmitter(void);
void BeginTagBeamEmitter(Event *ev);
void EndTagBeamEmitter(void);
void EmitterOn(Event *ev);
void EmitterOff(Event *ev);
void RainTouch(Event *ev);
void Sound(Event *ev);
void SetCurrentTiki(Event *ev);
void StopSound(Event *ev);
void StopAliasChannel(Event *ev);
void LoopSound(Event *ev);
void StopLoopSound(Event *ev); // Added in 2.0
void Cache(Event *ev);
void CacheImage(Event *ev);
void CacheFont(Event *ev);
void AliasCache(Event *ev);
void Alias(Event *ev);
void CacheAlias(Event *ev);
void Client(Event *ev);
void TagDynamicLight(Event *ev);
void OriginDynamicLight(Event *ev);
void DynamicLight(Event *ev);
void BlockDynamicLight(Event *ev);
void EndBlockDynamicLight();
void GetOrientation(int tagnum, spawnthing_t *sp);
void Swipe(Event *ev);
void SwipeOn(Event *ev);
void SwipeOff(Event *ev);
void AnimateOnce(Event *ev);
void SetAnim(Event *ev);
void SetDecalRadius(Event *ev);
void SetDecalOrientation(Event *ev);
void TagList(Event *ev);
void SetParallel(Event *ev);
void Footstep(Event *ev);
void LandingSound(Event *ev);
void BodyFallSound(Event *ev);
void SetAlwaysDraw(Event *ev);
void SetDetail(Event *ev);
void SetWindAffect(Event *ev);
void SpriteGridLighting(Event *ev);
void SetWaterOnly(Event *ev);
void SetAlignStretch(Event *ev);
void SetClampVel(Event *ev);
void SetClampVelAxis(Event *ev);
ctempmodel_t *AllocateTempModel(void);
qboolean TempModelPhysics(ctempmodel_t *p, float ftime, float scale);
qboolean TempModelRealtimeEffects(ctempmodel_t *p, float ftime, float scale);
qboolean LerpTempModel(refEntity_t *newEnt, ctempmodel_t *p, float frac);
void SpawnEffect(int count, int timealive);
void SpawnTempModel(int count);
void FreeTempModel(ctempmodel_t *le);
void AnimateTempModel(ctempmodel_t *ent, Vector origin, refEntity_t *newEnt);
void OtherTempModelEffects(ctempmodel_t *p, Vector origin, refEntity_t *newEnt);
qboolean IsBlockCommand(const str& name);
void SetBaseAndAmplitude(Event *ev, Vector& base, Vector& amplitude);
// Beam stuff
void SetSubdivisions(Event *ev);
void SetMinOffset(Event *ev);
void SetMaxOffset(Event *ev);
void SetShader(Event *ev);
void SetLength(Event *ev);
void SetBeamDelay(Event *ev);
void SetBeamToggleDelay(Event *ev);
void SetBeamPersist(Event *ev);
void SetBeamOffsetEndpoints(Event *ev);
void SetBeamSphere(Event *ev);
void SetSpread(Event *ev);
void SetUseLastTraceEnd(Event *ev);
void SetEndAlpha(Event *ev);
void SetEyeLimits(Event *ev);
void SetEyeMovement(Event *ev);
void StartSFX(Event *ev);
void StartSFXDelayed(Event *ev);
void StartSFXCommand(Event *ev, qboolean bDelayed);
void EndIgnoreSfxBlock();
void RandomChance(Event *ev);
void DelayedRepeat(Event *ev);
void CommandDelay(Event *ev);
void SpawnTreads(Event *ev);
void TreadsOff(Event *ev);
bool GetTagPositionAndOrientation(int tagnum, orientation_t *new_or);
bool GetTagPositionAndOrientation(str tagname, orientation_t *new_or);
public:
CLASS_PROTOTYPE(ClientGameCommandManager);
ClientGameCommandManager();
void AddTempModels(void);
void UpdateEmitter(dtiki_t *tiki, vec3_t axis[3], int entity_number, int parent_number, Vector entity_origin);
void UpdateBeam(dtiki_t *tiki, int entity_number, spawnthing_t *beamthing);
void PlaySound(
str sound_name,
const vec3_t origin = NULL,
int channel = CHAN_AUTO,
float volume = -1,
float min_distance = -1,
float pitch = -1,
int argstype = 0
);
spawnthing_t *InitializeSpawnthing(spawnthing_t *ep);
void SpawnEffect(int count, spawnthing_t *sp);
void FreeAllTempModels(void);
void FreeSomeTempModels(void);
void RestartAllEmitters(void);
void InitializeTempModels(void);
void InitializeTempModelCvars(void);
void InitializeEmitters(void);
void RemoveClientEntity(int number, dtiki_t *tiki, centity_t *cent, ctempmodel_t *p = NULL);
void ClearSwipes(void);
void FreeSpawnthing(spawnthing_t *sp);
void ResetTempModels(void);
void SpawnTempModel(int count, spawnthing_t *sp);
inline void SetSpawnthing(spawnthing_t *st) { m_spawnthing = st; };
spawnthing_t *CreateNewEmitter(str emittername);
spawnthing_t *CreateNewEmitter(void);
spawnthing_t *GetEmitterByName(str emittername);
void DeleteEmitters(dtiki_t *tiki);
void CGEvent(centity_t *cent);
void ProcessPendingEventsForEntity();
qboolean PostEventForEntity(Event *ev, float fWait);
qboolean SelectProcessEvent(Event *ev);
// Added in OPM
void ResetPendingEvents();
void RemovePendingEventsForEntity(int number);
void TestEffectEndFunc();
void AddVSSSources();
void InitializeVSSCvars();
void InitializeVSSSources();
void ResetVSSSources();
void ResetVSSSources(Event *ev);
void SetCurrentSFX(specialeffect_t *pSFX);
void ClearCurrentSFX();
void AddTreadMarkSources();
void InitializeTreadMarkCvars();
void InitializeTreadMarkSources();
void ResetTreadMarkSources();
void ResetTreadMarkSources(Event *ev);
void InitializeRainCvars();
void InitializeBeams();
//
// archive stuff
//
int IdForTempModel(const ctempmodel_t *model);
ctempmodel_t *TempModelForId(int id);
int IdForSpawnThing(const spawnthing_t *sp);
spawnthing_t *SpawnThingForId(int id);
int IdForVssSource(const cvssource_t *source);
cvssource_t *VssSourceForId(int id);
void ArchiveTempModelPointerToMemory(MemArchiver& archiver, ctempmodel_t **model);
void ArchiveSpawnThingPointerToMemory(MemArchiver& archiver, spawnthing_t **sp);
void ArchiveVssSourcePointerToMemory(MemArchiver& archiver, cvssource_t **source);
void ArchiveToMemory(MemArchiver& archiver);
};
class EmitterLoader : public Listener
{
private:
bool emitterActive;
public:
CLASS_PROTOTYPE(EmitterLoader);
EmitterLoader();
bool Load(Script&);
void ProcessEmitter(Script&);
void Emitter(Event *ev);
};
class EffectsEventQueueNode
{
public:
Event *event;
int inttime;
int flags;
int entity_num;
EffectsEventQueueNode *prev;
EffectsEventQueueNode *next;
#ifdef _DEBUG
str name;
#endif
EffectsEventQueueNode()
{
prev = this;
next = this;
}
EffectsEventQueueNode(Event *event, int inttime, int flags, int entity_num)
{
this->event = event;
this->inttime = inttime;
this->flags = flags;
this->entity_num = entity_num;
}
int GetEntityNum() { return entity_num; }
};
extern ClientGameCommandManager commandManager;
|