aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-16 18:56:44 +1000
committerDavid Walter Seikel2014-05-16 18:56:44 +1000
commitdbf4b2b338273b037d28234ed9bc025af8bb565e (patch)
treeab6df20a0194b7af597b1098d55ea96735f2b5e5 /src/extantz
parentBring back the dangerous push_lua() calls. Trying to debug this. (diff)
downloadSledjHamr-dbf4b2b338273b037d28234ed9bc025af8bb565e.zip
SledjHamr-dbf4b2b338273b037d28234ed9bc025af8bb565e.tar.gz
SledjHamr-dbf4b2b338273b037d28234ed9bc025af8bb565e.tar.bz2
SledjHamr-dbf4b2b338273b037d28234ed9bc025af8bb565e.tar.xz
Stick the connection to the love server in the GuiLua structure, and related tweakage.
Diffstat (limited to 'src/extantz')
-rw-r--r--src/extantz/extantz.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c
index 6c68bd2..5122f42 100644
--- a/src/extantz/extantz.c
+++ b/src/extantz/extantz.c
@@ -652,18 +652,6 @@ EAPI_MAIN int elm_main(int argc, char **argv)
652 652
653 ourGlobals.world = ephysicsAdd(&ourGlobals); 653 ourGlobals.world = ephysicsAdd(&ourGlobals);
654 654
655// overlay_add(&ourGlobals);
656 GuiLuaLoad("test", ourGlobals.mainWindow, ourGlobals.world);
657 woMan_add(&ourGlobals);
658 ourGlobals.LSLGuiMess = GuiLuaLoad("LSLGuiMess", ourGlobals.mainWindow, ourGlobals.world);
659 ourGlobals.purkle = GuiLuaLoad("purkle", ourGlobals.mainWindow, ourGlobals.world);
660 ourGlobals.files = filesAdd(&ourGlobals, (char *) elm_app_data_dir_get(), EINA_TRUE, EINA_FALSE);
661
662 // Bump the top toolbar above the windows.
663 evas_object_raise(ourGlobals.tb);
664
665 _on_resize(&ourGlobals, NULL, NULL, NULL);
666
667 // Try to connect to the love server we started before. 655 // Try to connect to the love server we started before.
668 ourGlobals.address = "127.0.0.1"; 656 ourGlobals.address = "127.0.0.1";
669 ourGlobals.port = 8211; 657 ourGlobals.port = 8211;
@@ -678,16 +666,28 @@ EAPI_MAIN int elm_main(int argc, char **argv)
678 else 666 else
679 PC("Failed to connect to server!"); 667 PC("Failed to connect to server!");
680 668
669// overlay_add(&ourGlobals);
670// GuiLuaLoad("test", ourGlobals.mainWindow, ourGlobals.world);
671 woMan_add(&ourGlobals);
672 ourGlobals.LSLGuiMess = GuiLuaLoad("LSLGuiMess", ourGlobals.mainWindow, ourGlobals.server, ourGlobals.world);
673 ourGlobals.purkle = GuiLuaLoad("purkle", ourGlobals.mainWindow, ourGlobals.server, ourGlobals.world);
674 ourGlobals.files = filesAdd(&ourGlobals, (char *) elm_app_data_dir_get(), EINA_TRUE, EINA_FALSE);
675
676 // Bump the top toolbar above the windows.
677 evas_object_raise(ourGlobals.tb);
678
679 _on_resize(&ourGlobals, NULL, NULL, NULL);
680
681 // Setup our callback for clicking in world. 681 // Setup our callback for clicking in world.
682 ourGlobals.scene->clickCb = _onWorldClick; 682 ourGlobals.scene->clickCb = _onWorldClick;
683 683
684 elm_run(); 684 elm_run();
685 685
686 if (ourGlobals.server) ecore_con_server_del(ourGlobals.server);
687
688 ephysics_world_del(ourGlobals.world); 686 ephysics_world_del(ourGlobals.world);
689 ephysics_shutdown(); 687 ephysics_shutdown();
690 688
689 if (ourGlobals.server) ecore_con_server_del(ourGlobals.server);
690
691 if (ourGlobals.win) 691 if (ourGlobals.win)
692 { 692 {
693 Evas_3D_Demo_fini(&ourGlobals); 693 Evas_3D_Demo_fini(&ourGlobals);