2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // models.c -- model loading and caching
22 // models are the only shared resource between a client and server running
23 // on the same machine.
29 // LordHavoc: increased from 512 to 2048
30 #define MAX_MOD_KNOWN 2048
31 static model_t mod_known[MAX_MOD_KNOWN];
33 rtexture_t *r_notexture;
34 rtexturepool_t *r_notexturepool;
36 texture_t r_surf_notexture;
38 void Mod_SetupNoTexture(void)
43 // this makes a light grey/dark grey checkerboard texture
44 for (y = 0;y < 16;y++)
46 for (x = 0;x < 16;x++)
48 if ((y < 8) ^ (x < 8))
65 r_notexturepool = R_AllocTexturePool();
66 r_notexture = R_LoadTexture2D(r_notexturepool, "notexture", 16, 16, &pix[0][0][0], TEXTYPE_RGBA, TEXF_MIPMAP, NULL);
69 extern void Mod_BrushStartup (void);
70 extern void Mod_BrushShutdown (void);
72 static void mod_start(void)
75 for (i = 0;i < MAX_MOD_KNOWN;i++)
76 if (mod_known[i].name[0])
77 Mod_UnloadModel(&mod_known[i]);
84 static void mod_shutdown(void)
87 for (i = 0;i < MAX_MOD_KNOWN;i++)
88 if (mod_known[i].name[0])
89 Mod_UnloadModel(&mod_known[i]);
91 R_FreeTexturePool(&r_notexturepool);
95 static void mod_newmap(void)
104 static void Mod_Print (void);
105 static void Mod_Flush (void);
112 Cmd_AddCommand ("modellist", Mod_Print);
113 Cmd_AddCommand ("modelflush", Mod_Flush);
116 void Mod_RenderInit(void)
118 R_RegisterModule("Models", mod_start, mod_shutdown, mod_newmap);
121 void Mod_FreeModel (model_t *mod)
123 R_FreeTexturePool(&mod->texturepool);
124 Mem_FreePool(&mod->mempool);
126 // clear the struct to make it available
127 memset(mod, 0, sizeof(model_t));
130 void Mod_UnloadModel (model_t *mod)
132 char name[MAX_QPATH];
133 qboolean isworldmodel;
134 strcpy(name, mod->name);
135 isworldmodel = mod->isworldmodel;
137 strcpy(mod->name, name);
138 mod->isworldmodel = isworldmodel;
139 mod->needload = true;
149 static model_t *Mod_LoadModel (model_t *mod, qboolean crash, qboolean checkdisk, qboolean isworldmodel)
156 if (mod->name[0] == '*') // submodel
165 buf = COM_LoadFile (mod->name, false);
169 Host_Error ("Mod_LoadModel: %s not found", mod->name); // LordHavoc: Sys_Error was *ANNOYING*
173 crc = CRC_Block(buf, com_filesize);
178 if (mod->crc == crc && mod->isworldmodel == isworldmodel)
182 return mod; // already loaded
186 Con_DPrintf("loading model %s\n", mod->name);
190 buf = COM_LoadFile (mod->name, false);
194 Host_Error ("Mod_LoadModel: %s not found", mod->name);
197 crc = CRC_Block(buf, com_filesize);
200 // allocate a new model
203 // LordHavoc: unload the existing model in this slot (if there is one)
204 Mod_UnloadModel(mod);
205 mod->isworldmodel = isworldmodel;
206 mod->needload = false;
210 // all models use memory, so allocate a memory pool
211 mod->mempool = Mem_AllocPool(mod->name);
212 // all models load textures, so allocate a texture pool
213 if (cls.state != ca_dedicated)
214 mod->texturepool = R_AllocTexturePool();
216 // call the apropriate loader
217 if (!memcmp(buf, "IDPO" , 4)) Mod_LoadAliasModel (mod, buf);
218 else if (!memcmp(buf, "IDP2" , 4)) Mod_LoadQ2AliasModel(mod, buf);
219 else if (!memcmp(buf, "ZYMOTIC" , 7)) Mod_LoadZymoticModel(mod, buf);
220 else if (!memcmp(buf, "IDSP" , 4)) Mod_LoadSpriteModel (mod, buf);
221 else Mod_LoadBrushModel (mod, buf);
228 void Mod_CheckLoaded (model_t *mod)
233 Mod_LoadModel(mod, true, true, mod->isworldmodel);
236 if (mod->type == mod_invalid)
237 Host_Error("Mod_CheckLoaded: invalid model\n");
249 void Mod_ClearAll (void)
253 void Mod_ClearUsed(void)
258 for (i = 0, mod = mod_known;i < MAX_MOD_KNOWN;i++, mod++)
263 void Mod_PurgeUnused(void)
268 for (i = 0, mod = mod_known;i < MAX_MOD_KNOWN;i++, mod++)
274 void Mod_LoadModels(void)
279 for (i = 0, mod = mod_known;i < MAX_MOD_KNOWN;i++, mod++)
282 Mod_CheckLoaded(mod);
291 model_t *Mod_FindName (const char *name)
294 model_t *mod, *freemod;
297 Host_Error ("Mod_ForName: NULL name");
299 // search the currently loaded models
301 for (i = 0, mod = mod_known;i < MAX_MOD_KNOWN;i++, mod++)
305 if (!strcmp (mod->name, name))
311 else if (freemod == NULL)
318 strcpy (mod->name, name);
319 mod->needload = true;
324 Host_Error ("Mod_FindName: ran out of models\n");
334 void Mod_TouchModel (const char *name)
338 mod = Mod_FindName (name);
346 Loads in a model for the given name
349 model_t *Mod_ForName (const char *name, qboolean crash, qboolean checkdisk, qboolean isworldmodel)
351 return Mod_LoadModel (Mod_FindName (name), crash, checkdisk, isworldmodel);
357 //=============================================================================
364 static void Mod_Print (void)
369 Con_Printf ("Loaded models:\n");
370 for (i = 0, mod = mod_known;i < MAX_MOD_KNOWN;i++, mod++)
372 Con_Printf ("%4iK %s\n", mod->mempool ? (mod->mempool->totalsize + 1023) / 1024 : 0, mod->name);
375 static void Mod_Flush (void)
379 Con_Printf ("Unloading models\n");
380 for (i = 0;i < MAX_MOD_KNOWN;i++)
381 if (mod_known[i].name[0])
382 Mod_UnloadModel(&mod_known[i]);
386 int Mod_FindTriangleWithEdge(const int *elements, int numtriangles, int start, int end)
389 for (i = 0;i < numtriangles;i++, elements += 3)
391 if (elements[0] == start && elements[1] == end)
393 if (elements[1] == start && elements[2] == end)
395 if (elements[2] == start && elements[0] == end)
401 void Mod_BuildTriangleNeighbors(int *neighbors, const int *elements, int numtriangles)
405 for (i = 0, e = elements, n = neighbors;i < numtriangles;i++, e += 3, n += 3)
407 n[0] = Mod_FindTriangleWithEdge(elements, numtriangles, e[1], e[0]);
408 n[1] = Mod_FindTriangleWithEdge(elements, numtriangles, e[2], e[1]);
409 n[2] = Mod_FindTriangleWithEdge(elements, numtriangles, e[0], e[2]);
413 void Mod_ValidateElements(const int *elements, int numtriangles, int numverts, const char *filename, int fileline)
416 for (i = 0;i < numtriangles * 3;i++)
417 if ((unsigned int)elements[i] >= (unsigned int)numverts)
418 Con_Printf("Mod_ValidateElements: out of bounds element detected at %s:%d\n", filename, fileline);
422 a note on the cost of executing this function:
423 per triangle: 188 (83 42 13 45 4 1)
424 assignments: 83 (20 3 3 3 1 4 4 1 3 4 3 4 30)
425 adds: 42 (2 2 2 2 3 2 2 27)
426 subtracts: 13 (3 3 3 1 3)
427 multiplies: 45 (6 3 6 6 3 3 6 6 6)
430 per vertex: 39 (12 6 18 3)
431 assignments: 12 (4 4 4)
433 multiplies: 18 (6 6 6)
437 void Mod_BuildTextureVectorsAndNormals(int numverts, int numtriangles, const float *vertex, const float *texcoord, const int *elements, float *svectors, float *tvectors, float *normals)
439 int i, tnum, voffset;
440 float vert[3][4], vec[3][4], sdir[3], tdir[3], normal[3], f, *v;
443 memset(svectors, 0, numverts * sizeof(float[4]));
444 memset(tvectors, 0, numverts * sizeof(float[4]));
445 memset(normals, 0, numverts * sizeof(float[4]));
446 // process each vertex of each triangle and accumulate the results
447 for (tnum = 0, e = elements;tnum < numtriangles;tnum++, e += 3)
449 // calculate texture matrix for triangle
452 vert[0][0] = vertex[voffset+0];
453 vert[0][1] = vertex[voffset+1];
454 vert[0][2] = vertex[voffset+2];
455 vert[0][3] = texcoord[voffset];
457 vert[1][0] = vertex[voffset+0];
458 vert[1][1] = vertex[voffset+1];
459 vert[1][2] = vertex[voffset+2];
460 vert[1][3] = texcoord[voffset];
462 vert[2][0] = vertex[voffset+0];
463 vert[2][1] = vertex[voffset+1];
464 vert[2][2] = vertex[voffset+2];
465 vert[2][3] = texcoord[voffset];
466 // 3 assignments, 3 subtracts
467 VectorSubtract(vert[1], vert[0], vec[0]);
468 // 3 assignments, 3 subtracts
469 VectorSubtract(vert[2], vert[0], vec[1]);
470 // 3 assignments, 3 subtracts, 6 multiplies
471 CrossProduct(vec[0], vec[1], normal);
472 // 1 assignment, 2 adds, 3 multiplies, 1 compare
473 if (DotProduct(normal, normal) >= 0.001)
475 // 4 assignments, 1 rsqrt, 2 adds, 6 multiplies
476 VectorNormalize(normal);
477 sdir[0] = (vert[1][3] - vert[0][3]) * (vert[2][0] - vert[0][0]) - (vert[2][3] - vert[0][3]) * (vert[1][0] - vert[0][0]);
478 sdir[1] = (vert[1][3] - vert[0][3]) * (vert[2][1] - vert[0][1]) - (vert[2][3] - vert[0][3]) * (vert[1][1] - vert[0][1]);
479 sdir[2] = (vert[1][3] - vert[0][3]) * (vert[2][2] - vert[0][2]) - (vert[2][3] - vert[0][3]) * (vert[1][2] - vert[0][2]);
480 // 4 assignments, 1 rsqrt, 2 adds, 6 multiplies
481 VectorNormalize(sdir);
482 // 1 assignments, 1 negates, 2 adds, 3 multiplies
483 f = -DotProduct(sdir, normal);
484 // 3 assignments, 3 adds, 3 multiplies
485 VectorMA(sdir, f, normal, sdir);
486 // 4 assignments, 1 rsqrt, 2 adds, 6 multiplies
487 VectorNormalize(sdir);
488 // 3 assignments, 3 subtracts, 6 multiplies
489 CrossProduct(sdir, normal, tdir);
490 // this is probably not necessary
491 // 4 assignments, 1 rsqrt, 2 adds, 6 multiplies
492 VectorNormalize(tdir);
493 // accumulate matrix onto verts used by triangle
494 // 30 assignments, 27 adds
495 for (i = 0;i < 3;i++)
498 svectors[voffset ] += sdir[0];
499 svectors[voffset + 1] += sdir[1];
500 svectors[voffset + 2] += sdir[2];
501 tvectors[voffset ] += tdir[0];
502 tvectors[voffset + 1] += tdir[1];
503 tvectors[voffset + 2] += tdir[2];
504 normals[voffset ] += normal[0];
505 normals[voffset + 1] += normal[1];
506 normals[voffset + 2] += normal[2];
510 // now we could divide the vectors by the number of averaged values on
511 // each vertex... but instead normalize them
512 for (i = 0, v = svectors;i < numverts;i++, v += 4)
513 // 4 assignments, 1 rsqrt, 2 adds, 6 multiplies
515 for (i = 0, v = tvectors;i < numverts;i++, v += 4)
516 // 4 assignments, 1 rsqrt, 2 adds, 6 multiplies
518 for (i = 0, v = normals;i < numverts;i++, v += 4)
519 // 4 assignments, 1 rsqrt, 2 adds, 6 multiplies
523 shadowmesh_t *Mod_ShadowMesh_Alloc(mempool_t *mempool, int maxverts)
526 #define ALLOCMESHINPIECES 0
527 #if ALLOCMESHINPIECES
528 mesh = Mem_Alloc(mempool, sizeof(shadowmesh_t));
530 mesh = Mem_Alloc(mempool, sizeof(shadowmesh_t) + maxverts * sizeof(float[4]) + maxverts * sizeof(int[3]) + maxverts * sizeof(int[3]));
532 mesh->maxverts = maxverts;
533 mesh->maxtriangles = maxverts;
535 mesh->numtriangles = 0;
536 #if ALLOCMESHINPIECES
537 mesh->verts = Mem_Alloc(mempool, maxverts * sizeof(float[4]));
538 mesh->elements = Mem_Alloc(mempool, maxverts * sizeof(int[3]));
539 mesh->neighbors = Mem_Alloc(mempool, maxverts * sizeof(int[3]));
541 mesh->verts = (float *)(mesh + 1);
542 mesh->elements = (int *)(mesh->verts + mesh->maxverts * 4);
543 mesh->neighbors = (int *)(mesh->elements + mesh->maxtriangles * 3);
548 shadowmesh_t *Mod_ShadowMesh_ReAlloc(mempool_t *mempool, shadowmesh_t *oldmesh)
550 shadowmesh_t *newmesh;
551 #if ALLOCMESHINPIECES
552 newmesh = Mem_Alloc(mempool, sizeof(shadowmesh_t));
554 newmesh = Mem_Alloc(mempool, sizeof(shadowmesh_t) + oldmesh->numverts * sizeof(float[4]) + oldmesh->numtriangles * sizeof(int[3]) + oldmesh->numtriangles * sizeof(int[3]));
556 newmesh->maxverts = newmesh->numverts = oldmesh->numverts;
557 newmesh->maxtriangles = newmesh->numtriangles = oldmesh->numtriangles;
558 #if ALLOCMESHINPIECES
559 newmesh->verts = Mem_Alloc(mempool, newmesh->maxverts * sizeof(float[4]));
560 newmesh->elements = Mem_Alloc(mempool, newmesh->numtriangles * sizeof(int[3]));
561 newmesh->neighbors = Mem_Alloc(mempool, newmesh->numtriangles * sizeof(int[3]));
563 newmesh->verts = (float *)(newmesh + 1);
564 newmesh->elements = (int *)(newmesh->verts + newmesh->maxverts * 4);
565 newmesh->neighbors = (int *)(newmesh->elements + newmesh->maxtriangles * 3);
567 memcpy(newmesh->verts, oldmesh->verts, newmesh->numverts * sizeof(float[4]));
568 memcpy(newmesh->elements, oldmesh->elements, newmesh->numtriangles * sizeof(int[3]));
569 memcpy(newmesh->neighbors, oldmesh->neighbors, newmesh->numtriangles * sizeof(int[3]));
573 int Mod_ShadowMesh_AddVertex(shadowmesh_t *mesh, float *v)
577 for (j = 0, m = mesh->verts;j < mesh->numverts;j++, m += 4)
579 VectorSubtract(v, m, temp);
580 if (DotProduct(temp, temp) < 0.1)
588 void Mod_ShadowMesh_AddTriangle(mempool_t *mempool, shadowmesh_t *mesh, float *vert0, float *vert1, float *vert2)
590 while (mesh->numverts + 3 > mesh->maxverts || mesh->numtriangles + 1 > mesh->maxtriangles)
592 if (mesh->next == NULL)
593 mesh->next = Mod_ShadowMesh_Alloc(mempool, max(mesh->maxtriangles, 1));
596 mesh->elements[mesh->numtriangles * 3 + 0] = Mod_ShadowMesh_AddVertex(mesh, vert0);
597 mesh->elements[mesh->numtriangles * 3 + 1] = Mod_ShadowMesh_AddVertex(mesh, vert1);
598 mesh->elements[mesh->numtriangles * 3 + 2] = Mod_ShadowMesh_AddVertex(mesh, vert2);
599 mesh->numtriangles++;
602 void Mod_ShadowMesh_AddPolygon(mempool_t *mempool, shadowmesh_t *mesh, int numverts, float *verts)
606 for (i = 0, v = verts + 3;i < numverts - 2;i++, v += 3)
607 Mod_ShadowMesh_AddTriangle(mempool, mesh, verts, v, v + 3);
611 while (mesh->numverts + numverts > mesh->maxverts || mesh->numtriangles + (numverts - 2) > mesh->maxtriangles)
613 if (mesh->next == NULL)
614 mesh->next = Mod_ShadowMesh_Alloc(mempool, max(mesh->maxtriangles, numverts));
617 i1 = Mod_ShadowMesh_AddVertex(mesh, verts);
619 i3 = Mod_ShadowMesh_AddVertex(mesh, verts + 3);
620 for (i = 0, v = verts + 6;i < numverts - 2;i++, v += 3)
623 i3 = Mod_ShadowMesh_AddVertex(mesh, v);
624 mesh->elements[mesh->numtriangles * 3 + 0] = i1;
625 mesh->elements[mesh->numtriangles * 3 + 1] = i2;
626 mesh->elements[mesh->numtriangles * 3 + 2] = i3;
627 mesh->numtriangles++;
632 void Mod_ShadowMesh_AddMesh(mempool_t *mempool, shadowmesh_t *mesh, int numverts, float *verts, int numtris, int *elements)
635 for (i = 0;i < numtris;i++, elements += 3)
636 Mod_ShadowMesh_AddTriangle(mempool, mesh, verts + elements[0] * 4, verts + elements[1] * 4, verts + elements[2] * 4);
639 shadowmesh_t *Mod_ShadowMesh_Begin(mempool_t *mempool, int initialnumtriangles)
641 return Mod_ShadowMesh_Alloc(mempool, initialnumtriangles);
644 shadowmesh_t *Mod_ShadowMesh_Finish(mempool_t *mempool, shadowmesh_t *firstmesh)
648 shadowmesh_t *mesh, *newmesh, *nextmesh;
649 // reallocate meshs to conserve space
650 for (mesh = firstmesh, firstmesh = NULL;mesh;mesh = nextmesh)
652 nextmesh = mesh->next;
653 if (mesh->numverts >= 3 && mesh->numtriangles >= 1)
655 newmesh = Mod_ShadowMesh_ReAlloc(mempool, mesh);
656 newmesh->next = firstmesh;
658 //Con_Printf("mesh\n");
659 //for (i = 0;i < newmesh->numtriangles;i++)
660 // Con_Printf("tri %d %d %d\n", newmesh->elements[i * 3 + 0], newmesh->elements[i * 3 + 1], newmesh->elements[i * 3 + 2]);
661 Mod_BuildTriangleNeighbors(newmesh->neighbors, newmesh->elements, newmesh->numtriangles);
667 for (mesh = firstmesh;mesh;mesh = mesh->next)
668 Mod_BuildTriangleNeighbors(mesh->neighbors, mesh->elements, mesh->numtriangles);
673 void Mod_ShadowMesh_CalcBBox(shadowmesh_t *firstmesh, vec3_t mins, vec3_t maxs, vec3_t center, float *radius)
677 vec3_t nmins, nmaxs, ncenter, temp;
678 float nradius2, dist2, *v;
680 for (mesh = firstmesh;mesh;mesh = mesh->next)
682 if (mesh == firstmesh)
684 VectorCopy(mesh->verts, nmins);
685 VectorCopy(mesh->verts, nmaxs);
687 for (i = 0, v = mesh->verts;i < mesh->numverts;i++, v += 4)
689 if (nmins[0] > v[0]) nmins[0] = v[0];if (nmaxs[0] < v[0]) nmaxs[0] = v[0];
690 if (nmins[1] > v[1]) nmins[1] = v[1];if (nmaxs[1] < v[1]) nmaxs[1] = v[1];
691 if (nmins[2] > v[2]) nmins[2] = v[2];if (nmaxs[2] < v[2]) nmaxs[2] = v[2];
694 // calculate center and radius
695 ncenter[0] = (nmins[0] + nmaxs[0]) * 0.5f;
696 ncenter[1] = (nmins[1] + nmaxs[1]) * 0.5f;
697 ncenter[2] = (nmins[2] + nmaxs[2]) * 0.5f;
699 for (mesh = firstmesh;mesh;mesh = mesh->next)
701 for (i = 0, v = mesh->verts;i < mesh->numverts;i++, v += 4)
703 VectorSubtract(v, ncenter, temp);
704 dist2 = DotProduct(temp, temp);
705 if (nradius2 < dist2)
711 VectorCopy(nmins, mins);
713 VectorCopy(nmaxs, maxs);
715 VectorCopy(ncenter, center);
717 *radius = sqrt(nradius2);
720 void Mod_ShadowMesh_Free(shadowmesh_t *mesh)
722 shadowmesh_t *nextmesh;
723 for (;mesh;mesh = nextmesh)
725 nextmesh = mesh->next;
726 #if ALLOCMESHINPIECES
727 Mem_Free(mesh->verts);
728 Mem_Free(mesh->elements);
729 Mem_Free(mesh->neighbors);