| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495 |
- /*
- * Copyright (c) 2012-2017 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE
- */
- using Gdk; // Pixbuf
- using Gee;
- using Gtk;
- namespace Crown
- {
- public enum ToolType
- {
- PLACE,
- MOVE,
- ROTATE,
- SCALE
- }
- public enum SnapMode
- {
- RELATIVE,
- ABSOLUTE
- }
- public enum ReferenceSystem
- {
- LOCAL,
- WORLD
- }
- public enum StartGame
- {
- NORMAL,
- TEST
- }
- public class LevelEditor : Gtk.Window
- {
- private Project _project;
- // Editor state
- private double _grid_size;
- private double _rotation_snap;
- private bool _show_grid;
- private bool _snap_to_grid;
- private bool _debug_render_world;
- private bool _debug_physics_world;
- private ToolType _tool_type;
- private SnapMode _snap_mode;
- private ReferenceSystem _reference_system;
- // Engine connections
- private GLib.Subprocess _compiler_process;
- private GLib.Subprocess _engine_process;
- private GLib.Subprocess _game_process;
- private ConsoleClient _compiler;
- private ConsoleClient _engine;
- private ConsoleClient _game;
- // Level data
- private Database _db;
- private Level _level;
- private string _level_filename;
- private ResourceCompiler _resource_compiler;
- // Widgets
- private ConsoleView _console_view;
- private EngineView _engine_view;
- private LevelTreeView _level_treeview;
- private LevelLayersTreeView _level_layers_treeview;
- private PropertiesView _properties_view;
- /*
- private GraphStore _graph_store;
- private GraphView _graph_view;
- */
- private PreferencesDialog _preferences_dialog;
- private Gtk.Alignment _alignment_engine;
- private Gtk.Alignment _alignment_level_tree_view;
- private Gtk.Alignment _alignment_properties_view;
- private Gtk.ActionGroup _action_group;
- private Gtk.UIManager _ui_manager;
- private Gtk.Toolbar _toolbar;
- private Gtk.Paned _pane_left;
- private Gtk.Paned _pane_right;
- private Gtk.Notebook _notebook_left;
- private Gtk.Notebook _notebook_right;
- private Gtk.Box _vbox;
- private Gtk.FileFilter _file_filter;
- private ResourceBrowser _resource_browser;
- const Gtk.ActionEntry[] action_entries =
- {
- { "menu-file", null, "_File", null, null, null },
- { "new", null, "New", "<ctrl>N", null, on_new },
- { "open", null, "Open...", "<ctrl>O", null, on_open },
- { "save", null, "Save", "<ctrl>S", null, on_save },
- { "save-as", null, "Save As...", "<shift><ctrl>S", null, on_save_as },
- { "import", null, "Import", null, null, null },
- { "import-sprites", null, "Sprites...", null, null, on_import_sprites },
- { "import-meshes", null, "Meshes...", null, null, on_import_meshes },
- { "import-sounds", null, "Sounds...", null, null, on_import_sounds },
- { "import-textures", null, "Textures...", null, null, on_import_textures },
- { "preferences", null, "Preferences", null, null, on_preferences },
- { "quit", null, "Quit", "<ctrl>Q", null, on_quit },
- { "menu-edit", null, "_Edit", null, null, null },
- { "undo", null, "Undo", "<ctrl>Z", null, on_undo },
- { "redo", null, "Redo", "<shift><ctrl>Z", null, on_redo },
- { "duplicate", null, "Duplicate", "<ctrl>D", null, on_duplicate },
- { "delete", null, "Delete", "<ctrl>K", null, on_delete },
- { "menu-grid", null, "Grid", null, null, null },
- { "grid-custom", null, "Custom", "<ctrl>G", null, on_custom_grid },
- { "menu-rotation-snap", null, "Rotation Snap", null, null, null },
- { "rotation-snap-custom", null, "Custom", "<ctrl>H", null, on_rotation_snap },
- { "menu-create", null, "Create", null, null, null },
- { "menu-primitives", null, "Primitives", null, null, null },
- { "primitive-cube", null, "Cube", null, null, on_create_cube },
- { "primitive-sphere", null, "Sphere", null, null, on_create_sphere },
- { "primitive-cone", null, "Cone", null, null, on_create_cone },
- { "primitive-cylinder", null, "Cylinder", null, null, on_create_cylinder },
- { "primitive-plane", null, "Plane", null, null, on_create_plane },
- { "camera", null, "Camera", null, null, on_create_camera },
- { "light", null, "Light", null, null, on_create_light },
- { "sound-source", null, "Sound Source", null, null, on_create_sound_source },
- { "menu-camera", null, "Camera", null, null, null },
- { "camera-view-perspective", null, "Perspective", "KP_5", null, on_camera_view_perspective },
- { "camera-view-front", null, "View Front", "KP_1", null, on_camera_view_front },
- { "camera-view-back", null, "View Back", "<ctrl>KP_1", null, on_camera_view_back },
- { "camera-view-right", null, "View Right", "KP_3", null, on_camera_view_right },
- { "camera-view-left", null, "View Left", "<ctrl>KP_3", null, on_camera_view_left },
- { "camera-view-top", null, "View Top", "KP_7", null, on_camera_view_top },
- { "camera-view-bottom", null, "View Bottom", "<ctrl>KP_7", null, on_camera_view_bottom },
- { "menu-engine", null, "En_gine", null, null, null },
- { "menu-view", null, "View", null, null, null },
- { "resource-browser", null, "Resource Browser", "<ctrl>P", null, on_resource_browser },
- { "restart", null, "_Restart", null, null, on_engine_restart },
- { "reload-lua", null, "Reload Lua", "F7", null, on_reload_lua },
- { "menu-run", null, "_Run", null, null, null },
- { "test-level", "run", "Test Level", "F5", "Test Level", on_test_level },
- { "run-game", null, "Run Game", null, null, on_run_game },
- { "menu-help", null, "Help", null, null, null },
- { "manual", null, "Manual", "F1", null, on_manual },
- { "report-issue", null, "Report an Issue", null, null, on_report_issue },
- { "open-last-log", null, "Open last.log", null, null, on_open_last_log },
- { "about", null, "About", null, null, on_about }
- };
- const Gtk.RadioActionEntry[] grid_entries =
- {
- { "grid-0.1", null, "0.1m", null, null, 10 },
- { "grid-0.2", null, "0.2m", null, null, 20 },
- { "grid-0.5", null, "0.5m", null, null, 50 },
- { "grid-1", null, "1m", null, null, 100 },
- { "grid-2", null, "2m", null, null, 200 },
- { "grid-5", null, "5m", null, null, 500 }
- };
- const RadioActionEntry[] rotation_snap_entries =
- {
- { "rotation-snap-1", null, "1°", null, null, 1 },
- { "rotation-snap-15", null, "15°", null, null, 15 },
- { "rotation-snap-30", null, "30°", null, null, 30 },
- { "rotation-snap-45", null, "45°", null, null, 45 },
- { "rotation-snap-90", null, "90°", null, null, 90 },
- { "rotation-snap-180", null, "180°", null, null, 180 }
- };
- const RadioActionEntry[] tool_entries =
- {
- { "place", "tool-place", "Place", null, "Place", (int)ToolType.PLACE },
- { "move", "tool-move", "Move", null, "Move", (int)ToolType.MOVE },
- { "rotate", "tool-rotate", "Rotate", null, "Rotate", (int)ToolType.ROTATE },
- { "scale", "tool-scale", "Scale", null, "Scale", (int)ToolType.SCALE }
- };
- const RadioActionEntry[] snap_mode_entries =
- {
- { "snap-relative", "reference-local", "Relative Snap", null, "Relative Snap", (int)SnapMode.RELATIVE },
- { "snap-absolute", "reference-world", "Absolute Snap", null, "Absolute Snap", (int)SnapMode.ABSOLUTE }
- };
- const RadioActionEntry[] reference_system_entries =
- {
- { "reference-system-local", "axis-local", "Local Axis", null, "Local Axis", (int)ReferenceSystem.LOCAL },
- { "reference-system-world", "axis-world", "World Axis", null, "World Axis", (int)ReferenceSystem.WORLD }
- };
- const ToggleActionEntry[] snap_to_entries =
- {
- { "snap-to-grid", "snap-to-grid", "Snap To Grid", "<ctrl>U", "Snap To Grid", on_snap_to_grid, true },
- { "grid-show", null, "Show Grid", null, "Show Grid", on_show_grid, true }
- };
- const ToggleActionEntry[] view_entries =
- {
- { "debug-render-world", null, "Debug Render World", null, null, on_debug_render_world, false },
- { "debug-physics-world", null, "Debug Physics World", null, null, on_debug_physics_world, false }
- };
- public LevelEditor(Project project)
- {
- this.title = "Level Editor";
- _project = project;
- // Editor state
- _grid_size = 1.0;
- _rotation_snap = 15.0;
- _show_grid = true;
- _snap_to_grid = true;
- _debug_render_world = false;
- _debug_physics_world = false;
- _tool_type = ToolType.MOVE;
- _snap_mode = SnapMode.RELATIVE;
- _reference_system = ReferenceSystem.LOCAL;
- // Engine connections
- _compiler_process = null;
- _engine_process = null;
- _game_process = null;
- _compiler = new ConsoleClient();
- _compiler.connected.connect(on_compiler_connected);
- _compiler.disconnected.connect(on_compiler_disconnected);
- _compiler.message_received.connect(on_message_received);
- _engine = new ConsoleClient();
- _engine.connected.connect(on_engine_connected);
- _engine.disconnected.connect(on_engine_disconnected);
- _engine.message_received.connect(on_message_received);
- _game = new ConsoleClient();
- _game.connected.connect(on_game_connected);
- _game.disconnected.connect(on_game_disconnected);
- _game.message_received.connect(on_message_received);
- // Level data
- _db = new Database();
- _level = new Level(_db, _engine, _project.source_dir(), _project.toolchain_dir());
- _level_filename = null;
- _resource_compiler = new ResourceCompiler(_compiler);
- // Widgets
- _console_view = new ConsoleView(_engine, _project);
- _level_treeview = new LevelTreeView(_db, _level);
- _level_layers_treeview = new LevelLayersTreeView(_db, _level);
- _properties_view = new PropertiesView(_level);
- /*
- _graph_store = new GraphStore();
- _graph_view = new GraphView(_graph_store);
- */
- _alignment_engine = new Gtk.Alignment(0, 0, 1, 1);
- _alignment_level_tree_view = new Gtk.Alignment(0, 0, 1, 1);
- _alignment_properties_view = new Gtk.Alignment(0, 0, 1, 1);
- _alignment_engine.add(new StartingCompiler());
- _alignment_level_tree_view.add(new StartingCompiler());
- _alignment_properties_view.add(new StartingCompiler());
- start_compiler();
- try
- {
- Gtk.IconTheme.add_builtin_icon("tool-place", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/tool-place.png"));
- Gtk.IconTheme.add_builtin_icon("tool-move", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/tool-move.png"));
- Gtk.IconTheme.add_builtin_icon("tool-rotate", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/tool-rotate.png"));
- Gtk.IconTheme.add_builtin_icon("tool-scale", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/tool-scale.png"));
- Gtk.IconTheme.add_builtin_icon("axis-local", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/axis-local.png"));
- Gtk.IconTheme.add_builtin_icon("axis-world", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/axis-world.png"));
- Gtk.IconTheme.add_builtin_icon("snap-to-grid", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/snap-to-grid.png"));
- Gtk.IconTheme.add_builtin_icon("reference-local", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/reference-local.png"));
- Gtk.IconTheme.add_builtin_icon("reference-world", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/reference-world.png"));
- Gtk.IconTheme.add_builtin_icon("run", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/run.png"));
- Gtk.IconTheme.add_builtin_icon("level-tree", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/level-tree.png"));
- Gtk.IconTheme.add_builtin_icon("level-layers", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/level-layers.png"));
- Gtk.IconTheme.add_builtin_icon("layer-visible", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/layer-visible.png"));
- Gtk.IconTheme.add_builtin_icon("layer-locked", 16, new Pixbuf.from_resource("/org/crown/ui/icons/theme/layer-locked.png"));
- }
- catch (Error e)
- {
- stderr.printf(e.message);
- }
- _action_group = new Gtk.ActionGroup("group");
- _action_group.add_actions(action_entries, this);
- _action_group.add_radio_actions(grid_entries, (int)(_grid_size*100.0), this.on_grid_changed);
- _action_group.add_radio_actions(rotation_snap_entries, (int)_rotation_snap, this.on_rotation_snap_changed);
- _action_group.add_radio_actions(tool_entries, (int)_tool_type, on_tool_changed);
- _action_group.add_radio_actions(snap_mode_entries, (int)_snap_mode, on_snap_mode_changed);
- _action_group.add_radio_actions(reference_system_entries, (int)_reference_system, on_reference_system_changed);
- _action_group.add_toggle_actions(snap_to_entries, this);
- _action_group.add_toggle_actions(view_entries, this);
- _ui_manager = new UIManager();
- try
- {
- _ui_manager.add_ui_from_resource("/org/crown/level_editor/level_editor.xml");
- _ui_manager.insert_action_group(_action_group, 0);
- add_accel_group(_ui_manager.get_accel_group());
- }
- catch (Error e)
- {
- error(e.message);
- }
- _toolbar = _ui_manager.get_widget("/toolbar") as Toolbar;
- _toolbar.set_icon_size(Gtk.IconSize.SMALL_TOOLBAR);
- _toolbar.set_style(Gtk.ToolbarStyle.ICONS);
- _pane_left = new Gtk.Paned(Gtk.Orientation.VERTICAL);
- _pane_left.pack1(_alignment_engine, true, true);
- _pane_left.pack2(_console_view, true, true);
- Gtk.Box vb = new Gtk.Box(Gtk.Orientation.VERTICAL, 0);
- vb.pack_start(_toolbar, false, false, 0);
- vb.pack_start(_pane_left, true, true, 0);
- _notebook_right = new Notebook();
- _notebook_right.show_border = false;
- _notebook_right.append_page(_level_treeview, new Gtk.Image.from_icon_name("level-tree", IconSize.SMALL_TOOLBAR));
- _notebook_right.append_page(_level_layers_treeview, new Gtk.Image.from_icon_name("level-layers", IconSize.SMALL_TOOLBAR));
- Gtk.Paned rb = new Gtk.Paned(Gtk.Orientation.VERTICAL);
- rb.pack1(_alignment_level_tree_view, true, true);
- rb.pack2(_alignment_properties_view, true, true);
- _pane_right = new Gtk.Paned(Gtk.Orientation.HORIZONTAL);
- _pane_right.pack1(vb, true, false);
- _pane_right.pack2(rb, true, false);
- _notebook_left = new Notebook();
- _notebook_left.show_border = false;
- _notebook_left.append_page(_pane_right, new Gtk.Label("Level"));
- /*
- _notebook_left.append_page(_graph_view, new Gtk.Label("Nodes"));
- */
- MenuBar menu = (MenuBar)_ui_manager.get_widget("/menubar");
- _vbox = new Gtk.Box(Gtk.Orientation.VERTICAL, 0);
- _vbox.pack_start(menu, false, false, 0);
- _vbox.pack_start(_notebook_left, true, true, 0);
- _file_filter = new FileFilter();
- _file_filter.set_filter_name("Level (*.level)");
- _file_filter.add_pattern("*.level");
- _resource_browser = new ResourceBrowser(_project);
- _resource_browser.relative_to = _toolbar;
- _resource_browser.resource_selected.connect(on_resource_browser_resource_selected);
- _resource_browser.delete_event.connect(() => { _resource_browser.hide(); return true; });
- _resource_browser.modal = true;
- // Save level once every 5 minutes.
- GLib.Timeout.add_seconds(5*3600, save_timeout);
- this.destroy.connect(this.on_destroy);
- this.delete_event.connect(this.on_delete_event);
- this.key_press_event.connect(this.on_key_press);
- this.key_release_event.connect(this.on_key_release);
- this.add(_vbox);
- this.maximize();
- this.show_all();
- }
- private bool on_key_press(Gdk.EventKey ev)
- {
- if (ev.keyval == Gdk.Key.Control_L)
- _engine.send_script(LevelEditorApi.key_down("left_ctrl"));
- else if (ev.keyval == Gdk.Key.Shift_L)
- _engine.send_script(LevelEditorApi.key_down("left_shift"));
- return false;
- }
- private bool on_key_release(Gdk.EventKey ev)
- {
- if (ev.keyval == Gdk.Key.Control_L)
- _engine.send_script(LevelEditorApi.key_up("left_ctrl"));
- else if (ev.keyval == Gdk.Key.Shift_L)
- _engine.send_script(LevelEditorApi.key_up("left_shift"));
- return false;
- }
- private void on_resource_browser_resource_selected(string type, string name)
- {
- _engine.send_script(LevelEditorApi.set_placeable(type, name));
- _action_group.get_action("place").activate();
- }
- private void on_compiler_connected()
- {
- _console_view.logi("Editor", "Compiler connected");
- _compiler.receive_async();
- }
- private void on_compiler_disconnected()
- {
- _console_view.logi("Editor", "Compiler disconnected");
- }
- private void on_engine_connected()
- {
- _console_view.logi("Editor", "Engine connected");
- _engine.receive_async();
- }
- private void on_engine_disconnected()
- {
- _console_view.logi("Editor", "Engine disconnected");
- }
- private void on_game_connected()
- {
- _console_view.logi("Editor", "Game connected");
- _game.receive_async();
- }
- private void on_game_disconnected()
- {
- _console_view.logi("Editor", "Game disconnected");
- _project.delete_level_editor_test_level();
- }
- private static int stringcmp(ref string a, ref string b)
- {
- return Posix.strcmp(a, b);
- }
- private void on_message_received(ConsoleClient client, uint8[] json)
- {
- try
- {
- Hashtable msg = JSON.decode(json) as Hashtable;
- string msg_type = msg["type"] as string;
- if (msg_type == "message")
- {
- _console_view.log((string)msg["system"], (string)msg["message"], (string)msg["severity"]);
- }
- else if (msg_type == "add_file")
- {
- string path = (string)msg["path"];
- _project.add_file(path);
- }
- else if (msg_type == "remove_file")
- {
- string path = (string)msg["path"];
- _project.remove_file(path);
- }
- else if (msg_type == "compile")
- {
- Guid id = Guid.parse((string)msg["id"]);
- if (msg.has_key("start"))
- {
- // FIXME
- }
- else if (msg.has_key("success"))
- {
- _resource_compiler.finished((bool)msg["success"]);
- }
- }
- else if (msg_type == "unit_spawned")
- {
- string id = (string) msg["id"];
- string name = (string) msg["name"];
- ArrayList<Value?> pos = (ArrayList<Value?>)msg["position"];
- ArrayList<Value?> rot = (ArrayList<Value?>)msg["rotation"];
- ArrayList<Value?> scl = (ArrayList<Value?>)msg["scale"];
- _level.on_unit_spawned(Guid.parse(id)
- , name
- , Vector3.from_array(pos)
- , Quaternion.from_array(rot)
- , Vector3.from_array(scl)
- );
- }
- else if (msg_type == "sound_spawned")
- {
- string id = (string) msg["id"];
- string name = (string) msg["name"];
- ArrayList<Value?> pos = (ArrayList<Value?>)msg["position"];
- ArrayList<Value?> rot = (ArrayList<Value?>)msg["rotation"];
- ArrayList<Value?> scl = (ArrayList<Value?>)msg["scale"];
- double range = (double) msg["range"];
- double volume = (double) msg["volume"];
- bool loop = (bool) msg["loop"];
- _level.on_sound_spawned(Guid.parse(id)
- , name
- , Vector3.from_array(pos)
- , Quaternion.from_array(rot)
- , Vector3.from_array(scl)
- , range
- , volume
- , loop
- );
- }
- else if (msg_type == "move_objects")
- {
- Hashtable ids = (Hashtable)msg["ids"];
- Hashtable new_positions = (Hashtable)msg["new_positions"];
- Hashtable new_rotations = (Hashtable)msg["new_rotations"];
- Hashtable new_scales = (Hashtable)msg["new_scales"];
- string[] keys = ids.keys.to_array();
- Posix.qsort(keys, keys.length, sizeof(string), (Posix.compar_fn_t)stringcmp);
- Guid[] n_ids = new Guid[keys.length];
- Vector3[] n_positions = new Vector3[keys.length];
- Quaternion[] n_rotations = new Quaternion[keys.length];
- Vector3[] n_scales = new Vector3[keys.length];
- for (int i = 0; i < keys.length; ++i)
- {
- string k = keys[i];
- n_ids[i] = Guid.parse((string)ids[k]);
- n_positions[i] = Vector3.from_array((ArrayList<Value?>)(new_positions[k]));
- n_rotations[i] = Quaternion.from_array((ArrayList<Value?>)new_rotations[k]);
- n_scales[i] = Vector3.from_array((ArrayList<Value?>)new_scales[k]);
- }
- _level.on_move_objects(n_ids, n_positions, n_rotations, n_scales);
- }
- else if (msg_type == "selection")
- {
- Hashtable objects = (Hashtable)msg["objects"];
- string[] keys = objects.keys.to_array();
- Posix.qsort(keys, keys.length, sizeof(string), (Posix.compar_fn_t)stringcmp);
- Guid[] ids = new Guid[keys.length];
- for (int i = 0; i < keys.length; ++i)
- {
- string k = keys[i];
- ids[i] = Guid.parse((string)objects[k]);
- }
- _level.on_selection(ids);
- }
- else if (msg_type == "error")
- {
- _console_view.loge("Editor", "Error: " + (string)msg["message"]);
- }
- else
- {
- _console_view.loge("Editor", "Unknown message type: " + msg_type);
- }
- }
- catch (Error e)
- {
- _console_view.loge("Editor", e.message);
- }
- // Receive next message
- client.receive_async();
- }
- private void send_state()
- {
- StringBuilder sb = new StringBuilder();
- sb.append(LevelEditorApi.set_grid_size(_grid_size));
- sb.append(LevelEditorApi.set_rotation_snap(_rotation_snap));
- sb.append(LevelEditorApi.enable_show_grid(_show_grid));
- sb.append(LevelEditorApi.enable_snap_to_grid(_snap_to_grid));
- sb.append(LevelEditorApi.enable_debug_render_world(_debug_render_world));
- sb.append(LevelEditorApi.enable_debug_physics_world(_debug_physics_world));
- sb.append(LevelEditorApi.set_tool_type(_tool_type));
- sb.append(LevelEditorApi.set_snap_mode(_snap_mode));
- sb.append(LevelEditorApi.set_reference_system(_reference_system));
- _engine.send_script(sb.str);
- }
- private bool on_button_press(EventButton ev)
- {
- // Prevent accelerators to step on camera's toes
- remove_accel_group(_ui_manager.get_accel_group());
- return true;
- }
- private bool on_button_release(EventButton ev)
- {
- add_accel_group(_ui_manager.get_accel_group());
- return true;
- }
- private void start_compiler()
- {
- string args[] =
- {
- ENGINE_EXE,
- "--source-dir", _project.source_dir(),
- "--map-source-dir", "core", _project.toolchain_dir(),
- "--server",
- "--wait-console",
- null
- };
- GLib.SubprocessLauncher sl = new GLib.SubprocessLauncher(SubprocessFlags.NONE);
- sl.set_cwd(ENGINE_DIR);
- try
- {
- _compiler_process = sl.spawnv(args);
- }
- catch (Error e)
- {
- _console_view.loge("Editor", e.message);
- }
- for (int tries = 0; !_compiler.is_connected() && tries < 5; ++tries)
- {
- _compiler.connect("127.0.0.1", CROWN_DEFAULT_SERVER_PORT);
- GLib.Thread.usleep(100*1000);
- }
- _resource_compiler.compile.begin(_project.data_dir(), _project.platform(), (obj, res) => {
- if (_resource_compiler.compile.end(res))
- {
- if (_engine_view != null)
- return;
- _engine_view = new EngineView(_engine);
- _engine_view.realized.connect(on_engine_view_realized);
- _engine_view.button_press_event.connect(on_button_press);
- _engine_view.button_release_event.connect(on_button_release);
- _alignment_engine.remove(_alignment_engine.get_child());
- _alignment_level_tree_view.remove(_alignment_level_tree_view.get_child());
- _alignment_properties_view.remove(_alignment_properties_view.get_child());
- _alignment_engine.add(_engine_view);
- _alignment_level_tree_view.add(_notebook_right);
- _alignment_properties_view.add(_properties_view);
- _alignment_engine.show_all();
- _alignment_level_tree_view.show_all();
- _alignment_properties_view.show_all();
- }
- });
- }
- private void stop_compiler()
- {
- _compiler.close();
- if (_compiler_process != null)
- {
- _compiler_process.force_exit();
- _compiler_process.wait();
- }
- }
- private void start_engine(uint window_xid)
- {
- string args[] =
- {
- ENGINE_EXE,
- "--data-dir", _project.data_dir(),
- "--boot-dir", LEVEL_EDITOR_BOOT_DIR,
- "--parent-window", window_xid.to_string(),
- "--wait-console",
- null
- };
- GLib.SubprocessLauncher sl = new GLib.SubprocessLauncher(SubprocessFlags.NONE);
- sl.set_cwd(ENGINE_DIR);
- try
- {
- _engine_process = sl.spawnv(args);
- }
- catch (Error e)
- {
- _console_view.loge("Editor", e.message);
- }
- for (int tries = 0; !_engine.is_connected() && tries < 5; ++tries)
- {
- _engine.connect("127.0.0.1", 10001);
- GLib.Thread.usleep(100*1000);
- }
- new_level();
- send_state();
- }
- private void stop_engine()
- {
- _engine.close();
- if (_engine_process != null)
- {
- _engine_process.force_exit();
- _engine_process.wait();
- }
- }
- private void restart_engine()
- {
- stop_engine();
- start_engine(_engine_view.window_id);
- }
- private void start_game(StartGame sg)
- {
- _level.save(_project.level_editor_test_level());
- _db.touch();
- _resource_compiler.compile.begin(_project.data_dir(), _project.platform(), (obj, res) => {
- if (_resource_compiler.compile.end(res))
- {
- string args[] =
- {
- ENGINE_EXE,
- "--data-dir", _project.data_dir(),
- "--console-port", "12345",
- "--wait-console",
- "--lua-string", sg == StartGame.TEST ? "TEST=true" : "",
- null
- };
- GLib.SubprocessLauncher sl = new GLib.SubprocessLauncher(SubprocessFlags.NONE);
- sl.set_cwd(ENGINE_DIR);
- try
- {
- _game_process = sl.spawnv(args);
- }
- catch (Error e)
- {
- _console_view.loge("Editor", e.message);
- }
- for (int tries = 0; !_game.is_connected() && tries < 5; ++tries)
- {
- _game.connect("127.0.0.1", 12345);
- GLib.Thread.usleep(100*1000);
- }
- }
- });
- }
- private void stop_game()
- {
- _game.close();
- if (_game_process != null)
- {
- _game_process.force_exit();
- _game_process.wait();
- }
- }
- private void on_engine_view_realized()
- {
- start_engine(_engine_view.window_id);
- }
- private void on_tool_changed(Gtk.Action action)
- {
- RadioAction ra = (RadioAction)action;
- _tool_type = (ToolType)ra.current_value;
- send_state();
- }
- private void on_snap_mode_changed(Gtk.Action action)
- {
- RadioAction ra = (RadioAction)action;
- _snap_mode = (SnapMode)ra.current_value;
- send_state();
- }
- private void on_reference_system_changed(Gtk.Action action)
- {
- RadioAction ra = (RadioAction)action;
- _reference_system = (ReferenceSystem)ra.current_value;
- send_state();
- }
- private void on_grid_changed(Gtk.Action action)
- {
- RadioAction ra = (RadioAction)action;
- _grid_size = (float)ra.current_value/100.0;
- send_state();
- }
- private void on_rotation_snap_changed(Gtk.Action action)
- {
- RadioAction ra = (RadioAction)action;
- _rotation_snap = (float)ra.current_value;
- send_state();
- }
- private void new_level()
- {
- _level_filename = null;
- _level.load_empty_level();
- }
- private void load()
- {
- FileChooserDialog fcd = new FileChooserDialog("Open..."
- , this
- , FileChooserAction.OPEN
- , "Cancel"
- , ResponseType.CANCEL
- , "Open"
- , ResponseType.ACCEPT
- );
- fcd.add_filter(_file_filter);
- fcd.set_current_folder(_project.source_dir());
- if (fcd.run() == (int)ResponseType.ACCEPT)
- {
- string filename = fcd.get_filename();
- if (filename.has_suffix(".level"))
- {
- _level_filename = filename;
- _level.load(_level_filename);
- send_state();
- }
- }
- fcd.destroy();
- }
- private bool save_as()
- {
- bool saved = false;
- FileChooserDialog fcd = new FileChooserDialog("Save As..."
- , this
- , FileChooserAction.SAVE
- , "Cancel"
- , ResponseType.CANCEL
- , "Save"
- , ResponseType.ACCEPT
- );
- fcd.add_filter(_file_filter);
- fcd.set_current_folder(_project.source_dir());
- if (fcd.run() == (int)ResponseType.ACCEPT)
- {
- _level_filename = fcd.get_filename();
- if (!_level_filename.has_suffix(".level"))
- _level_filename += ".level";
- _level.save(_level_filename);
- saved = true;
- }
- fcd.destroy();
- return saved;
- }
- private bool save()
- {
- bool saved = false;
- if (_level_filename == null)
- {
- saved = save_as();
- }
- else
- {
- _level.save(_level_filename);
- saved = true;
- }
- return saved;
- }
- private bool save_timeout()
- {
- if (_level_filename != null)
- save();
- return true;
- }
- private void shutdown()
- {
- if (_resource_browser != null)
- _resource_browser.destroy();
- if (_preferences_dialog != null)
- _preferences_dialog.destroy();
- stop_game();
- stop_engine();
- stop_compiler();
- Gtk.main_quit();
- }
- private void quit()
- {
- if (!_db.changed())
- {
- shutdown();
- return;
- }
- Gtk.MessageDialog md = new Gtk.MessageDialog(this
- , Gtk.DialogFlags.MODAL
- , Gtk.MessageType.WARNING
- , Gtk.ButtonsType.NONE
- , "File changed, save?"
- );
- md.add_button("Quit without Saving", ResponseType.NO);
- md.add_button("Cancel", ResponseType.CANCEL);
- md.add_button("Save", ResponseType.YES);
- md.set_default_response(ResponseType.YES);
- int rt = md.run();
- md.destroy();
- if (rt == (int)ResponseType.YES && save() || rt == (int)ResponseType.NO)
- shutdown();
- }
- private void on_new()
- {
- if (!_db.changed())
- {
- new_level();
- send_state();
- return;
- }
- Gtk.MessageDialog md = new Gtk.MessageDialog(this
- , Gtk.DialogFlags.MODAL
- , Gtk.MessageType.WARNING
- , Gtk.ButtonsType.NONE
- , "File changed, save?"
- );
- md.add_button("New without Saving", ResponseType.NO);
- md.add_button("Cancel", ResponseType.CANCEL);
- md.add_button("Save", ResponseType.YES);
- md.set_default_response(ResponseType.YES);
- int rt = md.run();
- md.destroy();
- if (rt == (int)ResponseType.YES && save() || rt == (int)ResponseType.NO)
- {
- new_level();
- send_state();
- }
- }
- private void on_open(Gtk.Action action)
- {
- if (!_db.changed())
- {
- load();
- return;
- }
- Gtk.MessageDialog md = new Gtk.MessageDialog(this
- , Gtk.DialogFlags.MODAL
- , Gtk.MessageType.WARNING
- , Gtk.ButtonsType.NONE
- , "File changed, save?"
- );
- md.add_button("Open without Saving", ResponseType.NO);
- md.add_button("Cancel", ResponseType.CANCEL);
- md.add_button("Save", ResponseType.YES);
- md.set_default_response(ResponseType.YES);
- int rt = md.run();
- md.destroy();
- if (rt == (int)ResponseType.YES && save() || rt == (int)ResponseType.NO)
- load();
- }
- private void on_save(Gtk.Action action)
- {
- save();
- }
- private void on_save_as(Gtk.Action action)
- {
- save_as();
- }
- private void on_import_begin(Gtk.FileFilter ff, out SList<string> filenames, out string filename)
- {
- FileChooserDialog fcd = new FileChooserDialog("Import..."
- , this
- , FileChooserAction.OPEN
- , "Cancel"
- , ResponseType.CANCEL
- , "Open"
- , ResponseType.ACCEPT
- );
- fcd.select_multiple = true;
- fcd.add_filter(ff);
- if (fcd.run() != (int)ResponseType.ACCEPT)
- {
- fcd.destroy();
- return;
- }
- filenames = fcd.get_filenames();
- fcd.destroy();
- FileChooserDialog dst = new FileChooserDialog("Select destination folder..."
- , this
- , FileChooserAction.SELECT_FOLDER
- , "Cancel"
- , ResponseType.CANCEL
- , "Select"
- , ResponseType.ACCEPT
- );
- dst.set_current_folder(_project.source_dir());
- if (dst.run() != (int)ResponseType.ACCEPT)
- {
- dst.destroy();
- return;
- }
- filename = dst.get_filename();
- dst.destroy();
- }
- private void on_import_end()
- {
- _resource_compiler.compile.begin(_project.data_dir(), _project.platform(), (obj, res) => {
- _resource_compiler.compile.end(res);
- });
- }
- private void on_import_sprites(Gtk.Action action)
- {
- Gtk.FileFilter ff = new FileFilter();
- ff.set_filter_name("Sprite (*.png)");
- ff.add_pattern("*.png");
- SList<string> filenames;
- string filename;
- on_import_begin(ff, out filenames, out filename);
- _project.import_sprites(filenames, filename);
- on_import_end();
- }
- private void on_import_meshes(Gtk.Action action)
- {
- Gtk.FileFilter ff = new FileFilter();
- ff.set_filter_name("Mesh (*.mesh)");
- ff.add_pattern("*.mesh");
- SList<string> filenames;
- string filename;
- on_import_begin(ff, out filenames, out filename);
- _project.import_meshes(filenames, filename);
- on_import_end();
- }
- private void on_import_sounds(Gtk.Action action)
- {
- Gtk.FileFilter ff = new FileFilter();
- ff.set_filter_name("Sound (*.wav)");
- ff.add_pattern("*.wav");
- SList<string> filenames;
- string filename;
- on_import_begin(ff, out filenames, out filename);
- _project.import_sounds(filenames, filename);
- on_import_end();
- }
- private void on_import_textures(Gtk.Action action)
- {
- Gtk.FileFilter ff = new FileFilter();
- ff.set_filter_name("Texture (*.png, *.tga, *.dds, *.ktx, *.pvr)");
- ff.add_pattern("*.png");
- ff.add_pattern("*.tga");
- ff.add_pattern("*.dds");
- ff.add_pattern("*.ktx");
- ff.add_pattern("*.pvr");
- SList<string> filenames;
- string filename;
- on_import_begin(ff, out filenames, out filename);
- _project.import_textures(filenames, filename);
- on_import_end();
- }
- private void on_preferences(Gtk.Action action)
- {
- if (_preferences_dialog == null)
- {
- _preferences_dialog = new PreferencesDialog(_engine);
- _preferences_dialog.set_transient_for(this);
- _preferences_dialog.delete_event.connect(() => { _preferences_dialog.hide(); return true; });
- }
- _preferences_dialog.show_all();
- }
- private void on_quit(Gtk.Action action)
- {
- quit();
- }
- private void on_show_grid(Gtk.Action action)
- {
- ToggleAction ta = (ToggleAction)action;
- _show_grid = ta.active;
- send_state();
- }
- private void on_custom_grid()
- {
- MessageDialog dg = new MessageDialog(this
- , DialogFlags.MODAL
- , MessageType.OTHER
- , ButtonsType.OK_CANCEL
- , "Grid size in meters:"
- );
- SpinButtonDouble sb = new SpinButtonDouble(_grid_size, 0.1, 1000);
- (dg.message_area as Gtk.Box).add(sb);
- dg.show_all();
- if (dg.run() == (int)ResponseType.OK)
- {
- _grid_size = sb.value;
- send_state();
- }
- dg.destroy();
- }
- private void on_rotation_snap(Gtk.Action action)
- {
- MessageDialog dg = new MessageDialog(this
- , DialogFlags.MODAL
- , MessageType.OTHER
- , ButtonsType.OK_CANCEL
- , "Rotation snap in degrees:"
- );
- SpinButtonDouble sb = new SpinButtonDouble(_rotation_snap, 1.0, 180.0);
- (dg.message_area as Gtk.Box).add(sb);
- dg.show_all();
- if (dg.run() == (int)ResponseType.OK)
- {
- _rotation_snap = sb.value;
- send_state();
- }
- dg.destroy();
- }
- private void on_create_cube(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/primitives/cube"));
- _action_group.get_action("place").activate();
- }
- private void on_create_sphere(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/primitives/sphere"));
- _action_group.get_action("place").activate();
- }
- private void on_create_cone(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/primitives/cone"));
- _action_group.get_action("place").activate();
- }
- private void on_create_cylinder(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/primitives/cylinder"));
- _action_group.get_action("place").activate();
- }
- private void on_create_plane(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/primitives/plane"));
- _action_group.get_action("place").activate();
- }
- private void on_create_camera(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/camera"));
- _action_group.get_action("place").activate();
- }
- private void on_create_light(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/light"));
- _action_group.get_action("place").activate();
- }
- private void on_create_sound_source(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("sound", ""));
- _action_group.get_action("place").activate();
- }
- private void on_camera_view_perspective(Gtk.Action action)
- {
- _engine.send_script("LevelEditor:camera_view_perspective()");
- }
- private void on_camera_view_front(Gtk.Action action)
- {
- _engine.send_script("LevelEditor:camera_view_front()");
- }
- private void on_camera_view_back(Gtk.Action action)
- {
- _engine.send_script("LevelEditor:camera_view_back()");
- }
- private void on_camera_view_right(Gtk.Action action)
- {
- _engine.send_script("LevelEditor:camera_view_right()");
- }
- private void on_camera_view_left(Gtk.Action action)
- {
- _engine.send_script("LevelEditor:camera_view_left()");
- }
- private void on_camera_view_top(Gtk.Action action)
- {
- _engine.send_script("LevelEditor:camera_view_top()");
- }
- private void on_camera_view_bottom(Gtk.Action action)
- {
- _engine.send_script("LevelEditor:camera_view_bottom()");
- }
- private void on_resource_browser(Gtk.Action action)
- {
- _resource_browser.show_all();
- }
- private void on_engine_restart(Gtk.Action action)
- {
- restart_engine();
- }
- private void on_reload_lua(Gtk.Action action)
- {
- _resource_compiler.compile.begin(_project.data_dir(), _project.platform(), (obj, res) => {
- if (_resource_compiler.compile.end(res))
- {
- _engine.send(EngineApi.pause());
- _engine.send(EngineApi.reload("lua", "core/editors/level_editor/level_editor"));
- _engine.send(EngineApi.unpause());
- }
- });
- }
- public void on_snap_to_grid(Gtk.Action action)
- {
- ToggleAction ta = (ToggleAction)action;
- _snap_to_grid = ta.active;
- send_state();
- }
- private void on_debug_render_world(Gtk.Action action)
- {
- ToggleAction ta = (ToggleAction)action;
- _debug_render_world = ta.active;
- send_state();
- }
- private void on_debug_physics_world(Gtk.Action action)
- {
- ToggleAction ta = (ToggleAction)action;
- _debug_physics_world = ta.active;
- send_state();
- }
- private void on_test_level(Gtk.Action action)
- {
- start_game(StartGame.TEST);
- }
- private void on_run_game(Gtk.Action action)
- {
- start_game(StartGame.NORMAL);
- }
- private void on_undo(Gtk.Action action)
- {
- _db.undo();
- }
- private void on_redo(Gtk.Action action)
- {
- _db.redo();
- }
- private void on_duplicate(Gtk.Action action)
- {
- _level.duplicate_selected_objects();
- }
- private void on_delete(Gtk.Action action)
- {
- _level.destroy_selected_objects();
- }
- private void on_manual(Gtk.Action action)
- {
- try
- {
- AppInfo.launch_default_for_uri("https://taylor001.github.io/crown/html", null);
- }
- catch (Error e)
- {
- _console_view.loge("Editor", e.message);
- }
- }
- private void on_report_issue(Gtk.Action action)
- {
- try
- {
- AppInfo.launch_default_for_uri("https://github.com/taylor001/crown/issues", null);
- }
- catch (Error e)
- {
- _console_view.loge("Editor", e.message);
- }
- }
- private void on_open_last_log(Gtk.Action action)
- {
- File file = File.new_for_path(_project.data_dir() + "/last.log");
- try
- {
- AppInfo.launch_default_for_uri(file.get_uri(), null);
- }
- catch (Error e)
- {
- _console_view.loge("Editor", e.message);
- }
- }
- private void on_about(Gtk.Action action)
- {
- Gtk.AboutDialog dlg = new Gtk.AboutDialog();
- dlg.set_destroy_with_parent(true);
- dlg.set_transient_for(this);
- dlg.set_modal(true);
- try
- {
- dlg.set_logo(new Pixbuf.from_resource("/org/crown/ui/icons/128x128/pepper.png"));
- }
- catch (Error e)
- {
- stderr.printf("%s\n", e.message);
- }
- dlg.program_name = "Crown Game Engine";
- dlg.version = CROWN_VERSION;
- dlg.website = "https://github.com/taylor001/crown";
- dlg.copyright = "Copyright (c) 2012-2017 Daniele Bartolini and individual contributors.";
- dlg.license = "Crown Game Engine.\n"
- + "Copyright (c) 2012-2017 Daniele Bartolini and individual contributors.\n"
- + "\n"
- + "This program is free software; you can redistribute it and/or\n"
- + "modify it under the terms of the GNU General Public License\n"
- + "as published by the Free Software Foundation; either version 2\n"
- + "of the License, or (at your option) any later version.\n"
- + "\n"
- + "This program is distributed in the hope that it will be useful,\n"
- + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
- + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
- + "GNU General Public License for more details.\n"
- + "\n"
- + "You should have received a copy of the GNU General Public License\n"
- + "along with this program; if not, write to the Free Software\n"
- + "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"
- ;
- dlg.run();
- dlg.destroy();
- }
- private void on_destroy()
- {
- Gtk.main_quit();
- }
- private bool on_delete_event()
- {
- quit();
- return true;
- }
- }
- public static int main (string[] args)
- {
- Gtk.init(ref args);
- Intl.setlocale(LocaleCategory.ALL, "C");
- Gtk.Settings.get_default().gtk_application_prefer_dark_theme = true;
- Gtk.CssProvider provider = new Gtk.CssProvider();
- Gdk.Screen screen = Gdk.Display.get_default().get_default_screen();
- Gtk.StyleContext.add_provider_for_screen(screen, provider, STYLE_PROVIDER_PRIORITY_APPLICATION);
- provider.load_from_resource("/org/crown/ui/theme/style.css");
- string source_dir = "";
- if (args.length > 1)
- {
- if (!GLib.FileUtils.test(args[1], FileTest.EXISTS) || !GLib.FileUtils.test(args[1], FileTest.IS_DIR))
- {
- stdout.printf("Source directory does not exist or it is not a directory\n");
- return -1;
- }
- source_dir = args[1];
- }
- else
- {
- stdout.printf("You must specify a source directory\n");
- return -1;
- }
- string toolchain_dir = "";
- if (args.length > 2)
- {
- if (!GLib.FileUtils.test(args[2], FileTest.EXISTS) || !GLib.FileUtils.test(args[2], FileTest.IS_DIR))
- {
- stdout.printf("Toolchain directory does not exist or it is not a directory\n");
- return -1;
- }
- toolchain_dir = args[2];
- }
- else
- {
- bool found = false;
- /// More desirable paths come first
- string toolchain_paths[] =
- {
- "../..",
- "../../../samples"
- };
- for (int i = 0; i < toolchain_paths.length; ++i)
- {
- string path = Path.build_filename(toolchain_paths[i], "core");
- // Try to locate the toolchain directory
- if (GLib.FileUtils.test(path, FileTest.EXISTS) && GLib.FileUtils.test(path, FileTest.IS_DIR))
- {
- toolchain_dir = toolchain_paths[i];
- found = true;
- break;
- }
- }
- if (!found)
- {
- stdout.printf("Unable to find the toolchain directory\n");
- return -1;
- }
- }
- Project project = new Project();
- project.load(source_dir, toolchain_dir);
- var editor = new LevelEditor(project);
- editor.show_all();
- Gtk.main();
- return 0;
- }
- }
|