File: configure.cpp

package info (click to toggle)
clanlib 0.5.4-1-6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 10,320 kB
  • ctags: 10,893
  • sloc: cpp: 76,056; xml: 3,281; sh: 2,961; perl: 1,204; asm: 837; makefile: 775
file content (402 lines) | stat: -rw-r--r-- 9,578 bytes parent folder | download
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/*
	$Id: configure.cpp,v 1.59 2001/12/15 21:26:29 starch Exp $

	------------------------------------------------------------------------
	ClanLib, the platform independent game SDK.

	This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
	version 2. See COPYING for details.

	For a total list of contributers see CREDITS.

	------------------------------------------------------------------------
*/
// Configure.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "Configure.h"
#include "configure_wizard.h"
#include "workspace_generator_msvc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CConfigureApp

BEGIN_MESSAGE_MAP(CConfigureApp, CWinApp)
	//{{AFX_MSG_MAP(CConfigureApp)
	//}}AFX_MSG
	ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CConfigureApp construction

CConfigureApp::CConfigureApp()
{
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CConfigureApp object

CConfigureApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CConfigureApp initialization

BOOL CConfigureApp::InitInstance()
{
	// Standard initialization

#ifdef _AFXDLL
	Enable3dControls();			// Call this when using MFC in a shared DLL
#else
	Enable3dControlsStatic();	// Call this when linking to MFC statically
#endif

	SetRegistryKey("ClanSoft");

	CConfigureWizard wizard;
	m_pMainWnd = &wizard;

	int nResponse = wizard.DoModal();
	if (nResponse == ID_WIZFINISH)
	{
		Workspace workspace = create_workspace(wizard);

		WorkspaceGenerator_MSVC generator;
		generator.write(workspace);

		/* TODO: Update the following registry keys:

		\\LOCAL MACHINE\Software\Microsoft\DevStudio\6.0\Build System\Components\Platforms\Win32 (x86)\Directories\Include Dirs
		\\LOCAL MACHINE\Software\Microsoft\DevStudio\6.0\Build System\Components\Platforms\Win32 (x86)\Directories\Library Dirs
		\\LOCAL MACHINE\Software\Microsoft\DevStudio\6.0\Build System\Components\Platforms\Win32 (x86)\Directories\Path Dirs
		\\LOCAL MACHINE\Software\Microsoft\DevStudio\6.0\Build System\Components\Platforms\Win32 (x86)\Directories\Source Dirs
		*/
	}
	else if (nResponse == IDCANCEL)
	{
	}

	// Since the dialog has been closed, return FALSE so that we exit the
	//  application, rather than start the application's message pump.
	return FALSE;
}

/////////////////////////////////////////////////////////////////////////////
// Workspace creation:

Workspace CConfigureApp::create_workspace(CConfigureWizard &wizard)
{
	Workspace workspace;
	workspace.input_lib_dir = std::string(wizard.m_Page4.m_input_lib);
	workspace.input_include_dir = std::string(wizard.m_Page4.m_input_include);
	workspace.output_include_dir = std::string(wizard.m_Page4.m_output_include);
	workspace.output_lib_dir = std::string(wizard.m_Page4.m_output_lib);

	// Write all library project files:
	std::list<std::string> libs_list_shared;
	std::list<std::string> libs_list_release;
	std::list<std::string> libs_list_debug;
	std::list<std::string> defines_list;

	libs_list_shared.push_back("winmm.lib");
	libs_list_shared.push_back("ddraw.lib");
	libs_list_shared.push_back("dsound.lib");
	libs_list_shared.push_back("dinput.lib");
	libs_list_shared.push_back("dxguid.lib");
	libs_list_shared.push_back("ws2_32.lib");
	libs_list_shared.push_back("zlib.lib");
	
	if (wizard.m_Page3.m_use_opengl) defines_list.push_back("USE_OPENGL");
	if (wizard.m_Page3.m_use_network) defines_list.push_back("USE_NETWORK");
	if (wizard.m_Page3.m_use_sound) defines_list.push_back("USE_CLANSOUND");
	
	defines_list.push_back("DIRECTINPUT_VERSION=0x0700");

	Project clanCore(
		"Core",
		"clanCore",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	//clean the lib list
	libs_list_shared.clear();
	libs_list_debug.clear();
	libs_list_release.clear();

	Project clanSignals(
		"Signals",
		"clanSignals",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	Project clanApp(
		"Application",
		"clanApp",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	Project clanNetwork(
		"Network",
		"clanNetwork",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	libs_list_shared.push_back("hermes.lib");
//	libs_list_release.push_back("hermes.lib");
//	libs_list_debug.push_back("hermes.lib");

	Project clanDisplay(
		"Display",
		"clanDisplay",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	libs_list_release.clear();
	libs_list_debug.clear();

	Project clanSound(
		"Sound",
		"clanSound",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	//clean the lib list
	libs_list_shared.clear();
	libs_list_debug.clear();
	libs_list_release.clear();

	// libs for clanGL
	libs_list_shared.push_back("OpenGL32.lib");
	libs_list_shared.push_back("GLU32.lib");
		
	Project clanGL(
		"GL",
		"clanGL",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	//clean the lib list
	libs_list_shared.clear();

	Project clanGUI(
		"GUI",
		"clanGUI",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	//clean the lib list
	libs_list_shared.clear();
	libs_list_debug.clear();
	libs_list_release.clear();

	// libs for clanJavaScript
	libs_list_shared.push_back("js32.lib");
		
	Project clanJavaScript(
		"JavaScript",
		"clanJavaScript",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);
	
	//clean the lib list
	libs_list_shared.clear();
	libs_list_debug.clear();
	libs_list_release.clear();
/*
	libs_list_debug.push_back("luad.lib");
	libs_list_debug.push_back("lualibd.lib");
	libs_list_debug.push_back("tolualibd.lib");
	libs_list_release.push_back("lua.lib");
	libs_list_release.push_back("lualib.lib");
	libs_list_release.push_back("tolualib.lib");

	Project clanLua(
		"Lua",
		"clanLua",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);
*/
	//clean the lib list
	libs_list_shared.clear();
	libs_list_debug.clear();
	libs_list_release.clear();

	libs_list_shared.push_back("vorbis.lib");
	libs_list_shared.push_back("ogg.lib");

	Project clanVorbis(
		"Vorbis",
		"clanVorbis",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	libs_list_shared.clear();
	libs_list_debug.clear();
	libs_list_release.clear();

	libs_list_debug.push_back("mikmod.lib");
	libs_list_release.push_back("mikmod.lib");

	Project clanMikMod(
		"MikMod",
		"clanMikMod",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	libs_list_shared.clear();
	libs_list_debug.clear();
	libs_list_release.clear();

	libs_list_shared.push_back("jpeg.lib");

	Project clanJPEG(
		"JPEG",
		"clanJPEG",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	libs_list_shared.clear();

	libs_list_shared.push_back("libpng.lib");
	
	Project clanPNG(
		"PNG",
		"clanPNG",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	libs_list_shared.clear();
	libs_list_debug.push_back("freetype200b8MT.lib");
	libs_list_release.push_back("freetype200b8MT.lib");

	Project clanTTF(
		"TTF",
		"clanTTF",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	libs_list_shared.clear();
	libs_list_debug.clear();
	libs_list_release.clear();

	Project clanSmallJPEG(
		"SmallJPEG",
		"clanSmallJPEG",
		libs_list_shared,
		libs_list_release,
		libs_list_debug,
		defines_list);

	// Setup project dependencies:
	clanGUI.dependencies.push_back("clanSignals");
//	clanCore.dependencies.push_back("clanSignals");

	// Add projects to workspace:
	workspace.projects.push_back(clanSignals);
	workspace.projects.push_back(clanCore);
	workspace.projects.push_back(clanApp);
	workspace.projects.push_back(clanNetwork);
	workspace.projects.push_back(clanDisplay);
	workspace.projects.push_back(clanSound);
	workspace.projects.push_back(clanGL);
	workspace.projects.push_back(clanGUI);
	workspace.projects.push_back(clanJavaScript);
//	workspace.projects.push_back(clanLua);
	workspace.projects.push_back(clanVorbis);
	workspace.projects.push_back(clanMikMod);
//	workspace.projects.push_back(clanMPEG);
	workspace.projects.push_back(clanJPEG);
	workspace.projects.push_back(clanPNG);
	workspace.projects.push_back(clanTTF);
	workspace.projects.push_back(clanSmallJPEG);

	return workspace;
}

/////////////////////////////////////////////////////////////////////////////
// Browse helper function:

BOOL BrowseForFolder(HWND hOwner, char* szTitle, char* szRetval)
{
	BROWSEINFO		info;
	LPITEMIDLIST	itemidlist;
	char			szDirectory[_MAX_PATH];
	LPMALLOC		pMalloc;

	memset(szDirectory, '\0', _MAX_PATH);

	if (::SHGetMalloc(&pMalloc) == NOERROR)
	{
		info.hwndOwner = hOwner;
		info.pidlRoot = NULL;
		info.pszDisplayName = szDirectory;
		info.lpszTitle = szTitle;
		info.ulFlags = 0;
		info.lpfn = NULL;

		itemidlist = SHBrowseForFolder(&info);
		if (itemidlist != NULL)
		{
			SHGetPathFromIDList(itemidlist, szRetval);
			pMalloc->Free(itemidlist);
			pMalloc->Release();
			return TRUE;
		}
		else // User clicked Cancel
		{
			pMalloc->Release();
			return FALSE;
		}
	}
	else
		return FALSE;
}

void CConfigureApp::WinHelp(DWORD dwData, UINT nCmd) 
{
	ShellExecute(
		NULL,
		NULL,
		"notepad.exe",
		"INSTALL.WIN32",
		NULL,
		SW_SHOWNORMAL);
}