main.cc 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #include "time/profile.hh"
  9. #include "window/wmanager.hh"
  10. #include "map.hh"
  11. #include "tile.hh"
  12. #include "app/app.hh"
  13. #include "controller.hh"
  14. #include "input.hh"
  15. #include "objs/map_piece.hh"
  16. #include "player.hh"
  17. #include "math/random.hh"
  18. #include "resources.hh"
  19. #include "menu.hh"
  20. #include "border_frame.hh"
  21. #include "sound/sfx_id.hh"
  22. #include "remove_man.hh"
  23. #include "saver.hh"
  24. #include "mess_id.hh"
  25. #include "sound_man.hh"
  26. #include "time/time.hh"
  27. #include "time/timedev.hh"
  28. #include "g1_speed.hh"
  29. #include "cwin_man.hh"
  30. #include "m_flow.hh"
  31. #include "g1_render.hh"
  32. #include "objs/defaults.hh"
  33. #include "net/startup.hh" // g1 stuff for start network menus
  34. #include "network/net_prot.hh" // so we can choose a protocol when we start
  35. #include "r1_api.hh"
  36. #include "g1_texture_id.hh"
  37. #include "statistics.hh"
  38. #include "map_man.hh"
  39. #include "tmanage.hh"
  40. #include "level_load.hh"
  41. #include "lisp/lisp.hh"
  42. #include "make_tlist.hh"
  43. #include "gui/image_win.hh"
  44. #include "font/anti_prop.hh"
  45. #include "lisp/li_init.hh"
  46. #include "objs/vehic_sounds.hh"
  47. #include "tick_count.hh"
  48. #include "map_view.hh"
  49. #include "demo.hh"
  50. #include "image_man.hh"
  51. #include <string.h>
  52. i4_profile_class pf_calc_model("calc model");
  53. i4_profile_class pf_calc_model_1("calc model 1");
  54. i4_profile_class pf_calc_model_2("calc model 2");
  55. i4_profile_class pf_calc_model_3("calc model 3");
  56. i4_profile_class pf_calc_model_4("calc model 4");
  57. i4_profile_class pf_calc_model_5("calc model 5");
  58. i4_profile_class pf_calc_model_6("calc model 6");
  59. i4_profile_class pf_calc_model_7("calc model 7");
  60. i4_profile_class pf_calc_model_8("calc model 8");
  61. i4_profile_class pf_calc_model_9("calc model 9");
  62. extern i4_grow_heap_class *g1_object_heap;
  63. int G1_HZ=10;
  64. static li_symbol_ref s_deterministic("deterministic");
  65. static char first_level[80];
  66. extern int last_draw_tick;
  67. extern int frame_locked_mode;
  68. class golgotha_app : public i4_application_class
  69. {
  70. private:
  71. i4_window_class *main_menu;
  72. i4_bool playing_movie;
  73. w32 _max_memory;
  74. w32 argc;
  75. i4_const_str *argv;
  76. i4_bool need_post_play_load;
  77. i4_bool start_in_editor;
  78. struct redraw_later_struct
  79. {
  80. i4_bool waiting;
  81. i4_time_device_class::id id;
  82. redraw_later_struct() { waiting=i4_F; }
  83. } redraw_later;
  84. virtual w32 max_memory() { return _max_memory; }
  85. i4_net_protocol *protocol;
  86. public:
  87. void handle_no_displays()
  88. {
  89. #ifdef _WINDOWS
  90. i4_error("Golgotha requires DirectX5, or a 3dfx card\n"
  91. "Make sure you have DX5 (and are in 16bit color mode)"
  92. "Or that you have the current version Glide (for 3dfx) installed");
  93. #else
  94. i4_error("Golgotha requires a 3dfx card\n");
  95. #endif
  96. }
  97. void pre_play_save();
  98. void post_play_load();
  99. golgotha_app(w32 argc, i4_const_str *argv)
  100. : argc(argc), argv(argv)
  101. {
  102. start_in_editor=i4_F;
  103. need_post_play_load=i4_F;
  104. playing_movie=i4_F;
  105. main_menu=0;
  106. protocol=0;
  107. _max_memory = 10*1024*1024;
  108. }
  109. void refresh()
  110. {
  111. g1_render.main_draw=i4_T;
  112. if (g1_render.r_api)
  113. g1_render.r_api->modify_features(R1_LOCK_CHEAT,g1_resources.lock_cheat);
  114. i4_application_class::refresh();
  115. g1_render.main_draw=i4_F;
  116. }
  117. void grab_time();
  118. void map_changed()
  119. {
  120. li_call("redraw");
  121. if (redraw_later.waiting)
  122. i4_time_dev.cancel_event(redraw_later.id);
  123. redraw_later.waiting=i4_T;
  124. i4_user_message_event_class m(G1_REDRAW_LATER);
  125. redraw_later.id=i4_time_dev.request_event(this, &m, 500);
  126. }
  127. void init();
  128. virtual i4_bool idle() { return i4_F; }
  129. void calc_model()
  130. {
  131. int fixed=li_get_value(s_deterministic.get())==li_true_sym;
  132. if (g1_map_is_loaded())
  133. {
  134. pf_calc_model.start();
  135. g1_render.r_api->get_tmanager()->next_frame();
  136. i4_time_class now;
  137. sw32 md;
  138. int ticks_simulated=0;
  139. do
  140. {
  141. md=now.milli_diff(g1_get_map()->tick_time);
  142. if (fixed || md>0 || frame_locked_mode)
  143. {
  144. if (!g1_resources.paused)
  145. {
  146. pf_calc_model_1.start();
  147. g1_player_man.think(); // thinks player/team type thoughts
  148. pf_calc_model_1.stop();
  149. g1_map_class *map=g1_get_map();
  150. map->think_objects();
  151. g1_demo_tick();
  152. if ((g1_tick_counter&7)==0)
  153. g1_radar_update();
  154. g1_remove_man.process_requests();
  155. ticks_simulated++;
  156. }
  157. else
  158. g1_get_map()->tick_time.add_milli((1000/G1_HZ));
  159. if (g1_current_controller.get())
  160. g1_current_controller->update_camera();
  161. }
  162. } while (!frame_locked_mode && !fixed && md>0 && ticks_simulated<10);
  163. if (ticks_simulated>=10) // simulation can't catch up with display
  164. g1_get_map()->tick_time.get(); // catch up the time
  165. if (g1_current_controller.get() &&
  166. g1_current_controller->view.get_view_mode()!=G1_EDIT_MODE)
  167. g1_current_controller->request_redraw(i4_F);
  168. g1_sound_man.poll(i4_T); // update sound effects (play next narative sfx)
  169. if (playing_movie)
  170. {
  171. if (!g1_get_map()->advance_movie_with_time())
  172. {
  173. playing_movie=i4_F;
  174. if (need_post_play_load)
  175. {
  176. if (g1_resources.paused)
  177. li_call("Pause");
  178. post_play_load();
  179. }
  180. else if (g1_current_controller.get())
  181. g1_current_controller->view.suggest_camera_mode(G1_ACTION_MODE);
  182. }
  183. li_call("redraw");
  184. }
  185. else
  186. g1_input.reset_esc();
  187. pf_calc_model.stop();
  188. }
  189. g1_input.acknowledge(); // acknowledge that the keys have been examined
  190. }
  191. void return_to_game();
  192. void start_new_game();
  193. void network_menu();
  194. void server_menu();
  195. void help_screen(char *screen_name, int next_id);
  196. void plot_screen();
  197. void client_wait_menu();
  198. void do_main_menu();
  199. void do_options();
  200. void receive_event(i4_event *ev);
  201. void uninit()
  202. {
  203. i4_kernel.unrequest_events(this,
  204. i4_device_class::FLAG_DO_COMMAND |
  205. i4_device_class::FLAG_END_COMMAND);
  206. if (redraw_later.waiting)
  207. {
  208. i4_time_dev.cancel_event(redraw_later.id);
  209. redraw_later.waiting=i4_F;
  210. }
  211. if (g1_map_is_loaded())
  212. g1_destroy_map();
  213. g1_global_id.init();
  214. g1_unload_object_defaults();
  215. g1_resources.cleanup();
  216. g1_unload_images();
  217. g1_cwin_man->destroy_views();
  218. g1_cwin_man->uninit();
  219. r1_destroy_api(g1_render.r_api);
  220. g1_render.r_api=0;
  221. g1_input.uninit();
  222. g1_uninitialize_loaded_objects();
  223. i4_application_class::uninit();
  224. }
  225. void choice_first_level();
  226. char *name() { return "golgotha_app"; }
  227. } ;
  228. golgotha_app *g1_app=0;
  229. li_object *g1_pause(li_object *o, li_environment *env)
  230. {
  231. g1_stop_sound_averages();
  232. g1_resources.paused=!g1_resources.paused;
  233. if (g1_map_is_loaded())
  234. g1_get_map()->tick_time.get();
  235. return 0;
  236. }
  237. li_object *g1_set_default_level(li_object *o, li_environment *env)
  238. {
  239. strcpy(first_level, li_get_string(li_eval(li_car(o,env),env),env));
  240. return 0;
  241. }
  242. void golgotha_app::pre_play_save()
  243. {
  244. i4_file_class *out=i4_open(i4gets("play_savename"), I4_WRITE);
  245. if (out)
  246. {
  247. g1_saver_class *save=new g1_saver_class(out);
  248. g1_get_map()->save(save, G1_MAP_ALL);
  249. if (save->begin_data_write())
  250. g1_get_map()->save(save, G1_MAP_ALL);
  251. delete save;
  252. need_post_play_load=i4_T;
  253. }
  254. }
  255. void golgotha_app::post_play_load()
  256. {
  257. i4_str *old_name=new i4_str(g1_get_map()->get_filename());
  258. if (g1_load_level(i4gets("play_savename"), 0))
  259. g1_get_map()->set_filename(*old_name);
  260. delete old_name;
  261. need_post_play_load=i4_F;
  262. }
  263. void golgotha_app::do_options()
  264. {
  265. // if (main_menu)
  266. // delete main_menu;
  267. // main_menu=new g1_option_window(wm->width(), wm->height(), wm->get_style(), this);
  268. // wm->add_child(0,0,main_menu);
  269. }
  270. void golgotha_app::network_menu()
  271. {
  272. if (main_menu)
  273. delete main_menu;
  274. main_menu=new g1_startup_window(wm->width(), wm->height(), wm->get_style(), protocol);
  275. wm->add_child(0,0,main_menu);
  276. }
  277. void golgotha_app::help_screen(char *screen_name, int next_id)
  278. {
  279. if (main_menu)
  280. delete main_menu;
  281. main_menu=new g1_help_screen_class(wm->width(), wm->height(), wm->get_style(),
  282. i4gets(screen_name), next_id);
  283. wm->add_child(0,0,main_menu);
  284. }
  285. void golgotha_app::plot_screen()
  286. {
  287. if (main_menu)
  288. delete main_menu;
  289. main_menu=new g1_help_screen_class(wm->width(), wm->height(), wm->get_style(),
  290. i4gets("plot_screen"), G1_MAIN_MENU);
  291. wm->add_child(0,0,main_menu);
  292. }
  293. void golgotha_app::server_menu()
  294. {
  295. if (main_menu)
  296. delete main_menu;
  297. main_menu=new g1_server_start_window(wm->width(), wm->height(),
  298. wm->get_style(), protocol);
  299. wm->add_child(0,0,main_menu);
  300. }
  301. void golgotha_app::client_wait_menu()
  302. {
  303. if (main_menu)
  304. delete main_menu;
  305. main_menu=new g1_client_wait_window(wm->width(), wm->height(),
  306. wm->get_style(), protocol);
  307. wm->add_child(0,0,main_menu);
  308. }
  309. void golgotha_app::do_main_menu()
  310. {
  311. sw32 ids[]={ G1_START_NEW_GAME,
  312. G1_NO_MESSAGE,
  313. G1_NO_MESSAGE,
  314. G1_NETWORK_MENU,
  315. G1_OPTIONS,
  316. G1_QUIT,
  317. -1 };
  318. if (main_menu)
  319. delete main_menu;
  320. main_menu=new g1_main_menu_class(wm->width(),
  321. wm->height(),
  322. this,
  323. ids,
  324. wm->get_style());
  325. wm->add_child(0,0,main_menu);
  326. }
  327. li_symbol_ref fo_sym("File/Open");
  328. void check_fo()
  329. {
  330. li_symbol *org=fo_sym.get();
  331. li_symbol *news=li_get_symbol("File/Open");
  332. if (org!=news)
  333. i4_warning("symbols off!");
  334. }
  335. void golgotha_app::receive_event(i4_event *ev)
  336. {
  337. switch (ev->type())
  338. {
  339. case i4_event::DO_COMMAND :
  340. {
  341. fo_sym.get();
  342. g1_cwin_man->receive_event(ev);
  343. char *cmd=((i4_do_command_event_class *)ev)->command;
  344. li_symbol *s=li_get_symbol(cmd);
  345. if (li_get_fun(s,0))
  346. li_call(s);
  347. g1_input.receive_event(ev);
  348. } break;
  349. case i4_event::END_COMMAND :
  350. {
  351. g1_cwin_man->receive_event(ev);
  352. char cmd[200];
  353. sprintf(cmd, "-%s",((i4_do_command_event_class *)ev)->command);
  354. li_symbol *s=li_get_symbol(cmd);
  355. if (li_get_fun(s,0))
  356. li_call(cmd);
  357. g1_input.receive_event(ev);
  358. } break;
  359. case i4_event::USER_MESSAGE :
  360. {
  361. CAST_PTR(uev,i4_user_message_event_class,ev);
  362. switch (uev->sub_type)
  363. {
  364. case G1_MAIN_MENU :
  365. do_main_menu();
  366. break;
  367. case G1_NETWORK_MENU :
  368. network_menu();
  369. break;
  370. case G1_SERVER_MENU :
  371. server_menu();
  372. break;
  373. case G1_CLIENT_JOINED_MENU :
  374. client_wait_menu();
  375. break;
  376. case G1_YOU_LOSE :
  377. help_screen("youlose_screen", G1_QUIT);
  378. break;
  379. case G1_YOU_WIN :
  380. help_screen("youwin_screen", G1_QUIT);
  381. break;
  382. case G1_HELP_SCREEN :
  383. help_screen("help_screen", G1_RETURN_TO_GAME);
  384. break;
  385. case G1_START_HELP_SCREEN :
  386. help_screen("help_screen", G1_START_NEW_GAME);
  387. break;
  388. case G1_PLOT_SCREEN :
  389. plot_screen();
  390. break;
  391. case G1_START_NEW_GAME :
  392. start_new_game();
  393. break;
  394. case G1_RETURN_TO_GAME :
  395. return_to_game();
  396. break;
  397. case G1_OPTIONS :
  398. do_options();
  399. break;
  400. case G1_QUIT :
  401. quit();
  402. break;
  403. case G1_ESCAPE :
  404. quit();
  405. break;
  406. case G1_MAP_CHANGED :
  407. map_changed();
  408. break;
  409. case G1_GET_ROOT_IMAGE :
  410. {
  411. CAST_PTR(get, g1_get_root_image_event, ev);
  412. get->result=display->get_screen();
  413. } break;
  414. case G1_REDRAW_LATER :
  415. {
  416. redraw_later.waiting=i4_F;
  417. li_call("redraw_all");
  418. } break;
  419. case G1_PLAY_MOVIE :
  420. if (g1_map_is_loaded())
  421. {
  422. pre_play_save();
  423. if (g1_get_map()->start_movie())
  424. {
  425. playing_movie=i4_T;
  426. g1_resources.paused=i4_F;
  427. }
  428. } break;
  429. case G1_STOP_MOVIE :
  430. {
  431. if (playing_movie)
  432. {
  433. if (g1_map_is_loaded())
  434. {
  435. g1_get_map()->stop_movie();
  436. post_play_load();
  437. }
  438. playing_movie=i4_F;
  439. if (g1_current_controller.get() &&
  440. g1_current_controller->view.get_view_mode()==G1_CAMERA_MODE)
  441. g1_current_controller->view.suggest_camera_mode(G1_ACTION_MODE);
  442. }
  443. } break;
  444. case G1_GET_CURRENT_MOVIE :
  445. {
  446. if (g1_map_is_loaded())
  447. {
  448. CAST_PTR(mev, g1_get_current_movie_event, ev);
  449. mev->mflow=g1_get_map()->current_movie;
  450. }
  451. } break;
  452. case G1_INTERLACE_PIXEL :
  453. {
  454. g1_cwin_man->destroy_views();
  455. g1_resources.render_window_expand_mode = R1_COPY_1x1_SCANLINE_SKIP;
  456. g1_cwin_man->create_views();
  457. } break;
  458. case G1_DOUBLE_PIXEL :
  459. {
  460. g1_cwin_man->destroy_views();
  461. g1_resources.render_window_expand_mode = R1_COPY_2x2;
  462. g1_cwin_man->create_views();
  463. } break;
  464. case G1_NORMAL_PIXEL :
  465. {
  466. g1_cwin_man->destroy_views();
  467. g1_resources.render_window_expand_mode = R1_COPY_1x1;
  468. g1_cwin_man->create_views();
  469. } break;
  470. }
  471. } break;
  472. default:
  473. i4_application_class::receive_event(ev);
  474. }
  475. }
  476. void golgotha_app::choice_first_level()
  477. {
  478. for (int i=1; i<argc; i++)
  479. if (argv[i]=="-f")
  480. {
  481. i4_os_string(*(argv+i+1), first_level, 80);
  482. i++;
  483. }
  484. else if (argv[i]==i4_const_str("-edit"))
  485. {
  486. start_in_editor=1;
  487. }
  488. else if (argv[i]=="-eval")
  489. {
  490. i++;
  491. char buf[1000];
  492. i4_os_string(argv[i], buf, 1000);
  493. char *s=buf;
  494. li_eval(li_get_expression(s,0), 0);
  495. }
  496. else if (argv[i]=="-frame_lock")
  497. frame_locked_mode=1;
  498. }
  499. static i4_event_handler_reference_class<i4_parent_window_class> loading_window;
  500. void golgotha_app::init()
  501. {
  502. sw32 i;
  503. for (i=0; i<argc; i++)
  504. {
  505. if (argv[i] == "-max_memory")
  506. {
  507. i++;
  508. i4_const_str::iterator p(argv[i].begin());
  509. _max_memory = (w32)p.read_number();
  510. }
  511. }
  512. memory_init();
  513. resource_init("resource.res",0);
  514. strcpy(first_level, "test.level");
  515. li_add_function("set_default_level", g1_set_default_level);
  516. li_load("scheme/start.scm");
  517. i4_image_class *im=i4_load_image("bitmaps/comic1.jpg");
  518. display_init();
  519. g1_sound_man.poll(i4_T); // update sound effects (play next narative sfx)
  520. g1_sound_man.loop_current_song=i4_T;
  521. wm->set_background_color(0);
  522. if (im)
  523. {
  524. loading_window=new i4_image_window_class(im, i4_T, i4_F);
  525. wm->add_child(wm->width()/2-loading_window->width()/2,
  526. wm->height()/2-loading_window->height()/2,
  527. loading_window.get());
  528. }
  529. refresh(); // show something right away
  530. char *font_fname=li_get_string(li_get_value("font"),0);
  531. i4_image_class *fim=i4_load_image(font_fname);
  532. if (!fim) i4_error("image load failed : %s", font_fname);
  533. i4_current_app->get_style()->font_hint->normal_font=new i4_anti_proportional_font_class(fim);
  534. delete fim;
  535. choice_first_level();
  536. g1_render.r_api = r1_create_api(display);
  537. if (!g1_render.r_api)
  538. i4_error("Could not initialize a rendering device");
  539. g1_input.init();
  540. g1_resources.load();
  541. li_load("scheme/preferences.scm");
  542. i4_bool movie_time = i4_F;
  543. for (i=0; i<argc; i++)
  544. {
  545. if (argv[i] == i4gets("movie_option"))
  546. movie_time = i4_T;
  547. }
  548. if (g1_render.r_api->get_render_device_flags() & R1_SOFTWARE)
  549. {
  550. //setup a timer and decide whether or not to do double pixel
  551. //default is high res mode
  552. int processor_speed = i4_get_clocks_per_second();
  553. g1_resources.render_window_expand_mode = R1_COPY_1x1;
  554. /*
  555. if (processor_speed > 170000000)
  556. g1_resources.render_window_expand_mode = R1_COPY_1x1;
  557. else
  558. if (processor_speed > 140000000)
  559. g1_resources.render_window_expand_mode = R1_COPY_1x1_SCANLINE_SKIP;
  560. else
  561. g1_resources.render_window_expand_mode = R1_COPY_2x2;
  562. g1_resources.radius_mode = g1_resource_class::VIEW_LOW;
  563. */
  564. if (movie_time)
  565. g1_resources.radius_mode = g1_resource_class::VIEW_FAR;
  566. }
  567. else
  568. {
  569. //hardware rasterizer, view distance = far by default
  570. g1_resources.radius_mode = g1_resource_class::VIEW_FAR;
  571. }
  572. s1_load();
  573. g1_load_images();
  574. g1_player_man.init_colors(&display->get_screen()->get_pal()->source, g1_render.r_api);
  575. protocol=i4_get_first_protocol();
  576. i4_graphical_style_class *style=wm->get_style();
  577. /*
  578. style->color_hint->button.active.bright=(135<<8)|64;
  579. style->color_hint->button.active.medium=(114<<8)|49;
  580. style->color_hint->button.active.dark=(88<<8)|38;
  581. style->color_hint->button.passive.bright=(120<<8)|64;
  582. style->color_hint->button.passive.medium=(100<<8)|49;
  583. style->color_hint->button.passive.dark=(70<<8)|38;
  584. */
  585. if (!g1_cwin_man)
  586. g1_cwin_man=new g1_cwin_man_class;
  587. g1_cwin_man->init(wm, style, display->get_screen(), display, wm);
  588. li_add_function("Pause", g1_pause);
  589. // main_menu=new g1_help_screen_class(wm->width(), wm->height(), wm->get_style(),
  590. // i4gets("startup_screen"), G1_PLOT_SCREEN);
  591. main_menu=0;
  592. // i4_const_str *tlist=i4_string_man.get_array("texture_array");
  593. // g1_load_texture_list(tlist);
  594. // i4_free(tlist);
  595. start_new_game();
  596. if (start_in_editor)
  597. g1_cwin_man->set_edit_mode(i4_T);
  598. i4_kernel.request_events(this,
  599. i4_device_class::FLAG_DO_COMMAND |
  600. i4_device_class::FLAG_END_COMMAND);
  601. // do_main_menu();
  602. // start game with startup screens
  603. // if (!movie_time)
  604. // {
  605. // help_screen("startup_screen", G1_START_HELP_SCREEN);
  606. // }
  607. // else
  608. // {
  609. // start_new_game();
  610. // }
  611. }
  612. void golgotha_app::return_to_game()
  613. {
  614. if (!g1_map_is_loaded())
  615. start_new_game();
  616. else if (main_menu)
  617. {
  618. delete main_menu;
  619. main_menu=0;
  620. }
  621. }
  622. void golgotha_app::start_new_game()
  623. {
  624. if (main_menu)
  625. {
  626. delete main_menu;
  627. main_menu=0;
  628. }
  629. g1_cwin_man->destroy_views();
  630. int no_demo=1;
  631. for (int i=1; i<argc; i++)
  632. {
  633. if (argv[i]=="-no_demo")
  634. no_demo=1;
  635. if (argv[i]=="-demo")
  636. li_call("play_demo");
  637. else if (argv[i]=="-df")
  638. {
  639. i++;
  640. char fname[100];
  641. i4_os_string(argv[i], fname,256);
  642. li_call("play_demo", li_make_list(new li_string(fname), 0));
  643. }
  644. }
  645. // demo verision for sampler CD, play demo if not started already
  646. if (!g1_playing_demo() && !no_demo)
  647. li_call("play_demo");
  648. if (!g1_playing_demo())
  649. if (!g1_load_level(first_level))
  650. i4_error("could not load level %s", first_level);
  651. if (loading_window.get())
  652. i4_kernel.delete_handler(loading_window.get());
  653. g1_cwin_man->create_views();
  654. if (g1_map_is_loaded() && g1_get_map()->start_movie())
  655. {
  656. playing_movie=i4_T;
  657. g1_resources.paused=i4_F;
  658. if (g1_current_controller.get())
  659. g1_current_controller->view.suggest_camera_mode(G1_CAMERA_MODE);
  660. }
  661. g1_sound_man.loop_current_song=i4_F;
  662. g1_sound_man.next_song();
  663. }
  664. void i4_main(w32 argc, i4_const_str *argv)
  665. {
  666. golgotha_app app(argc, argv);
  667. g1_app=&app;
  668. app.run();
  669. }