Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/util/loading/resource_manager.cc @ 6655

Last change on this file since 6655 was 6655, checked in by bensch, 18 years ago

orxonox/trunk: ammoContainer added

File size: 32.0 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program 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 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: Patrick Boenzli
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_LOAD
17
18#include "resource_manager.h"
19
20#include "substring.h"
21#include "debug.h"
22
23#include <algorithm>
24#include <assert.h>
25
26// different resource Types
27#ifndef NO_MODEL
28#include "objModel.h"
29#include "primitive_model.h"
30#include "md2Model.h"
31#endif /* NO_MODEL */
32#ifndef NO_TEXTURES
33#include "texture.h"
34#endif /* NO_TEXTURES */
35#ifndef NO_TEXT
36#include "font.h"
37#endif /* NO_TEXT */
38#ifndef NO_AUDIO
39#include "sound_buffer.h"
40#include "ogg_player.h"
41#endif /* NO_AUDIO */
42#ifndef NO_SHADERS
43#include "shader.h"
44#endif /* NO_SHADERS */
45
46// File Handling Includes
47#include <sys/types.h>
48#include <sys/stat.h>
49#include <unistd.h>
50
51using namespace std;
52
53/**
54 * @brief standard constructor
55*/
56ResourceManager::ResourceManager ()
57{
58  this->setClassID(CL_RESOURCE_MANAGER, "ResourceManager");
59  this->setName("ResourceManager");
60
61  this->dataDir = new char[3];
62  strcpy(this->dataDir, "./");
63  this->tryDataDir("./data");
64}
65
66//! Singleton Reference to the ResourceManager
67ResourceManager* ResourceManager::singletonRef = NULL;
68
69/**
70 * @brief standard destructor
71*/
72ResourceManager::~ResourceManager ()
73{
74  // deleting the Resources-List
75  this->unloadAllByPriority(RP_GAME);
76
77  if (!this->resourceList.empty())
78    PRINTF(1)("Not removed all Resources, since there are still %d resources registered\n", this->resourceList.size());
79
80  // deleting the Directorie Lists
81  while (!this->imageDirs.empty())
82  {
83    delete[] this->imageDirs.back();
84    this->imageDirs.pop_back();
85  }
86
87  delete[] this->dataDir;
88
89  ResourceManager::singletonRef = NULL;
90}
91
92/**
93 * @brief sets the data main directory
94 * @param dataDir the DataDirectory.
95 */
96bool ResourceManager::setDataDir(const char* dataDir)
97{
98  char* realDir = ResourceManager::homeDirCheck(dataDir);
99  if (isDir(realDir))
100  {
101    delete[] this->dataDir;
102    if (dataDir[strlen(dataDir)-1] == '/' || dataDir[strlen(dataDir)-1] == '\\')
103    {
104      this->dataDir = new char[strlen(realDir)+1];
105      strcpy(this->dataDir, realDir);
106    }
107    else
108    {
109      this->dataDir = new char[strlen(realDir)+2];
110      strcpy(this->dataDir, realDir);
111      this->dataDir[strlen(realDir)] = '/';
112      this->dataDir[strlen(realDir)+1] = '\0';
113    }
114    delete[] realDir;
115    return true;
116  }
117  else
118  {
119    PRINTF(1)("%s is not a Directory, and can not be the Data Directory, leaving as %s \n", realDir, this->dataDir);
120    delete[] realDir;
121    return false;
122  }
123}
124
125/**
126 * @brief sets the data main directory
127 * @param dataDir the DataDirectory.
128 *
129 * this is essentially the same as setDataDir, but it ommits the error-message
130 */
131bool ResourceManager::tryDataDir(const char* dataDir)
132{
133  char* realDir = ResourceManager::homeDirCheck(dataDir);
134  if (isDir(realDir))
135  {
136    delete[] this->dataDir;
137    if (dataDir[strlen(dataDir)-1] == '/' || dataDir[strlen(dataDir)-1] == '\\')
138    {
139      this->dataDir = new char[strlen(realDir)+1];
140      strcpy(this->dataDir, realDir);
141    }
142    else
143    {
144      this->dataDir = new char[strlen(realDir)+2];
145      strcpy(this->dataDir, realDir);
146      this->dataDir[strlen(realDir)] = '/';
147      this->dataDir[strlen(realDir)+1] = '\0';
148    }
149    delete[] realDir;
150    return true;
151  }
152  delete[] realDir;
153  return false;
154}
155
156
157/**
158 * @brief checks for the DataDirectory, by looking if
159 * @param fileInside is iniside of the given directory.
160*/
161bool ResourceManager::verifyDataDir(const char* fileInside)
162{
163  bool retVal;
164  if (!isDir(this->dataDir))
165  {
166    PRINTF(1)("%s is not a directory\n", this->dataDir);
167    return false;
168  }
169
170  char* testFile = new char[strlen(this->dataDir)+strlen(fileInside)+1];
171  sprintf(testFile, "%s%s", this->dataDir, fileInside);
172  retVal = isFile(testFile);
173  delete[] testFile;
174  return retVal;
175}
176
177#ifndef NO_TEXTURES
178/**
179 * @brief adds a new Path for Images
180 * @param imageDir The path to insert
181 * @returns true, if the Path was well and injected (or already existent within the list)
182   false otherwise
183*/
184bool ResourceManager::addImageDir(const char* imageDir)
185{
186  if (imageDir == NULL)
187    return false;
188
189  char* newDir;
190  if (imageDir[strlen(imageDir)-1] == '/' || imageDir[strlen(imageDir)-1] == '\\')
191  {
192    newDir = new char[strlen(imageDir)+1];
193    strcpy(newDir, imageDir);
194  }
195  else
196  {
197    newDir = new char[strlen(imageDir)+2];
198    strcpy(newDir, imageDir);
199    newDir[strlen(imageDir)] = '/';
200    newDir[strlen(imageDir)+1] = '\0';
201  }
202  // check if the param is a Directory
203  if (isDir(newDir))
204  {
205    // check if the Directory has been added before
206    std::vector<char*>::const_iterator imageDir;
207    for (imageDir = this->imageDirs.begin(); imageDir != this->imageDirs.end(); imageDir++)
208    {
209      if (!strcmp(*imageDir, newDir))
210      {
211        PRINTF(3)("Path %s already loaded\n", newDir);
212        delete[] newDir;
213        return true;
214      }
215    }
216    // adding the directory to the List
217    this->imageDirs.push_back(newDir);
218    return true;
219  }
220  else
221  {
222    PRINTF(1)("%s is not a Directory, and can not be added to the Paths of Images\n", newDir);
223    delete[] newDir;
224    return false;
225  }
226}
227#endif /* NO_TEXTURES */
228
229/**
230 * @brief loads resources
231 * @param fileName: The fileName of the resource to load
232 * @param prio: The ResourcePriority of this resource (will only be increased)
233 * @param param0: an additional option to parse (see the constuctors for more help)
234 * @param param1: an additional option to parse (see the constuctors for more help)
235 * @param param2: an additional option to parse (see the constuctors for more help)
236 * @returns a pointer to a desired Resource.
237*/
238BaseObject* ResourceManager::load(const char* fileName, ResourcePriority prio,
239                                  const MultiType& param0, const MultiType& param1, const MultiType& param2)
240{
241  if (fileName == NULL)
242    return NULL;
243  ResourceType tmpType;
244#ifndef NO_MODEL
245#define __IF_OK
246  if (!strncasecmp(fileName+(strlen(fileName)-4), ".obj", 4))
247    tmpType = OBJ;
248  else if (!strncmp(fileName+(strlen(fileName)-4), ".md2", 4))
249    tmpType = MD2;
250  else if (!strcasecmp(fileName, "cube") ||
251           !strcasecmp(fileName, "sphere") ||
252           !strcasecmp(fileName, "plane") ||
253           !strcasecmp(fileName, "cylinder") ||
254           !strcasecmp(fileName, "cone"))
255    tmpType = PRIM;
256#endif /* NO_MODEL */
257#ifndef NO_AUDIO
258#ifdef __IF_OK
259  else
260#endif
261#define __IF_OK
262    if (!strncasecmp(fileName+(strlen(fileName)-4), ".wav", 4))
263      tmpType = WAV;
264    else if (!strncasecmp(fileName+(strlen(fileName)-4), ".mp3", 4))
265      tmpType = MP3;
266    else if (!strncasecmp(fileName+(strlen(fileName)-4), ".ogg", 4))
267      tmpType = OGG;
268#endif /* NO_AUDIO */
269#ifndef NO_TEXT
270#ifdef __IF_OK
271    else
272#endif
273#define __IF_OK
274      if (!strncasecmp(fileName+(strlen(fileName)-4), ".ttf", 4))
275        tmpType = TTF;
276#endif /* NO_TEXT */
277#ifndef NO_SHADERS
278#ifdef __IF_OK
279      else
280#endif
281#define __IF_OK
282        if (!strncasecmp(fileName+(strlen(fileName)-5), ".vert", 5))
283          tmpType = SHADER;
284#endif /* NO_SHADERS */
285#ifndef NO_TEXTURES
286#ifdef __IF_OK
287        else
288#else
289  if
290#endif
291          tmpType = IMAGE;
292#endif /* NO_TEXTURES */
293#undef __IF_OK
294  return this->load(fileName, tmpType, prio, param0, param1, param2);
295}
296
297/**
298 * @brief caches a Resource
299 *
300 * @see load;
301 *
302 * @brief returns true if ok, false otherwise.
303 * This function loads a Resource without applying it to an Object.
304 * This is for loading purposes, e.g, when the user is loading a Resource
305 * during the initialisation instead of at Runtime.
306 */
307bool ResourceManager::cache(const char* fileName, ResourceType type, ResourcePriority prio,
308                            const MultiType& param0, const MultiType& param1, const MultiType& param2)
309{
310  assert(fileName != NULL);
311
312  // searching if the resource was loaded before.
313  Resource* tmpResource;
314  // check if we already loaded this Resource
315  tmpResource = this->locateResourceByInfo(fileName, type, param0, param1, param2);
316  // otherwise load it
317  if (tmpResource == NULL)
318    tmpResource = this->loadResource(fileName, type, prio, param0, param1, param2);
319  // return cached pointer.
320  if (tmpResource != NULL) // if the resource was loaded before.
321  {
322    if(tmpResource->prio < prio)
323      tmpResource->prio = prio;
324    return true;
325  }
326  else
327    return false;
328}
329
330/**
331 * tells the ResourceManager to generate a Copy of the Resource.
332 * @brief resourcePointer: The Pointer to the resource to copy
333 * @returns the Resource pointed to resourcePointer.
334 */
335BaseObject* ResourceManager::copy(BaseObject* resourcePointer)
336{
337  Resource* tmp = locateResourceByPointer(resourcePointer);
338  if (tmp!=NULL)
339  {
340    tmp->count++;
341    return tmp->pointer;
342  }
343  else
344    return NULL;
345}
346
347
348/**
349 * @brief loads resources
350 * @param fileName: The fileName of the resource to load
351 * @param type: The Type of Resource to load.
352 * @param prio: The ResourcePriority of this resource (will only be increased)
353 * @param param0: an additional option to parse (see the constuctors for more help)
354 * @param param1: an additional option to parse (see the constuctors for more help)
355 * @param param2: an additional option to parse (see the constuctors for more help)
356 * @returns a pointer to a desired Resource.
357*/
358BaseObject* ResourceManager::load(const char* fileName, ResourceType type, ResourcePriority prio,
359                                  const MultiType& param0, const MultiType& param1, const MultiType& param2)
360{
361  assert(fileName != NULL);
362
363  // searching if the resource was loaded before.
364  Resource* tmpResource;
365  // check if we already loaded this Resource
366  tmpResource = this->locateResourceByInfo(fileName, type, param0, param1, param2);
367  // otherwise load it
368  if (tmpResource == NULL)
369  {
370    tmpResource = this->loadResource(fileName, type, prio, param0, param1, param2);
371  }
372  // return cached pointer.
373  if (tmpResource != NULL) // if the resource was loaded before.
374  {
375    tmpResource->count++;
376    if(tmpResource->prio < prio)
377      tmpResource->prio = prio;
378
379    return tmpResource->pointer;
380  }
381  else
382    return NULL;
383}
384
385
386/**
387 * @brief loads resources for internal purposes
388 * @param fileName: The fileName of the resource to load
389 * @param type: The Type of Resource to load.
390 * @param prio: The ResourcePriority of this resource (will only be increased)
391 * @param param0: an additional option to parse (see the constuctors for more help)
392 * @param param1: an additional option to parse (see the constuctors for more help)
393 * @param param2: an additional option to parse (see the constuctors for more help)
394 * @returns a pointer to a desired Resource.
395 */
396Resource* ResourceManager::loadResource(const char* fileName, ResourceType type, ResourcePriority prio,
397                                        const MultiType& param0, const MultiType& param1, const MultiType& param2)
398{
399  // Setting up the new Resource
400  Resource* tmpResource = new Resource;
401  tmpResource->count = 0;
402  tmpResource->type = type;
403  tmpResource->prio = prio;
404  tmpResource->pointer = NULL;
405  tmpResource->name = new char[strlen(fileName)+1];
406  strcpy(tmpResource->name, fileName);
407
408  // creating the full name. (directoryName + FileName)
409  char* fullName = ResourceManager::getFullName(fileName);
410  // Checking for the type of resource \see ResourceType
411  switch(type)
412  {
413#ifndef NO_MODEL
414    case OBJ:
415      if (param0.getType() != MT_NULL)
416        tmpResource->param[0] = param0;
417      else
418        tmpResource->param[0] = 1.0f;
419
420      if(ResourceManager::isFile(fullName))
421        tmpResource->pointer = new OBJModel(fullName, tmpResource->param[0].getFloat());
422      else
423      {
424        PRINTF(2)("File %s in %s does not exist. Loading a cube-Model instead\n", fileName, dataDir);
425        tmpResource->pointer = ResourceManager::load("cube", PRIM, prio, tmpResource->param[0].getFloat());
426      }
427      break;
428    case PRIM:
429      if (param0 != MT_NULL)
430        tmpResource->param[0] = param0;
431      else
432        tmpResource->param[0] = 1.0f;
433
434      if (!strcmp(tmpResource->name, "cube"))
435        tmpResource->pointer = new PrimitiveModel(PRIM_CUBE, tmpResource->param[0].getFloat());
436      else if (!strcmp(tmpResource->name, "sphere"))
437        tmpResource->pointer = new PrimitiveModel(PRIM_SPHERE, tmpResource->param[0].getFloat());
438      else if (!strcmp(tmpResource->name, "plane"))
439        tmpResource->pointer = new PrimitiveModel(PRIM_PLANE, tmpResource->param[0].getFloat());
440      else if (!strcmp(tmpResource->name, "cylinder"))
441        tmpResource->pointer = new PrimitiveModel(PRIM_CYLINDER, tmpResource->param[0].getFloat());
442      else if (!strcmp(tmpResource->name, "cone"))
443        tmpResource->pointer = new PrimitiveModel(PRIM_CONE, tmpResource->param[0].getFloat());
444      break;
445    case MD2:
446      if(ResourceManager::isFile(fullName))
447      {
448        tmpResource->param[0] = param0;
449        tmpResource->pointer = new MD2Data(fullName, tmpResource->param[0].getString());
450        //               tmpResource->pointer = new MD2Model(fullName, tmpResource->secFileName);
451
452      }
453      break;
454#endif /* NO_MODEL */
455#ifndef NO_TEXT
456    case TTF:
457      if (param0 != MT_NULL)
458      {
459        assert(param0.getInt() >= 0);
460        tmpResource->param[0] = param0;
461      }
462      else
463        tmpResource->param[0] = FONT_DEFAULT_RENDER_SIZE;
464
465      if(isFile(fullName))
466        tmpResource->pointer = new Font(fullName, (unsigned int) tmpResource->param[0].getInt());
467      else
468        PRINTF(2)("%s does not exist in %s. Not loading Font\n", fileName, this->dataDir);
469      break;
470#endif /* NO_TEXT */
471#ifndef NO_AUDIO
472    case WAV:
473      if(isFile(fullName))
474        tmpResource->pointer = new SoundBuffer(fullName);
475      break;
476    case OGG:
477      if (isFile(fullName))
478        tmpResource->pointer = new OggPlayer(fullName);
479      break;
480#endif /* NO_AUDIO */
481#ifndef NO_TEXTURES
482    case IMAGE:
483      if (param0 != MT_NULL)
484        tmpResource->param[0] = param0;
485      else
486        tmpResource->param[0] = GL_TEXTURE_2D;
487      if(isFile(fullName))
488      {
489        PRINTF(4)("Image %s resides to %s\n", fileName, fullName);
490        tmpResource->pointer = new Texture(fullName);
491      }
492      else
493      {
494        std::vector<char*>::iterator imageDir;
495        for (imageDir = this->imageDirs.begin(); imageDir != this->imageDirs.end(); imageDir++)
496        {
497          char* imgName = new char[strlen(*imageDir)+strlen(fileName)+1];
498          sprintf(imgName, "%s%s", *imageDir, fileName);
499          if(isFile(imgName))
500          {
501            PRINTF(4)("Image %s resides to %s\n", fileName, imgName);
502            tmpResource->pointer = new Texture(imgName, tmpResource->param[0].getInt());
503            delete[] imgName;
504            break;
505          }
506          delete[] imgName;
507        }
508      }
509      if(!tmpResource)
510        PRINTF(2)("!!Image %s not Found!!\n", fileName);
511      break;
512#endif /* NO_TEXTURES */
513#ifndef NO_SHADERS
514    case SHADER:
515      if(ResourceManager::isFile(fullName))
516      {
517        if (param0 != MT_NULL)
518        {
519          MultiType param = param0; /// HACK
520          char* secFullName = ResourceManager::getFullName(param.getString());
521          if (ResourceManager::isFile(secFullName))
522          {
523            tmpResource->param[0] = secFullName;
524            tmpResource->pointer = new Shader(fullName, secFullName);
525          }
526          delete[] secFullName;
527        }
528        else
529        {
530          tmpResource->param[0] = param0;
531          tmpResource->pointer = new Shader(fullName, NULL);
532        }
533      }
534      break;
535#endif /* NO_SHADERS */
536    default:
537      tmpResource->pointer = NULL;
538      PRINTF(1)("No type found for %s.\n   !!This should not happen unless the Type is not supported yet. JUST DO IT!!\n", tmpResource->name);
539      break;
540  }
541  if (tmpResource->pointer != NULL)
542    this->resourceList.push_back(tmpResource);
543  delete[] fullName;
544
545
546  if (tmpResource->pointer != NULL)
547    return tmpResource;
548  else
549  {
550    PRINTF(2)("Resource %s could not be loaded\n", fileName);
551    delete[] tmpResource->name;
552    delete tmpResource;
553    return NULL;
554  }
555}
556
557/**
558 * @brief unloads a Resource
559 * @param pointer: The pointer to free
560 * @param prio: the PriorityLevel to unload this resource
561 * @returns true if successful (pointer found, and deleted), false otherwise
562*/
563bool ResourceManager::unload(BaseObject* pointer, ResourcePriority prio)
564{
565  if (pointer == NULL)
566    return false;
567  // if pointer is existent. and only one resource of this type exists.
568  Resource* tmpResource = this->locateResourceByPointer(pointer);
569  if (tmpResource != NULL)
570    return unload(tmpResource, prio);
571  else
572  {
573    PRINTF(2)("Resource not Found %p\n", pointer);
574    return false;
575  }
576}
577
578/**
579 * @brief unloads a Resource
580 * @param resource: The resource to unloade
581 * @param prio the PriorityLevel to unload this resource
582 * @returns true on success, false otherwise.
583*/
584bool ResourceManager::unload(Resource* resource, ResourcePriority prio)
585{
586  if (resource == NULL)
587    return false;
588  if (resource->count > 0)
589    resource->count--;
590
591  if (resource->prio <= prio)
592  {
593    if (resource->count == 0)
594    {
595      // deleting the Resource
596      switch(resource->type)
597      {
598#ifndef NO_MODEL
599        case OBJ:
600        case PRIM:
601          delete (Model*)resource->pointer;
602          break;
603        case MD2:
604          delete (MD2Data*)resource->pointer;
605          break;
606#endif /* NO_MODEL */
607#ifndef NO_AUDIO
608        case WAV:
609          delete (SoundBuffer*)resource->pointer;
610          break;
611        case OGG:
612          delete (OggPlayer*)resource->pointer;
613          break;
614#endif /* NO_AUDIO */
615#ifndef NO_TEXT
616        case TTF:
617          delete (Font*)resource->pointer;
618          break;
619#endif /* NO_TEXT */
620#ifndef NO_TEXTURES
621        case IMAGE:
622          delete (Texture*)resource->pointer;
623          break;
624#endif /* NO_TEXTURES */
625#ifndef NO_SHADERS
626        case SHADER:
627          delete (Shader*)resource->pointer;
628          break;
629#endif /* NO_SHADERS */
630        default:
631          PRINTF(2)("NOT YET IMPLEMENTED !!FIX FIX!!\n");
632          return false;
633          break;
634      }
635      // deleting the List Entry:
636      PRINTF(4)("Resource %s safely removed.\n", resource->name);
637      delete[] resource->name;
638      std::vector<Resource*>::iterator resourceIT = std::find(this->resourceList.begin(), this->resourceList.end(), resource);
639      this->resourceList.erase(resourceIT);
640      delete resource;
641    }
642    else
643      PRINTF(4)("Resource %s not removed, because there are still %d References to it.\n", resource->name, resource->count);
644  }
645  else
646    PRINTF(4)("not deleting resource %s because DeleteLevel to high\n", resource->name);
647  return true;
648}
649
650
651/**
652 * @brief unloads all alocated Memory of Resources with a pririty lower than prio
653 * @param prio The priority to delete
654*/
655bool ResourceManager::unloadAllByPriority(ResourcePriority prio)
656{
657  unsigned int removeCount;
658  for (unsigned int round = 0; round < 3; round++)
659  {
660    int index = this->resourceList.size() - 1;
661    removeCount = 0;
662    while (index >= 0)
663    {
664      if (this->resourceList[index]->prio <= prio)
665      {
666        if (this->resourceList[index]->count == 0)
667          unload(this->resourceList[index], prio);
668        else
669        {
670          PRINTF(2)("unable to unload %s because there are still %d references to it\n",
671                    this->resourceList[index]->name, this->resourceList[index]->count);
672          removeCount++;
673        }
674      }
675      index--;
676    }
677    if (removeCount == 0) break;
678  }
679}
680
681
682/**
683 * @brief Searches for a Resource by some information
684 * @param fileName: The name to look for
685 * @param type the Type of resource to locate.
686 * @param param0: an additional option to parse (see the constuctors for more help)
687 * @param param1: an additional option to parse (see the constuctors for more help)
688 * @param param2: an additional option to parse (see the constuctors for more help)
689 * @returns a Pointer to the Resource if found, NULL otherwise.
690*/
691Resource* ResourceManager::locateResourceByInfo(const char* fileName, ResourceType type,
692    const MultiType& param0, const MultiType& param1, const MultiType& param2) const
693{
694  std::vector<Resource*>::const_iterator resource;
695  for (resource = this->resourceList.begin(); resource != this->resourceList.end(); resource++)
696  {
697    if ((*resource)->type == type && !strcmp(fileName, (*resource)->name))
698    {
699      bool match = false;
700      switch (type)
701      {
702#ifndef NO_MODEL
703        case PRIM:
704        case OBJ:
705          if (param0 == MT_NULL)
706          {
707            if ((*resource)->param[0] == 1.0f)
708              match = true;
709          }
710          else if ((*resource)->param[0] == param0.getFloat())
711            match = true;
712          break;
713        case MD2:
714          if (param0 == MT_NULL)
715          {
716            if ((*resource)->param[0] == "")
717              match = true;
718          }
719          else if ((*resource)->param[0] == ((MultiType)param0).getString())
720            match = true;
721          break;
722#endif /* NO_MODEL */
723#ifndef NO_TEXT
724        case TTF:
725          if (param0 == MT_NULL)
726          {
727            if ((*resource)->param[0] == FONT_DEFAULT_RENDER_SIZE)
728              match = true;
729          }
730          else if ((*resource)->param[0] == param0.getInt())
731            match = true;
732          break;
733#endif /* NO_TEXT */
734#ifndef NO_SHADERS
735        case SHADER:
736          if (param0 == MT_NULL)
737          {
738            if ((*resource)->param[0] == "")
739              match = true;
740          }
741          else if ((*resource)->param[0] == ((MultiType)param0).getString())
742            match = true;
743#endif /* NO_SHADERS */
744#ifndef NO_TEXTURES
745        case IMAGE:
746          if (param0 == MT_NULL)
747          {
748            if ((*resource)->param[0] == GL_TEXTURE_2D)
749              match = true;
750          }
751          else if ((*resource)->param[0] ==  param0.getInt())
752            match = true;
753#endif /* NO_TEXTURES */
754        default:
755          match = true;
756          break;
757      }
758      if (match)
759      {
760        return (*resource);
761      }
762    }
763  }
764  return NULL;
765}
766
767/**
768 * @brief Searches for a Resource by Pointer
769 * @param pointer the Pointer to search for
770 * @returns a Pointer to the Resource if found, NULL otherwise.
771 */
772Resource* ResourceManager::locateResourceByPointer(const void* pointer) const
773{
774  //  Resource* enumRes = resourceList->enumerate();
775  std::vector<Resource*>::const_iterator resource;
776  for (resource = this->resourceList.begin(); resource != this->resourceList.end(); resource++)
777    if (pointer == (*resource)->pointer)
778      return (*resource);
779  return NULL;
780}
781
782char* ResourceManager::toResourcableString(unsigned int i)
783{
784  int len = strlen(ResourceManager::ResourceTypeToChar(this->resourceList[i]->type));
785  len += strlen(this->resourceList[i]->name);
786  if (this->resourceList[i]->param[0].getString()) len += strlen(this->resourceList[i]->param[0].getString()) +1;
787  if (this->resourceList[i]->param[1].getString()) len += strlen(this->resourceList[i]->param[1].getString()) +1;
788  if (this->resourceList[i]->param[2].getString()) len += strlen(this->resourceList[i]->param[2].getString()) +1;
789  len += 10;
790  char* tmp = new char[len];
791  tmp[0] = '\0';
792  strcat( tmp, ResourceManager::ResourceTypeToChar(this->resourceList[i]->type));
793  strcat(tmp,",");
794  strcat (tmp, this->resourceList[i]->name);
795  if (this->resourceList[i]->param[0].getString() && this->resourceList[i]->param[0].getString() != '\0')
796  {
797    strcat(tmp,",");
798    strcat( tmp, this->resourceList[i]->param[0].getString());
799  }
800  if (this->resourceList[i]->param[1].getString() && this->resourceList[i]->param[1].getString() != '\0')
801  {
802    strcat(tmp,",");
803    strcat( tmp, this->resourceList[i]->param[1].getString());
804  }
805  if (this->resourceList[i]->param[2].getString() && this->resourceList[i]->param[2].getString() != '\0')
806  {
807    strcat(tmp,",");
808    strcat( tmp, this->resourceList[i]->param[2].getString());
809  }
810  return tmp;
811}
812
813/**
814 * @brief caches a Resource from a ResourceableString created with the toResourcableString-function
815 * @param resourceableString the String to cache the resource from.
816 */
817bool ResourceManager::fromResourceableString(const char* resourceableString)
818{
819  SubString splits(resourceableString, ',');
820  splits.debug();
821  if (splits.getCount() == 2)
822    this->cache(splits[1], ResourceManager::stringToResourceType(splits[0]),
823                RP_LEVEL);
824  else if (splits.getCount() == 3)
825    return this->cache(splits[1], ResourceManager::stringToResourceType(splits[0]),
826                RP_LEVEL, splits[2]);
827  else if (splits.getCount() == 4)
828    return this->cache(splits[1], ResourceManager::stringToResourceType(splits[0]),
829                RP_LEVEL, splits[2], splits[3]);
830  else if (splits.getCount() == 5)
831    return this->cache(splits[1], ResourceManager::stringToResourceType(splits[0]),
832                RP_LEVEL, splits[2], splits[3], splits[4]);
833}
834
835
836/**
837 * @brief Checks if it is a Directory
838 * @param directoryName the Directory to check for
839 * @returns true if it is a directory/symlink false otherwise
840*/
841bool ResourceManager::isDir(const char* directoryName)
842{
843  if (directoryName == NULL)
844    return false;
845
846  char* tmpDirName = NULL;
847  struct stat status;
848
849  // checking for the termination of the string given. If there is a "/" at the end cut it away
850  if (directoryName[strlen(directoryName)-1] == '/' ||
851      directoryName[strlen(directoryName)-1] == '\\')
852  {
853    tmpDirName = new char[strlen(directoryName)];
854    strncpy(tmpDirName, directoryName, strlen(directoryName)-1);
855    tmpDirName[strlen(directoryName)-1] = '\0';
856  }
857  else
858  {
859    tmpDirName = new char[strlen(directoryName)+1];
860    strcpy(tmpDirName, directoryName);
861  }
862
863  if(!stat(tmpDirName, &status))
864  {
865    if (status.st_mode & (S_IFDIR
866#ifndef __WIN32__
867                          | S_IFLNK
868#endif
869                         ))
870    {
871      delete[] tmpDirName;
872      return true;
873    }
874    else
875    {
876      delete[] tmpDirName;
877      return false;
878    }
879  }
880  else
881  {
882    delete[] tmpDirName;
883    return false;
884  }
885}
886
887/**
888 * @brief Checks if the file is either a Regular file or a Symlink
889 * @param fileName the File to check for
890 * @returns true if it is a regular file/symlink, false otherwise
891*/
892bool ResourceManager::isFile(const char* fileName)
893{
894  if (fileName == NULL)
895    return false;
896  char* tmpFileName = ResourceManager::homeDirCheck(fileName);
897  // actually checks the File
898  struct stat status;
899  if (!stat(tmpFileName, &status))
900  {
901    if (status.st_mode & (S_IFREG
902#ifndef __WIN32__
903                          | S_IFLNK
904#endif
905                         ))
906    {
907      delete[] tmpFileName;
908      return true;
909    }
910    else
911    {
912      delete[] tmpFileName;
913      return false;
914    }
915  }
916  else
917  {
918    delete[] tmpFileName;
919    return false;
920  }
921}
922
923/**
924 * @brief touches a File on the disk (thereby creating it)
925 * @param fileName The file to touch
926*/
927bool ResourceManager::touchFile(const char* fileName)
928{
929  char* tmpName = ResourceManager::homeDirCheck(fileName);
930  if (tmpName == NULL)
931    return false;
932  FILE* stream;
933  if( (stream = fopen (tmpName, "w")) == NULL)
934  {
935    PRINTF(1)("could not open %s fro writing\n", fileName);
936    delete[] tmpName;
937    return false;
938  }
939  fclose(stream);
940
941  delete[] tmpName;
942}
943
944/**
945 * @brief deletes a File from disk
946 * @param fileName the File to delete
947*/
948bool ResourceManager::deleteFile(const char* fileName)
949{
950  if (fileName == NULL)
951    return false;
952  char* tmpName = ResourceManager::homeDirCheck(fileName);
953  unlink(tmpName);
954  delete[] tmpName;
955}
956
957/**
958 * @param name the Name of the file to check
959 * @returns The name of the file, including the HomeDir
960 * IMPORTANT: this has to be deleted from the outside
961 */
962char* ResourceManager::homeDirCheck(const char* name)
963{
964  if (name == NULL)
965    return NULL;
966  char* retName;
967  if (!strncmp(name, "~/", 2))
968  {
969    char tmpFileName[500];
970#ifdef __WIN32__
971    strcpy(tmpFileName, getenv("USERPROFILE"));
972#else
973    strcpy(tmpFileName, getenv("HOME"));
974#endif
975    retName = new char[strlen(tmpFileName)+strlen(name)];
976    sprintf(retName, "%s%s", tmpFileName, name+1);
977  }
978  else
979  {
980    retName = new char[strlen(name)+1];
981    strcpy(retName, name);
982  }
983  return retName;
984}
985
986/**
987 * @param fileName the Name of the File to check
988 * @returns The full name of the file, including the DataDir, and NULL if the file does not exist
989 * !!IMPORTANT: this has to be deleted from the outside!!
990*/
991char* ResourceManager::getFullName(const char* fileName)
992{
993  if (fileName == NULL || ResourceManager::getInstance()->getDataDir() == NULL)
994    return NULL;
995
996  char* retName = new char[strlen(ResourceManager::getInstance()->getDataDir())
997                           + strlen(fileName) + 1];
998  sprintf(retName, "%s%s", ResourceManager::getInstance()->getDataDir(), fileName);
999  if (ResourceManager::isFile(retName) || ResourceManager::isDir(retName))
1000    return retName;
1001  else
1002  {
1003    delete[] retName;
1004    return NULL;
1005  }
1006}
1007
1008
1009/**
1010 * @brief checks wether a file is in the DataDir.
1011 * @param fileName the File to check if it is in the Data-Dir structure.
1012 * @returns true if the file exists, false otherwise
1013 */
1014bool ResourceManager::isInDataDir(const char* fileName)
1015{
1016  if (fileName == NULL || ResourceManager::getInstance()->getDataDir() == NULL)
1017    return false;
1018
1019  bool retVal = false;
1020  char* checkFile = new char[strlen(ResourceManager::getInstance()->getDataDir())
1021                             + strlen(fileName) + 1];
1022  sprintf(checkFile, "%s%s", ResourceManager::getInstance()->getDataDir(), fileName);
1023
1024  if (ResourceManager::isFile(checkFile) || ResourceManager::isDir(checkFile))
1025    retVal = true;
1026  else
1027    retVal = false;
1028  delete[] checkFile;
1029  return retVal;
1030}
1031
1032
1033/**
1034 * @brief outputs debug information about the ResourceManager
1035 */
1036void ResourceManager::debug() const
1037{
1038  PRINT(0)("=RM===================================\n");
1039  PRINT(0)("= RESOURCE-MANAGER DEBUG INFORMATION =\n");
1040  PRINT(0)("======================================\n");
1041  // if it is not initialized
1042  PRINT(0)(" Reference is: %p\n", ResourceManager::singletonRef);
1043  PRINT(0)(" Data-Directory is: %s\n", this->dataDir);
1044  PRINT(0)(" List of Image-Directories: ");
1045  std::vector<char*>::const_iterator imageDir;
1046  for (imageDir = this->imageDirs.begin(); imageDir != this->imageDirs.end(); imageDir++)
1047    PRINT(0)("%s ", (*imageDir));
1048  PRINT(0)("\n");
1049
1050  PRINT(0)("List of all stored Resources:\n");
1051  std::vector<Resource*>::const_iterator resource;
1052  for (resource = this->resourceList.begin(); resource != this->resourceList.end(); resource++)
1053
1054  {
1055    PRINT(0)("-----------------------------------------\n");
1056    PRINT(0)("Name: %s; References: %d; Type: %s ", (*resource)->name, (*resource)->count, ResourceManager::ResourceTypeToChar((*resource)->type));
1057
1058    PRINT(0)("gets deleted at ");
1059    switch((*resource)->prio)
1060    {
1061      default:
1062      case RP_NO:
1063        PRINT(0)("first posibility (0)\n");
1064        break;
1065      case RP_LEVEL:
1066        PRINT(0)("the end of the Level (1)\n");
1067        break;
1068      case RP_CAMPAIGN:
1069        PRINT(0)("the end of the campaign (2)\n");
1070        break;
1071      case RP_GAME:
1072        PRINT(0)("when leaving the game (3)\n");
1073        break;
1074    }
1075  }
1076
1077
1078
1079  PRINT(0)("==================================RM==\n");
1080}
1081
1082
1083/**
1084 * @brief converts a ResourceType into the corresponding String
1085 * @param type the ResourceType to translate
1086 * @returns the converted String.
1087 */
1088const char* ResourceManager::ResourceTypeToChar(ResourceType type)
1089{
1090  return ResourceManager::resourceNames[type];
1091}
1092
1093/**
1094 * @brief converts a String into a ResourceType (good for loading)
1095 * @param resourceType the name of the Type
1096 * @returns the Number of the Type, or 0 (defautl) if not found.
1097 */
1098ResourceType ResourceManager::stringToResourceType(const char* resourceType)
1099{
1100  assert(resourceType != NULL);
1101  for (unsigned int i = 0; i < RESOURCE_TYPE_SIZE; i++)
1102    if (!strcmp(resourceType, ResourceManager::resourceNames[i]))
1103      return (ResourceType)i;
1104  return (ResourceType)0;
1105}
1106
1107/**
1108 * The Names of the ResourceTypes
1109 */
1110const char* ResourceManager::resourceNames[] =
1111  {
1112#ifndef NO_MODEL
1113    "ObjectModel",
1114    "PrimitiveModel",
1115    "MD2-Data",
1116#endif
1117#ifndef NO_TEXT
1118    "Font",
1119#endif
1120#ifndef NO_AUDIO
1121    "Wav",
1122    "mp3",
1123    "ogg",
1124#endif
1125#ifndef NO_TEXTURES
1126    "Texture",
1127#endif
1128#ifndef NO_SHADERS
1129    "Shader",
1130#endif
1131
1132  };
Note: See TracBrowser for help on using the repository browser.