RenderEntity.cpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. #pragma hdrstop
  21. #include "../idlib/precompiled.h"
  22. #include "tr_local.h"
  23. idRenderEntityLocal::idRenderEntityLocal() {
  24. memset( &parms, 0, sizeof( parms ) );
  25. memset( modelMatrix, 0, sizeof( modelMatrix ) );
  26. world = NULL;
  27. index = 0;
  28. lastModifiedFrameNum = 0;
  29. archived = false;
  30. dynamicModel = NULL;
  31. dynamicModelFrameCount = 0;
  32. cachedDynamicModel = NULL;
  33. localReferenceBounds = bounds_zero;
  34. globalReferenceBounds = bounds_zero;
  35. viewCount = 0;
  36. viewEntity = NULL;
  37. decals = NULL;
  38. overlays = NULL;
  39. entityRefs = NULL;
  40. firstInteraction = NULL;
  41. lastInteraction = NULL;
  42. needsPortalSky = false;
  43. }
  44. void idRenderEntityLocal::FreeRenderEntity() {
  45. }
  46. void idRenderEntityLocal::UpdateRenderEntity( const renderEntity_t *re, bool forceUpdate ) {
  47. }
  48. void idRenderEntityLocal::GetRenderEntity( renderEntity_t *re ) {
  49. }
  50. void idRenderEntityLocal::ForceUpdate() {
  51. }
  52. int idRenderEntityLocal::GetIndex() {
  53. return index;
  54. }
  55. void idRenderEntityLocal::ProjectOverlay( const idPlane localTextureAxis[2], const idMaterial *material ) {
  56. }
  57. void idRenderEntityLocal::RemoveDecals() {
  58. }
  59. //======================================================================
  60. idRenderLightLocal::idRenderLightLocal() {
  61. memset( &parms, 0, sizeof( parms ) );
  62. memset( lightProject, 0, sizeof( lightProject ) );
  63. lightHasMoved = false;
  64. world = NULL;
  65. index = 0;
  66. areaNum = 0;
  67. lastModifiedFrameNum = 0;
  68. archived = false;
  69. lightShader = NULL;
  70. falloffImage = NULL;
  71. globalLightOrigin = vec3_zero;
  72. viewCount = 0;
  73. viewLight = NULL;
  74. references = NULL;
  75. foggedPortals = NULL;
  76. firstInteraction = NULL;
  77. lastInteraction = NULL;
  78. baseLightProject.Zero();
  79. inverseBaseLightProject.Zero();
  80. }
  81. void idRenderLightLocal::FreeRenderLight() {
  82. }
  83. void idRenderLightLocal::UpdateRenderLight( const renderLight_t *re, bool forceUpdate ) {
  84. }
  85. void idRenderLightLocal::GetRenderLight( renderLight_t *re ) {
  86. }
  87. void idRenderLightLocal::ForceUpdate() {
  88. }
  89. int idRenderLightLocal::GetIndex() {
  90. return index;
  91. }