RegExp.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. ===========================================================================
  3. Doom 3 BFG Edition GPL Source Code
  4. Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
  5. This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
  6. Doom 3 BFG Edition Source Code is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation, either version 3 of the License, or
  9. (at your option) any later version.
  10. Doom 3 BFG Edition Source Code is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
  16. In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
  17. If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
  18. ===========================================================================
  19. */
  20. #ifndef __REGEXP_H__
  21. #define __REGEXP_H__
  22. class idTokenParser;
  23. class idWindow;
  24. class idWinVar;
  25. class idRegister {
  26. public:
  27. idRegister();
  28. idRegister( const char *p, int t );
  29. enum REGTYPE { VEC4 = 0, FLOAT, BOOL, INT, STRING, VEC2, VEC3, RECTANGLE, NUMTYPES } ;
  30. static int REGCOUNT[NUMTYPES];
  31. bool enabled;
  32. short type;
  33. idStr name;
  34. int regCount;
  35. unsigned short regs[4];
  36. idWinVar * var;
  37. void SetToRegs( float *registers );
  38. void GetFromRegs( float *registers );
  39. void CopyRegs( idRegister *src );
  40. void Enable( bool b ) { enabled = b; }
  41. void ReadFromDemoFile( idDemoFile *f );
  42. void WriteToDemoFile( idDemoFile *f );
  43. void WriteToSaveGame( idFile *savefile );
  44. void ReadFromSaveGame( idFile *savefile );
  45. };
  46. ID_INLINE idRegister::idRegister() {
  47. }
  48. ID_INLINE idRegister::idRegister( const char *p, int t ) {
  49. name = p;
  50. type = t;
  51. assert( t >= 0 && t < NUMTYPES );
  52. regCount = REGCOUNT[t];
  53. enabled = ( type == STRING ) ? false : true;
  54. var = NULL;
  55. };
  56. ID_INLINE void idRegister::CopyRegs( idRegister *src ) {
  57. regs[0] = src->regs[0];
  58. regs[1] = src->regs[1];
  59. regs[2] = src->regs[2];
  60. regs[3] = src->regs[3];
  61. }
  62. class idRegisterList {
  63. public:
  64. idRegisterList();
  65. ~idRegisterList();
  66. void AddReg( const char *name, int type, idTokenParser *src, idWindow *win, idWinVar *var );
  67. void AddReg( const char *name, int type, idVec4 data, idWindow *win, idWinVar *var );
  68. idRegister * FindReg( const char *name );
  69. void SetToRegs( float *registers );
  70. void GetFromRegs( float *registers );
  71. void Reset();
  72. void ReadFromDemoFile( idDemoFile *f );
  73. void WriteToDemoFile( idDemoFile *f );
  74. void WriteToSaveGame( idFile *savefile );
  75. void ReadFromSaveGame( idFile *savefile );
  76. private:
  77. idList<idRegister*> regs;
  78. idHashIndex regHash;
  79. };
  80. ID_INLINE idRegisterList::idRegisterList() {
  81. regs.SetGranularity( 4 );
  82. regHash.SetGranularity( 4 );
  83. regHash.Clear( 32, 4 );
  84. }
  85. ID_INLINE idRegisterList::~idRegisterList() {
  86. }
  87. #endif /* !__REGEXP_H__ */