-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApplication.cpp
180 lines (145 loc) · 4.6 KB
/
Application.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#include "stdafx.h"
#include "Application.h"
#include "MainWindow.h"
#include <wx/msgdlg.h>
#include <wx/image.h>
#include <OgreConfigFile.h>
using namespace Ogre;
// Platform specific crap that creates the application, etc. //
IMPLEMENT_APP(Application);
Application::Application()
: wxApp(),
_root(0),
_window(0)
{
}
// Function definitions //
// App Init
bool Application::OnInit()
{
wxImage::AddHandler(new wxPNGHandler);
wxImage::AddHandler(new wxJPEGHandler);
if (!wxApp::OnInit())
return false;
InitializeOgre();
setupResources();
//loadResources();
_window = new MainWindow(0);
// now we need to create MainWindow singleton because
// it creates RenderWindow, which is needed for resource loading (for example, textures and VBO)
// we create it, but don't show to user to avoid flickering
SetTopWindow(_window); // set our MainWindow the main application window
_window->Show(true);
_window->init();
_window->updateOgre();
// Resources and resource initialization
loadResources();
if(_inputFile.size() > 1)
{
std::replace(_inputFile.begin(), _inputFile.end(), '\\', '/');
_window->openFile(_U(_inputFile.c_str()));
}
else
{
//_window->openFile(_("C:\\Documents and Settings\\George\\Desktop\\cgx\\test city.cgx"));
//_window->openFile(_("C:/Documents and Settings/George/Desktop/cgx2/testo2.cgx"));
//_window->openFile(_("C:/Documents and Settings/George/Desktop/shit.cgx"));
//_window->openFile(_("C:/Documents and Settings/George/Desktop/milan.cgx"));
_window->donew();
}
//_window->onExport(wxCommandEvent());
if(_outputFile.size() > 1)
{
std::replace(_outputFile.begin(), _outputFile.end(), '\\', '/');
_window->saveFile(_U(_outputFile.c_str()));
}
// All clear!
return true;
}
// App Exit
int Application::OnExit()
{
// Clean Up OGRE
if (_root)
delete _root;
// All done here.
return 0;
}
bool Application::InitializeOgre()
{
// Make the root
_root = new Root("", "", "citygen.log");
#if _DEBUG && WIN32
// load render system plugins first !
_root->loadPlugin(".\\RenderSystem_GL_d");
_root->loadPlugin(".\\Plugin_CgProgramManager_d");
_root->loadPlugin(".\\Plugin_OctreeSceneManager_d");
#else
_root->loadPlugin(".\\RenderSystem_GL");
_root->loadPlugin(".\\Plugin_CgProgramManager");
_root->loadPlugin(".\\Plugin_OctreeSceneManager");
#endif
try
{
// set the default render system
_root->setRenderSystem(_root->getAvailableRenderers()->front());
// initialise with false doesn't create a window
_root->initialise(false);
}
catch(Ogre::Exception &e)
{
String s = "OgreView::Init() - Exception:\n" + e.getFullDescription() + "\n";
LogManager::getSingleton().logMessage(s, LML_CRITICAL);
wxMessageBox(wxString(e.getFullDescription().c_str(), wxConvUTF8),
_("Exception!"),
wxICON_EXCLAMATION);
return false;
}
return true;
}
/// Method which will define the source of resources (other than current folder)
void Application::setupResources(void)
{
// Load resource paths from config file
ConfigFile cf;
cf.load("./Media/resources.cfg");
// Go through all sections & settings in the file
ConfigFile::SectionIterator seci = cf.getSectionIterator();
String secName, typeName, archName;
while (seci.hasMoreElements())
{
secName = seci.peekNextKey();
ConfigFile::SettingsMultiMap *settings = seci.getNext();
ConfigFile::SettingsMultiMap::iterator i;
for (i = settings->begin(); i != settings->end(); ++i)
{
typeName = i->first;
archName = i->second;
ResourceGroupManager::getSingleton().addResourceLocation(
archName, typeName, secName);
}
}
}
/// Must at least do ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
void Application::loadResources(void)
{
// Initialise, parse scripts etc
ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
}
int Application::OnRun()
{
return wxApp::OnRun();
}
void Application::OnInitCmdLine(wxCmdLineParser& parser)
{
parser.SetDesc(cmdLineDesc);
// must refuse '/' as parameter starter or cannot use "/path" style paths
parser.SetSwitchChars (wxT("-"));
}
bool Application::OnCmdLineParsed(wxCmdLineParser& parser)
{
// get unnamed parameters
if(parser.GetParamCount() >= 1) _inputFile = std::string(_C(parser.GetParam(0)));
if(parser.GetParamCount() >= 2) _outputFile = std::string(_C(parser.GetParam(1)));
return true;
}