Changeset 677 for code/branches/FICN/src/loader
- Timestamp:
- Dec 23, 2007, 7:19:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/loader/LevelLoader.cc
r663 r677 136 136 mLoadOverlay->show(); 137 137 138 COUT(0) << "\n\n\nThis is Orxonox\nthe hottest 3D action shooter ever to exist\n\n\n"; 139 COUT(0) << "Level: " << name() << "\nDescription:" << description() << "\nImage:"<<image()<<"\n\n\n"; 140 COUT(4) << "Backgroundcolor: " << loadingBackgroundColor_ << "\nBackgroundimage:" << loadingBackgroundImage_ << "\n\n\n"; 138 COUT(0) << "This is Orxonox" << std::endl; 139 COUT(0) << "the hottest 3D action shooter ever to exist" << std::endl; 140 COUT(0) << "Level: " << name() << std::endl << "Description:" << description() << std::endl << "Image:" << image() << std::endl; 141 COUT(4) << "Backgroundcolor: " << loadingBackgroundColor_ << std::endl << "Backgroundimage:" << loadingBackgroundImage_ << std::endl; 141 142 142 143 } … … 162 163 if (elemVal == "ogg") 163 164 { 164 COUT(0) << "Adding sound "<< tElem->Attribute("src") << "\n\n\n";165 COUT(3) << "Adding sound "<< tElem->Attribute("src") << std::endl; 165 166 166 167 auMan->ambientAdd(tElem->Attribute("src")); … … 186 187 if (id) 187 188 { 188 189 189 orxonox::BaseObject* obj = id->fabricate(); 190 obj->loadParams(tElem); 190 191 } 191 192 else 192 193 { 193 COUT(2) << "Warning: '"<< tElem->Value() <<"' is not a valid classname. \n";194 COUT(2) << "Warning: '"<< tElem->Value() <<"' is not a valid classname." << std::endl; 194 195 } 195 196 } … … 203 204 204 205 205 COUT(0) << "Loading finished! \n\n\n\n\n";206 COUT(0) << "Loading finished!" << std::endl << std::endl; 206 207 } 207 208 }
Note: See TracChangeset
for help on using the changeset viewer.