| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221 |
- /*
- * Copyright (c) 2012-2016 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE-GPLv2
- */
- 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 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;
- // Level data
- private Database _db;
- private Level _level;
- private string _level_filename;
- private ResourceCompiler _resource_compiler;
- // Widgets
- private StartingCompiler _starting_compiler;
- 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...", null, null, on_save_as },
- { "import", null, "Import...", null, null, on_import },
- { "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", "G", null, on_custom_grid },
- { "menu-rotation-snap", null, "Rotation Snap", null, null, null },
- { "rotation-snap-custom", null, "Custom", "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-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 },
- { "game-run", "run", "Run Game", "F5", 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", "Q", "Place", (int)ToolType.PLACE },
- { "move", "tool-move", "Move", "W", "Move", (int)ToolType.MOVE },
- { "rotate", "tool-rotate", "Rotate", "E", "Rotate", (int)ToolType.ROTATE },
- { "scale", "tool-scale", "Scale", "R", "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 = 45.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);
- // 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);
- _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);
- */
- _starting_compiler = new StartingCompiler();
- _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(_starting_compiler);
- _alignment_level_tree_view.add(_starting_compiler);
- _alignment_properties_view.add(_starting_compiler);
- start_compiler();
- try
- {
- Gtk.IconTheme.add_builtin_icon("tool-place", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/tool-place.png"));
- Gtk.IconTheme.add_builtin_icon("tool-move", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/tool-move.png"));
- Gtk.IconTheme.add_builtin_icon("tool-rotate", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/tool-rotate.png"));
- Gtk.IconTheme.add_builtin_icon("tool-scale", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/tool-scale.png"));
- Gtk.IconTheme.add_builtin_icon("axis-local", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/axis-local.png"));
- Gtk.IconTheme.add_builtin_icon("axis-world", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/axis-world.png"));
- Gtk.IconTheme.add_builtin_icon("snap-to-grid", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/snap-to-grid.png"));
- Gtk.IconTheme.add_builtin_icon("reference-local", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/reference-local.png"));
- Gtk.IconTheme.add_builtin_icon("reference-world", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/reference-world.png"));
- Gtk.IconTheme.add_builtin_icon("run", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/run.png"));
- Gtk.IconTheme.add_builtin_icon("level-tree", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/level-tree.png"));
- Gtk.IconTheme.add_builtin_icon("level-layers", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/level-layers.png"));
- Gtk.IconTheme.add_builtin_icon("layer-visible", 16, new Pixbuf.from_resource("/org/pepper/icons/theme/layer-visible.png"));
- Gtk.IconTheme.add_builtin_icon("layer-locked", 16, new Pixbuf.from_resource("/org/pepper/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/pepper/level_editor_menu.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(_notebook_right, 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");
- // 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));
- }
- private void on_compiler_connected()
- {
- _console_view.log("Compiler connected.", "info");
- _compiler.receive_async();
- }
- private void on_compiler_disconnected()
- {
- _console_view.log("Compiler disconnected.", "info");
- }
- private void on_engine_connected()
- {
- _console_view.log("Engine connected.", "info");
- _engine.receive_async();
- }
- private void on_engine_disconnected()
- {
- _console_view.log("Engine disconnected.", "info");
- }
- 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["message"], (string)msg["severity"]);
- }
- 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);
- }
- }
- catch (Error e)
- {
- _console_view.log(e.message, "error");
- }
- // 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",
- null
- };
- GLib.SubprocessLauncher sl = new GLib.SubprocessLauncher(SubprocessFlags.STDOUT_SILENCE | SubprocessFlags.STDERR_SILENCE);
- sl.set_cwd(ENGINE_DIR);
- try
- {
- _compiler_process = sl.spawnv(args);
- }
- catch (Error e)
- {
- _console_view.log(e.message, "error");
- }
- while (!_compiler.is_connected())
- {
- _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(_level_treeview);
- _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();
- }
- 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.STDOUT_SILENCE | SubprocessFlags.STDERR_SILENCE);
- sl.set_cwd(ENGINE_DIR);
- try
- {
- _engine_process = sl.spawnv(args);
- }
- catch (Error e)
- {
- _console_view.log(e.message, "error");
- }
- while (!_engine.is_connected())
- {
- _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();
- }
- private void restart_engine()
- {
- stop_engine();
- start_engine(_engine_view.window_id);
- }
- private void start_game()
- {
- if (!save())
- return;
- _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",
- 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.log(e.message, "error");
- }
- }
- });
- }
- private void stop_game()
- {
- if (_game_process != null)
- _game_process.force_exit();
- }
- 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();
- _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(Gtk.Action action)
- {
- FileChooserDialog fcd = new FileChooserDialog("Import..."
- , this
- , FileChooserAction.OPEN
- , "Cancel"
- , ResponseType.CANCEL
- , "Open"
- , ResponseType.ACCEPT
- );
- fcd.select_multiple = true;
- if (fcd.run() == (int)ResponseType.ACCEPT)
- {
- // TODO
- }
- fcd.destroy();
- }
- 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"));
- }
- private void on_create_sphere(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/primitives/sphere"));
- }
- private void on_create_cone(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/primitives/cone"));
- }
- private void on_create_cylinder(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/primitives/cylinder"));
- }
- private void on_create_plane(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/primitives/plane"));
- }
- private void on_create_camera(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/camera"));
- }
- private void on_create_light(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("unit", "core/units/light"));
- }
- private void on_create_sound_source(Gtk.Action action)
- {
- _engine.send_script(LevelEditorApi.set_placeable("sound", ""));
- }
- private void on_resource_browser(Gtk.Action action)
- {
- if (_resource_browser == null)
- {
- _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;
- }
- _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_run_game(Gtk.Action action)
- {
- start_game();
- }
- 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/manual.html", null);
- }
- catch (Error e)
- {
- _console_view.log(e.message, "error");
- }
- }
- 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.log(e.message, "error");
- }
- }
- 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.log(e.message, "error");
- }
- }
- 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/pepper/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-2016 Daniele Bartolini and individual contributors.";
- dlg.license = "Crown Game Engine.\n"
- + "Copyright (c) 2012-2016 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/pepper/theme/style.css");
- Project project = new Project();
- project.load(args[1], args[2], args[3]);
- var editor = new LevelEditor(project);
- editor.show_all();
- Gtk.main();
- return 0;
- }
- }
|