Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7123 in orxonox.OLD for trunk/src/lib/graphics/importer/md2Model.cc


Ignore:
Timestamp:
Feb 11, 2006, 8:57:26 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: some cleanup before the new tag

  1. BaseObject isA was wrong… every subclass was detected as any other subclass
  2. Classes get unloaded again as they should
  3. some minor fixes (Material* → Material) and some other cleanups
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/graphics/importer/md2Model.cc

    r7114 r7123  
    7777MD2Model::MD2Model(const char* modelFileName, const char* skinFileName, float scale)
    7878{
     79  this->setClassID(CL_MD2_MODEL, "MD2Model");
    7980  /* this creates the data container via ressource manager */
    8081  this->data = (MD2Data*)ResourceManager::getInstance()->load(modelFileName, MD2, RP_GAME, skinFileName, scale);
     
    222223  glCullFace(GL_BACK);
    223224
    224   this->data->material->select();
     225  this->data->material.select();
    225226
    226227  /* draw the triangles */
     
    263264//   this->processLighting();
    264265//   this->interpolate(/*this->verticesList*/);
    265   this->data->material->select();
     266  this->data->material.select();
    266267
    267268  /* draw the triangles */
     
    409410  delete [] this->pTexCoor;
    410411
    411   delete this->material;
    412412}
    413413
     
    518518  strcpy(this->skinFileName, fileName);
    519519
    520   this->material = new Material("md2ModelTest");
    521   this->material->setDiffuseMap(fileName);
    522   this->material->setIllum(3);
    523   this->material->setAmbient(1.0, 1.0, 1.0);
    524 }
     520  this->material.setName("md2ModelMaterial");
     521  this->material.setDiffuseMap(fileName);
     522  this->material.setIllum(3);
     523  this->material.setAmbient(1.0, 1.0, 1.0);
     524}
Note: See TracChangeset for help on using the changeset viewer.