Last change
on this file since 489 was
347,
checked in by rgrieder, 17 years ago
|
- fixed a bug: under windows, XML uses wchar_t instead of char, but can use char
—> commented a line in xml/xmlParser.h according to description in that file
- was able to add the xml parser again to orxonox.cc thanks to the above modification
|
File size:
403 bytes
|
Rev | Line | |
---|
[164] | 1 | |
---|
[341] | 2 | #include "xml/xmlParser.h" |
---|
[164] | 3 | #include "Light.h" |
---|
| 4 | |
---|
| 5 | namespace light |
---|
| 6 | { |
---|
| 7 | Light::Light() |
---|
| 8 | { |
---|
| 9 | |
---|
| 10 | } |
---|
[346] | 11 | |
---|
| 12 | Light::~Light() |
---|
| 13 | { |
---|
| 14 | } |
---|
[164] | 15 | |
---|
| 16 | Light::Light(XMLNode xml) |
---|
| 17 | { |
---|
| 18 | this->loadParams(xml); |
---|
| 19 | } |
---|
| 20 | |
---|
| 21 | void Light::loadParams(XMLNode xml) |
---|
| 22 | { |
---|
| 23 | // Here comes the tricky part... convert strings to int |
---|
[347] | 24 | const char* diffuse = xml.getAttribute("diffuse-color"); |
---|
| 25 | const char* coor = xml.getAttribute("abs-coor"); |
---|
[164] | 26 | } |
---|
| 27 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.