Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 29, 2007, 4:21:30 PM (17 years ago)
Author:
rgrieder
Message:
  • adjusted the entire source to compile under windows visual studio too:
  • added some ugly conversions
  • changed some illegal code pieces (gcc however accepted it)
  • added a few files from reto's framework to evade linker errors (no more dynamic linking)
  • inserted some 'return true' to justify the return type
  • excluded the levelLoader in the orxonox.cc (couldn't make it work, parsing error)
  • wrote about 5 code #branches to compensate for missing usleep() under windows
Location:
code/branches/FICN
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN

    • Property svn:ignore set to
      FICN.sln
      FICN.ncb
      FICN.vcproj
      FICN.vcproj.RGRIEDERT60.rgrieder.user
      FICN.suo
      obj
  • code/branches/FICN/src/loader/LightManager.cc

    r341 r346  
    77        LightManager::LightManager()
    88        {
    9                 vector<Light> this->elements_ = new vector<Light>;
     9    std::vector<Light> elements_ = *(new std::vector<Light>);
    1010        }
    1111       
     
    1414                if (!xml.isEmpty())
    1515                {
    16                         int nLights = xml.nChildNode("light");
     16                        int nLights = xml.nChildNode((const wchar_t*)"light");
    1717                        for (int i=0; i<nLights;i++)
    1818                        {
    19                                 Light l = new Light(xml.getChildNode("light",i));
    20                                 this->elements_.append(l);
     19                                Light l = *(new Light(xml.getChildNode((const wchar_t*)"light",i)));
     20        this->elements_.insert(elements_.end(),l);
    2121                        }
    2222                }               
Note: See TracChangeset for help on using the changeset viewer.