Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/subprojects/importer/importer.cc @ 6225

Last change on this file since 6225 was 6222, checked in by bensch, 19 years ago

orxonox/trunk: merged the christmas branche to the trunk
merged with command:
svn merge -r6165:HEAD christmas_branche/ ../trunk/
no conflicts

File size: 2.1 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   this file extends the framework file, so it renders what i want.
16*/
17
18#include "framework.h"
19
20#include "light.h"
21
22#include "objModel.h"
23#include "md2Model.h"
24#include "primitive_model.h"
25#include <stdlib.h>
26
27#include "resource_manager.h"
28
29Model* obj;
30
31void Framework::moduleInit(int argc, char** argv)
32{
33  ResourceManager::getInstance()->addImageDir("./");
34
35  for (int i = 0; i < argc; i++)
36  {
37    printf("%s\n", argv[i]);
38  }
39  ResourceManager::getInstance()->addImageDir("");
40
41
42  if (argc>=3)
43  {
44    if( strstr(argv[1], ".obj") != NULL)
45      obj = new OBJModel (argv[1], atof(argv[2]));
46    else if( strstr(argv[1], ".md2") != NULL)
47    {
48      obj = new MD2Model(argv[1], argv[2]);
49      ((MD2Model*)obj)->tick(0.1f);
50    }
51  }
52  else if (argc>=2)
53  {
54    if( strstr(argv[1], ".obj") != NULL)
55      obj = new OBJModel(argv[1]);
56    else if( strstr(argv[1], ".md2") != NULL) {
57      obj = new MD2Model(argv[1], "fake_texture.bad");
58      obj = new MD2Model(argv[1], argv[2]);
59      ((MD2Model*)obj)->tick(0.1f);
60    }
61  }
62  else
63    obj = new PrimitiveModel(PRIM_CYLINDER);
64
65  ResourceManager::getInstance()->debug();
66
67  LightManager* lightMan = LightManager::getInstance();
68  lightMan->setAmbientColor(.1,.1,.1);
69  (new Light())->setAbsCoor(5.0, 10.0, 40.0);
70  (new Light())->setAbsCoor(-10, -20, -100);
71}
72
73void Framework::moduleEventHandler(SDL_Event* event)
74{
75  switch (event->type)
76    {
77    case SDL_KEYDOWN:
78      switch (event->key.keysym.sym)
79        {
80        case SDLK_i:
81          break;
82        }
83    }
84}
85
86void Framework::moduleTick(float dt)
87{
88
89}
90
91void Framework::moduleDraw(void) const
92{
93  obj->draw();
94
95  LightManager::getInstance()->draw();
96}
97
98
99void Framework::moduleHelp(void) const
100{
101
102}
Note: See TracBrowser for help on using the repository browser.