Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/util/loading/resource.cc @ 9793

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

orxonox/new_class_id: storing works better now

File size: 4.7 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: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_LOAD
17
18#include "resource.h"
19#include "new_resource_manager.h"
20
21#include "debug.h"
22
23ObjectListDefinition(NewResource);
24
25
26/**
27 * standard constructor
28*/
29NewResource::NewResource (Resources::Type* type)
30    : _pointer(NULL), _type(type)
31{
32  this->registerObject(this, NewResource::_objectList);
33}
34
35/**
36 * standard deconstructor
37 */
38NewResource::~NewResource ()
39{
40  // delete what has to be deleted here
41}
42
43
44std::string NewResource::locateFile(const std::string& fileName) const
45{
46  if (File(fileName).exists())
47    return fileName;
48  else if ((NewResourceManager::getInstance()->mainGlobalPath() + File(fileName)).exists() )
49    return (NewResourceManager::getInstance()->mainGlobalPath() + File(fileName)).name();
50
51  std::string locatedFile;
52  locatedFile = locateFileInSubDir(Directory("/home/bensch/svn/orxonox/data/"), fileName);
53  if (!locatedFile.empty())
54  {
55    printf("FILE found %s\n", locatedFile.c_str());
56    return locatedFile;
57  }
58  return std::string("/home/bensch/svn/orxonox/data/") + fileName;
59}
60
61/**
62 * @brief tests in all the SubDirectories defined in Resource under Directory if the fileName exists.
63 * @param directory the directory to in what to search for all subdirectories for.
64 * @param fileName the Name of the File to query for
65 * @return true on success.
66 */
67std::string NewResource::locateFileInSubDir(const Directory& directory, const std::string& fileName) const
68{
69  std::vector<Directory>::const_iterator it;
70  for (it = this->_type->resourceSubPaths().begin(); it != this->_type->resourceSubPaths().end(); ++it)
71  {
72    Directory dir = directory + (*it);
73    File file = dir + File(fileName);
74    printf("Testing %s (from %s in directory %s)\n", file.name().c_str(), fileName.c_str(), dir.name().c_str());
75    if ((dir+ File(fileName)).exists())
76      return (dir+File(fileName)).name();
77  }
78  return "";
79}
80
81
82
83Resources::StorePointer* NewResource::acquireResource(const std::string& loadString)
84{
85  //const Resources::Type* const type = Resources::_resourceTypes[this->_type->id()];
86
87  for (unsigned int i = 0; i < _type->storedResources().size(); ++i)
88  {
89    if (_type->storedResources()[i]->loadString() == loadString)
90      return _type->storedResources()[i];
91  }
92
93  return NULL;
94}
95
96
97void NewResource::addResource(Resources::StorePointer* pointer)
98{
99  this->_type->addResource(pointer);
100}
101
102
103
104
105
106
107///////////////////
108//// KEEPLEVEL ////
109///////////////////
110std::vector<std::string> Resources::KeepLevel::_keepLevelNames;
111void Resources::KeepLevel::defineKeepLevelName(unsigned int level, const std::string& name)
112{
113  if (_keepLevelNames.size() <= level)
114    _keepLevelNames.resize(level+1);
115  _keepLevelNames[level] = name;
116}
117
118
119///////////////////////
120//// STORE POINTER ////
121///////////////////////
122Resources::StorePointer::StorePointer(const std::string& loadString, const Resources::KeepLevel& keeplevel)
123  : _loadString(loadString), _keepLevel(keeplevel)
124{}
125
126
127
128
129//////////////
130//// TYPE ////
131//////////////
132Resources::Type::Type(const std::string& typeName)
133    : _id(-1), _typeName(typeName)
134{
135  NewResourceManager::getInstance()->registerType(this);
136  printf("%s\n", typeName.c_str());
137}
138
139void Resources::Type::addResource(Resources::StorePointer* resource)
140{
141  this->_storedResources.push_back(resource);
142
143}
144
145bool Resources::Type::addResourcePath(const std::string& path)
146{
147  std::vector<Directory>::const_iterator it;
148  for (it = this->_resourcePaths.begin(); it != this->_resourcePaths.end(); ++it)
149    if ((*it) == path)
150      return false;
151  this->_resourcePaths.push_back(path);
152  return true;
153
154}
155
156bool Resources::Type::addResourceSubPath(const std::string& subPath)
157{
158  std::vector<Directory>::const_iterator it;
159  for (it = this->_resourceSubPaths.begin(); it != this->_resourceSubPaths.end(); ++it)
160    if ((*it) == subPath)
161      return false;
162  this->_resourceSubPaths.push_back(subPath);
163  return true;
164}
165
166
167void Resources::Type::setID(int id)
168{
169  this->_id = id;
170}
171
172
173void Resources::Type::debug() const
174{
175  PRINT(0)(" ResourceType '%s' with ID %d stores %d Resources\n", this->_typeName.c_str(), this->_id, this->_storedResources.size());
176  PRINT(0)("  Paths:\n");
177  for (unsigned int i = 0; i < this->_resourcePaths.size(); ++i)
178    PRINT(0)("    %s\n", this->_resourcePaths[i].name().c_str());
179  PRINT(0)("  Sub-Paths:\n");
180  for (unsigned int i = 0; i < this->_resourceSubPaths.size(); ++i)
181    PRINT(0)("    %s\n", this->_resourceSubPaths[i].name().c_str());
182
183}
Note: See TracBrowser for help on using the repository browser.