Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/importer/object.cc @ 2931

Last change on this file since 2931 was 2931, checked in by bensch, 20 years ago

orxonox/trunk/importer: included mouse-speed-turning (touch the screen and the object will start to move). Also included windows.h if in WIN32. general cleanup of framework

File size: 18.3 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#include "object.h"
17
18/**
19   \brief Creates a 3D-Object, but does not load any 3D-models
20   pretty useless
21*/
22Object::Object ()
23{
24
25  initialize();
26
27  BoxObject();
28
29  finalize();
30}
31
32/**
33   \brief Crates a 3D-Object and loads in a File
34   \param fileName file to parse and load (must be a .obj file)
35*/
36Object::Object(char* fileName)
37{
38  initialize();
39
40  importFile (fileName);
41
42  finalize();
43}
44
45/**
46   \brief Crates a 3D-Object, loads in a File and scales it.
47   \param fileName file to parse and load (must be a .obj file)
48   \param scaling The factor that the object will be scaled with.
49*/
50
51Object::Object(char* fileName, float scaling)
52{
53  initialize();
54  scaleFactor = scaling;
55
56  importFile (fileName);
57
58  finalize();
59}
60
61/**
62   \brief deletes an Object
63*/
64Object::~Object()
65{
66  if (verbose >= 2)
67    printf ("Deleting display List.\n");
68  Group* walker = firstGroup;
69  while (walker != NULL)
70    {
71      glDeleteLists (walker->listNumber, 1);
72      Group* lastWalker = walker;
73      walker = walker->nextGroup;
74      delete lastWalker;
75    } 
76}
77
78/**
79    \brief initializes the Object
80    This Function initializes all the needed arrays, Lists and clientStates
81*/
82bool Object::initialize (void)
83{
84  if (verbose >=3)
85    printf("new 3D-Object is being created\n"); 
86
87  // setting the start group;
88  firstGroup = new Group;
89  currentGroup = firstGroup;
90  groupCount = 0;
91 
92  initGroup (currentGroup);
93  mtlFileName = "";
94  scaleFactor = 1;
95  material = new Material();
96
97  glEnableClientState (GL_VERTEX_ARRAY);
98  //  glEnableClientState (GL_NORMAL_ARRAY);
99  //  glEnableClientState (GL_TEXTURE_COORD_ARRAY);
100
101
102  return true;
103}
104
105/**
106   \brief Imports a obj file and handles the the relative location
107   \param fileName The file to import
108*/
109bool Object::importFile (char* fileName)
110{
111  if (verbose >=3)
112    printf("preparing to read in file: %s\n", fileName);   
113  objFileName = fileName;
114  this->readFromObjFile (objFileName);
115  return true;
116}
117
118/**
119  \brief finalizes an Object.
120   This funcion is needed, to close the glList and all the other lists.
121*/
122bool Object::finalize(void)
123{
124  //  if (verbose >=3)
125    printf("finalizing the 3D-Object\n"); 
126  finalizeGroup (currentGroup);
127  if (material != NULL)
128    delete material;
129  return true;
130}
131
132/**
133   \brief Draws the Objects of all Groups.
134   It does this by just calling the Lists that must have been created earlier.
135*/
136void Object::draw (void)
137{
138  if (verbose >=2)
139    printf("drawing the 3D-Objects\n"); 
140  Group* walker = firstGroup;
141  while (walker != NULL)
142    {
143      if (verbose >= 3)
144        printf ("Drawing object %s\n", walker->name);
145      glCallList (walker->listNumber);
146      walker = walker->nextGroup;
147    }
148}
149
150/**
151   \brief Draws the Object number groupNumber
152   It does this by just calling the List that must have been created earlier.
153   \param groupNumber The number of the group that will be displayed.
154*/
155void Object::draw (int groupNumber)
156{
157  if (groupNumber >= groupCount)
158    {
159      if (verbose>=2)
160        printf ("You requested object number %i, but this File only contains of %i Objects.\n", groupNumber-1, groupCount);
161      return;
162    }
163  if (verbose >=2)
164    printf("drawing the requested 3D-Objects if found.\n"); 
165  Group* walker = firstGroup;
166  int counter = 0;
167  while (walker != NULL)
168    {
169      if (counter == groupNumber)
170        {
171          if (verbose >= 2)
172            printf ("Drawing object number %s named %s\n", counter, walker->name);
173          glCallList (walker->listNumber);
174          return;
175        }
176      ++counter;
177      walker = walker->nextGroup;
178    }
179  if (verbose >= 2)
180    printf("Object number %i in %s not Found.\n", groupNumber, objFileName);
181  return;
182
183}
184
185/**
186   \brief Draws the Object with a specific groupname
187   It does this by just calling the List that must have been created earlier.
188   \param groupName The name of the group that will be displayed.
189*/
190void Object::draw (char* groupName)
191{
192  if (verbose >=2)
193    printf("drawing the requested 3D-Objects if found.\n"); 
194  Group* walker = firstGroup;
195  while (walker != NULL)
196    {
197      if (!strcmp(walker->name, groupName))
198        {
199          if (verbose >= 2)
200            printf ("Drawing object %s\n", walker->name);
201          glCallList (walker->listNumber);
202          return;
203        }
204      walker = walker->nextGroup;
205    }
206  if (verbose >= 2)
207    printf("Object Named %s in %s not Found.\n", groupName, objFileName);
208  return;
209}
210
211/**
212   \returns Count of the Objects in this File
213*/
214int Object::getGroupCount (void)
215{
216  return groupCount;
217}
218
219/**
220   \brief initializes a new Group object
221*/
222bool Object::initGroup(Group* group)
223{
224  if (verbose >= 2)
225    printf("Adding new Group\n");
226  group->name = "";
227  group->faceMode = -1;
228  group->faceCount =0; 
229  if ((group->listNumber = glGenLists(1)) == 0 )
230    {
231      printf ("list could not be created for this Object\n");
232      return false;
233    }
234 
235  if (groupCount == 0)
236    {
237      group->firstVertex = 0;
238      group->firstNormal = 0;
239      group->firstNormal = 0;
240    }
241  else
242    {
243      group->firstVertex = currentGroup->firstVertex + currentGroup->vertices->getCount()/3;
244      group->firstNormal = currentGroup->firstNormal + currentGroup->normals->getCount()/3;
245      group->firstVertexTexture = currentGroup->firstVertexTexture + currentGroup->vTexture->getCount()/2;
246    }
247  if (verbose >=2)
248    printf ("Creating new Arrays, with starting points v:%i, vt:%i, vn:%i .\n", group->firstVertex, group->firstVertexTexture, group->firstNormal);
249  group->vertices = new Array();
250  group->normals = new Array();
251  group->vTexture = new Array();
252
253  glNewList (group->listNumber, GL_COMPILE);
254}
255
256/**
257   \brief finalizes a Group.
258   \param group the group to finalize.
259*/
260bool Object::finalizeGroup(Group* group)
261{
262  if (verbose >=2)
263    printf ("Finalize group %s.\n", group->name);
264  glEnd();
265  glEndList();
266}
267/**
268   \brief deletes the Arrays of the Group to save space.
269   \param group the group to delete the arrays from.
270*/
271bool Object::cleanupGroup(Group* group)
272{
273  if (verbose >=2)
274    printf ("cleaning up group %s.\n", group->name);
275 
276  delete group->vertices;
277  delete group->normals;
278  delete group->vTexture;
279}
280
281/**
282   \brief Reads in the .obj File and sets all the Values.
283   This function does read the file, parses it for the occurence of things like vertices, faces and so on, and executes the specific tasks
284   \param fileName the File that will be parsed (.obj-file)
285*/
286bool Object::readFromObjFile (char* fileName)
287{
288  OBJ_FILE = new ifstream(fileName);
289  if (!OBJ_FILE->is_open())
290    {
291      if (verbose >=1)
292        printf ("unable to open .OBJ file: %s\n Loading Box Object instead.\n", fileName);
293      BoxObject();
294      return false;
295    }
296  objFileName = fileName;
297  char Buffer[10000];
298  while(!OBJ_FILE->eof())
299    {
300      OBJ_FILE->getline(Buffer, 10000);
301      if (verbose >=4)
302        printf ("Read input line: %s\n",Buffer);
303     
304
305      // case vertice
306      if (!strncmp(Buffer, "v ", 2))
307        {
308          readVertex(Buffer+2);
309        }
310
311      // case face
312      else if (!strncmp(Buffer, "f ", 2))
313        {
314          readFace (Buffer+2);
315        }
316     
317      else if (!strncmp(Buffer, "mtllib", 6))
318        {
319          readMtlLib (Buffer+7);
320        }
321
322      else if (!strncmp(Buffer, "usemtl", 6))
323        {
324          readUseMtl (Buffer+7);
325        }
326
327      // case VertexNormal
328      else if (!strncmp(Buffer, "vn ", 2))
329      {
330        readVertexNormal(Buffer+3);
331      }
332
333      // case VertexTextureCoordinate
334      else if (!strncmp(Buffer, "vt ", 2))
335      {
336        readVertexTexture(Buffer+3);
337      }
338      // case group
339      else if (!strncmp(Buffer, "g", 1))
340        {
341          readGroup (Buffer+2);
342        }
343    }
344  OBJ_FILE->close();
345  return true;
346
347}
348
349/**
350   \brief parses a vertex-String
351   If a vertex line is found this function will inject it into the vertex-Array
352   \param vertexString The String that will be parsed.
353*/
354bool Object::readVertex (char* vertexString)
355{
356  readingVertices = true;
357  char subbuffer1[20];
358  char subbuffer2[20];
359  char subbuffer3[20];
360  sscanf (vertexString, "%s %s %s", subbuffer1, subbuffer2, subbuffer3);
361  if (verbose >= 3)
362    printf ("reading in a vertex: %s %s %s\n", subbuffer1, subbuffer2, subbuffer3);
363  currentGroup->vertices->addEntry(atof(subbuffer1)*scaleFactor, atof(subbuffer2)*scaleFactor, atof(subbuffer3)*scaleFactor);
364  return true;
365}
366
367/**
368   \brief parses a face-string
369   If a face line is found this function will add it to the glList.
370   The function makes a difference between QUADS and TRIANGLES, and will if changed re-open, set and re-close the gl-processe.
371   \param faceString The String that will be parsed.
372*/
373bool Object::readFace (char* faceString)
374{
375  // finalize the Arrays;
376  if (readingVertices == true)
377    {
378      currentGroup->vertices->finalizeArray();
379      glVertexPointer(3, GL_FLOAT, 0, currentGroup->vertices->getArray());
380      currentGroup->normals->finalizeArray();
381      glNormalPointer(GL_FLOAT, 0, currentGroup->normals->getArray());
382      currentGroup->vTexture->finalizeArray();
383    }
384
385  readingVertices = false;
386  currentGroup->faceCount++;
387  char subbuffer1[20];
388  char subbuffer2[20];
389  char subbuffer3[20];
390  char subbuffer4[20] ="";
391  sscanf (faceString, "%s %s %s %s", subbuffer1, subbuffer2, subbuffer3, subbuffer4);
392  if (!strcmp(subbuffer4, ""))
393    {
394      if (currentGroup->faceMode != 3)
395        {
396          if (currentGroup->faceMode != -1)
397            glEnd();
398          glBegin(GL_TRIANGLES);
399        }
400     
401      currentGroup->faceMode = 3;
402      if (verbose >=3)
403        printf ("found triag: %s, %s, %s\n", subbuffer1, subbuffer2, subbuffer3);
404      addGLElement(subbuffer1);
405      addGLElement(subbuffer2);
406      addGLElement(subbuffer3);
407      return true;
408    }
409  else
410    {
411      if (currentGroup->faceMode != 4)
412        {
413          if (currentGroup->faceMode != -1)
414            glEnd();
415          glBegin(GL_QUADS);
416        }
417      currentGroup->faceMode = 4;
418      if (verbose >=3 )
419        printf ("found quad: %s, %s, %s, %s\n", subbuffer1, subbuffer2, subbuffer3, subbuffer4);
420      addGLElement(subbuffer1);
421      addGLElement(subbuffer2);
422      addGLElement(subbuffer3);
423      addGLElement(subbuffer4);
424      return true;
425    }
426}
427
428/**
429   \brief Adds a Face-element (one vertex of a face) with all its information.
430   It does this by searching:
431   1. The Vertex itself
432   2. The VertexNormale
433   3. The VertexTextureCoordinate
434   merging this information, the face will be drawn.
435
436*/
437bool Object::addGLElement (char* elementString)
438{
439  if (verbose >=3)
440    printf ("importing grafical Element to openGL\n");
441  char* vertex = elementString;
442
443  char* texture;
444  texture = strstr (vertex, "/");
445  texture[0] = '\0';
446  texture ++;
447  if (verbose>=3)
448    printf ("includeing texture #%i, and mapping it to group texture #%i, textureArray has %i entries.\n", atoi(texture), (atoi(texture)-1 - currentGroup->firstVertexTexture)*3, currentGroup->vTexture->getCount());
449  glTexCoord2fv(currentGroup->vTexture->getArray()+(atoi(texture)-1 - currentGroup->firstVertexTexture)*2);
450
451  char* normal;
452  if ((normal = strstr (texture, "/")) !=NULL)
453    {
454      normal[0] = '\0';
455      normal ++;
456      //glArrayElement(atoi(vertex)-1);
457      glNormal3fv(currentGroup->normals->getArray() +(atoi(normal)-1 - currentGroup->firstNormal)*3);
458    }
459  if (verbose>=3)
460    printf ("includeing vertex #%i, and mapping it to group vertex #%i, vertexArray has %i entries.\n", atoi(vertex), (atoi(vertex)-1 - currentGroup->firstVertex)*3, currentGroup->vertices->getCount());
461  glVertex3fv(currentGroup->vertices->getArray() +(atoi(vertex)-1 - currentGroup->firstVertex)*3);
462
463}
464
465/**
466   \brief parses a vertexNormal-String
467   If a vertexNormal line is found this function will inject it into the vertexNormal-Array
468   \param normalString The String that will be parsed.
469*/
470bool Object::readVertexNormal (char* normalString)
471{
472  readingVertices = true;
473  char subbuffer1[20];
474  char subbuffer2[20];
475  char subbuffer3[20];
476  sscanf (normalString, "%s %s %s", subbuffer1, subbuffer2, subbuffer3);
477  if (verbose >=3 )
478    printf("found vertex-Normal %s, %s, %s\n", subbuffer1,subbuffer2,subbuffer3);
479  currentGroup->normals->addEntry(atof(subbuffer1), atof(subbuffer2), atof(subbuffer3));
480  return true;
481}
482
483/**
484   \brief parses a vertexTextureCoordinate-String
485   If a vertexTextureCoordinate line is found this function will inject it into the vertexTexture-Array
486   \param vTextureString The String that will be parsed.
487*/
488bool Object::readVertexTexture (char* vTextureString)
489{
490  readingVertices = true;
491  char subbuffer1[20];
492  char subbuffer2[20];
493  sscanf (vTextureString, "%s %s", subbuffer1, subbuffer2);
494  if (verbose >=3 )
495    printf("found vertex-Texture %s, %s\n", subbuffer1,subbuffer2);
496  currentGroup->vTexture->addEntry(atof(subbuffer1));
497  currentGroup->vTexture->addEntry(atof(subbuffer2));
498  return true;
499}
500
501/**
502   \brief parses a group String
503   This function initializes a new Group.
504   With it you should be able to import .obj-files with more than one Objects inside.
505   \param groupString the new Group to create
506*/
507bool Object::readGroup (char* groupString)
508{
509  // setting the group name if not default.
510  if (strcmp(currentGroup->name, "default"))
511    {
512      currentGroup->name = (char*) malloc ( strlen(groupString) * sizeof (char));
513      strcpy(currentGroup->name, groupString);
514    }
515  if (groupCount != 0 && currentGroup->faceCount>0)
516    {
517      Group* newGroup = new Group;
518      finalizeGroup(currentGroup);
519      currentGroup->nextGroup = newGroup;
520      initGroup(newGroup);
521      cleanupGroup(currentGroup); // deletes the arrays of the group; must be after initGroup.
522      currentGroup = newGroup; // must be after init see initGroup for more info
523    }
524
525  ++groupCount;
526
527}
528
529/**
530    \brief Function to read in a mtl File.
531    this Function parses all Lines of an mtl File
532    \param mtlFile The .mtl file to read
533*/
534bool Object::readMtlLib (char* mtlFile)
535{
536  MTL_FILE = new ifstream (mtlFile);
537  if (!MTL_FILE->is_open())
538    {
539      if (verbose >= 1)
540        printf ("unable to open file: %s\n", mtlFile);
541      return false;
542    }
543  mtlFileName = mtlFile;
544  if (verbose >=2)
545    printf ("Opening mtlFile: %s\n", mtlFileName);
546  char Buffer[500];
547  Material* tmpMat = material;
548  while(!MTL_FILE->eof())
549    {
550      MTL_FILE->getline(Buffer, 500);
551      if (verbose >= 4)
552        printf("found line in mtlFile: %s\n", Buffer);
553     
554
555      // create new Material
556      if (!strncmp(Buffer, "newmtl ", 2))
557        {
558          tmpMat = tmpMat->addMaterial(Buffer+7);
559          //      printf ("%s, %p\n", tmpMat->getName(), tmpMat);
560        }
561      // setting a illumMode
562      else if (!strncmp(Buffer, "illum", 5))
563        {
564          tmpMat->setIllum(Buffer+6);
565
566        }
567      // setting Diffuse Color
568      else if (!strncmp(Buffer, "Kd", 2))
569        {
570          tmpMat->setDiffuse(Buffer+3);
571        }
572      // setting Ambient Color
573      else if (!strncmp(Buffer, "Ka", 2))
574        {
575          tmpMat->setAmbient(Buffer+3);
576        }
577      // setting Specular Color
578      else if (!strncmp(Buffer, "Ks", 2))
579        {
580          tmpMat->setSpecular(Buffer+3);
581        }
582      // setting The Specular Shininess
583      else if (!strncmp(Buffer, "Ns", 2))
584        {
585          tmpMat->setShininess(Buffer+3);
586        }
587      // setting up transparency
588      else if (!strncmp(Buffer, "d", 1))
589        {
590          tmpMat->setTransparency(Buffer+2);
591        }
592      else if (!strncpy(Buffer, "Tf", 2))
593        {
594          tmpMat->setTransparency(Buffer+3);
595        }
596
597    }
598  return true;
599}
600
601/**
602   \brief Function that selects a material, if changed in the obj file.
603   \param matString the Material that will be set.
604*/
605
606bool Object::readUseMtl (char* matString)
607{
608  if (!strcmp (mtlFileName, ""))
609    {
610      if (verbose >= 1)
611        printf ("Not using new defined material, because no mtlFile found yet\n");
612      return false;
613    }
614     
615  if (currentGroup->faceMode != -1)
616    glEnd();
617  currentGroup->faceMode = 0;
618  if (verbose >= 2)
619    printf ("using material %s for coming Faces.\n", matString);
620  material->search(matString)->select();
621}
622
623/**
624   \brief Includes a default object
625   This will inject a Cube, because this is the most basic object.
626*/
627void Object::BoxObject(void)
628{
629  readVertex ("-0.500000 -0.500000 0.500000");
630  readVertex ("0.500000 -0.500000 0.500000");
631  readVertex ("-0.500000 0.500000 0.500000");
632  readVertex ("0.500000 0.500000 0.500000");
633  readVertex ("-0.500000 0.500000 -0.500000");
634  readVertex ("0.500000 0.500000 -0.500000");
635  readVertex ("-0.500000 -0.500000 -0.500000");
636  readVertex ("0.500000 -0.500000 -0.500000");
637  readVertexTexture ("0.000000 0.000000");
638  readVertexTexture ("1.000000 0.000000");
639  readVertexTexture ("0.000000 1.000000");
640  readVertexTexture ("1.000000 1.000000");
641  readVertexTexture ("0.000000 2.000000");
642  readVertexTexture ("1.000000 2.000000");
643  readVertexTexture ("0.000000 3.000000");
644  readVertexTexture ("1.000000 3.000000");
645  readVertexTexture ("0.000000 4.000000");
646  readVertexTexture ("1.000000 4.000000");
647  readVertexTexture ("2.000000 0.000000");
648  readVertexTexture ("2.000000 1.000000");
649  readVertexTexture ("-1.000000 0.000000");
650  readVertexTexture ("-1.000000 1.000000");
651 
652  readVertexNormal ("0.000000 0.000000 1.000000");
653  readVertexNormal ("0.000000 0.000000 1.000000");
654  readVertexNormal ("0.000000 0.000000 1.000000");
655  readVertexNormal ("0.000000 0.000000 1.000000");
656  readVertexNormal ("0.000000 1.000000 0.000000");
657  readVertexNormal ("0.000000 1.000000 0.000000");
658  readVertexNormal ("0.000000 1.000000 0.000000");
659  readVertexNormal ("0.000000 1.000000 0.000000");
660  readVertexNormal ("0.000000 0.000000 -1.000000");
661  readVertexNormal ("0.000000 0.000000 -1.000000");
662  readVertexNormal ("0.000000 0.000000 -1.000000");
663  readVertexNormal ("0.000000 0.000000 -1.000000");
664  readVertexNormal ("0.000000 -1.000000 0.000000");
665  readVertexNormal ("0.000000 -1.000000 0.000000");
666  readVertexNormal ("0.000000 -1.000000 0.000000");
667  readVertexNormal ("0.000000 -1.000000 0.000000");
668  readVertexNormal ("1.000000 0.000000 0.000000");
669  readVertexNormal ("1.000000 0.000000 0.000000");
670  readVertexNormal ("1.000000 0.000000 0.000000");
671  readVertexNormal ("1.000000 0.000000 0.000000");
672  readVertexNormal ("-1.000000 0.000000 0.000000");
673  readVertexNormal ("-1.000000 0.000000 0.000000");
674  readVertexNormal ("-1.000000 0.000000 0.000000");
675  readVertexNormal ("-1.000000 0.000000 0.000000");
676
677  readFace ("1/1/1 2/2/2 4/4/3 3/3/4");
678  readFace ("3/3/5 4/4/6 6/6/7 5/5/8");
679  readFace ("5/5/9 6/6/10 8/8/11 7/7/12");
680  readFace ("7/7/13 8/8/14 2/10/15 1/9/16");
681  readFace ("2/2/17 8/11/18 6/12/19 4/4/20");
682  readFace ("7/13/21 1/1/22 3/3/23 5/14/24");
683}
Note: See TracBrowser for help on using the repository browser.