| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- //
- // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
- // LICENSE: Atomic Game Engine Editor and Tools EULA
- // Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
- // license information: https://github.com/AtomicGameEngine/AtomicGameEngine
- //
- import EditorEvents = require("../editor/EditorEvents");
- import EditorUI = require("./EditorUI");
- import Preferences = require("editor/Preferences");
- class Shortcuts extends Atomic.ScriptObject {
- constructor() {
- super();
- this.subscribeToEvent("UIShortcut", (ev: Atomic.UIShortcutEvent) => this.handleUIShortcut(ev));
- this.subscribeToEvent("KeyDown", (ev: Atomic.KeyDownEvent) => this.handleKeyDown(ev));
- }
- //this should be moved somewhere else...
- invokePlayOrStopPlayer(debug:boolean = false) {
- this.sendEvent(EditorEvents.SaveAllResources);
- if (Atomic.editorMode.isPlayerEnabled()) {
- this.sendEvent("IPCPlayerExitRequest");
- } else {
- var playerWindow = Preferences.getInstance().playerWindow;
- if (playerWindow) {
- if ((playerWindow.monitor + 1) > Atomic.graphics.getNumMonitors()) {
- //will use default settings if monitor is not available
- var args = "--resizable";
- Atomic.editorMode.playProject(args, debug);
- } else {
- var args = "--windowposx " + playerWindow.x + " --windowposy " + playerWindow.y + " --windowwidth " + playerWindow.width + " --windowheight " + playerWindow.height + " --resizable";
- if (playerWindow.maximized) {
- args += " --maximize";
- }
- Atomic.editorMode.playProject(args, debug);
- }
- } else {
- Atomic.editorMode.playProject("", debug);
- }
- }
- }
- invokeFormatCode() {
- var editor = EditorUI.getCurrentResourceEditor();
- if (editor && editor.typeName == "JSResourceEditor") {
- (<Editor.JSResourceEditor>editor).formatCode();
- }
- }
- invokeFileClose() {
- this.invokeResourceFrameShortcut("close");
- }
- invokeFileSave() {
- this.sendEvent(EditorEvents.SaveResource);
- }
- invokeUndo() {
- this.invokeResourceFrameShortcut("undo");
- }
- invokeRedo() {
- this.invokeResourceFrameShortcut("redo");
- }
- invokeCut() {
- this.invokeResourceFrameShortcut("cut");
- }
- invokeCopy() {
- this.invokeResourceFrameShortcut("copy");
- }
- invokePaste() {
- this.invokeResourceFrameShortcut("paste");
- }
- invokeFrameSelected() {
- this.invokeResourceFrameShortcut("frameselected");
- }
- invokeSelectAll() {
- this.invokeResourceFrameShortcut("selectall");
- }
- invokeGizmoEditModeChanged(mode: Editor.EditMode) {
- this.sendEvent("GizmoEditModeChanged", { mode: mode });
- }
- toggleGizmoAxisMode() {
- var editor = EditorUI.getCurrentResourceEditor();
- if (editor && editor instanceof Editor.SceneEditor3D) {
- var mode = editor.getGizmo().axisMode ? Editor.AXIS_WORLD : Editor.AXIS_LOCAL;
- this.sendEvent("GizmoAxisModeChanged", { mode: mode });
- }
- }
- invokeResourceFrameShortcut(shortcut: string) {
- if (!ToolCore.toolSystem.project) return;
- var resourceFrame = EditorUI.getMainFrame().resourceframe.currentResourceEditor;
- if (resourceFrame) {
- resourceFrame.invokeShortcut(shortcut);
- }
- }
- handleKeyDown(ev: Atomic.KeyDownEvent) {
- // if the right mouse buttons isn't down
- if (!(ev.buttons & Atomic.MOUSEB_RIGHT)) {
- // TODO: Make these customizable
- if (!Atomic.ui.focusedWidget && !this.cmdKeyDown()) {
- if (ev.key == Atomic.KEY_W) {
- this.invokeGizmoEditModeChanged(Editor.EDIT_MOVE);
- } else if (ev.key == Atomic.KEY_E) {
- this.invokeGizmoEditModeChanged(Editor.EDIT_ROTATE);
- } else if (ev.key == Atomic.KEY_R) {
- this.invokeGizmoEditModeChanged(Editor.EDIT_SCALE);
- } else if (ev.key == Atomic.KEY_X) {
- this.toggleGizmoAxisMode();
- } else if (ev.key == Atomic.KEY_F) {
- this.invokeFrameSelected();
- }
- }
- }
- }
- cmdKeyDown(): boolean {
- var cmdKey;
- if (Atomic.platform == "MacOSX") {
- cmdKey = (Atomic.input.getKeyDown(Atomic.KEY_LGUI) || Atomic.input.getKeyDown(Atomic.KEY_RGUI));
- } else {
- cmdKey = (Atomic.input.getKeyDown(Atomic.KEY_LCTRL) || Atomic.input.getKeyDown(Atomic.KEY_RCTRL));
- }
- return cmdKey;
- }
- // global shortcut handler
- handleUIShortcut(ev: Atomic.UIShortcutEvent) {
- var cmdKey = this.cmdKeyDown();
- if (cmdKey) {
- if (ev.key == Atomic.KEY_S) {
- this.invokeFileSave();
- }
- else if (ev.key == Atomic.KEY_W) {
- this.invokeFileClose();
- }
- else if (ev.key == Atomic.KEY_I) {
- this.invokeFormatCode();
- }
- else if (ev.key == Atomic.KEY_P) {
- this.invokePlayOrStopPlayer();
- //if shift is pressed
- } else if (ev.qualifiers & Atomic.QUAL_SHIFT) {
- if (ev.key == Atomic.KEY_B) {
- EditorUI.getModelOps().showBuildSettings();
- }
- } else if (ev.key == Atomic.KEY_B) {
- EditorUI.getModelOps().showBuild();
- }
- }
- }
- }
- export = Shortcuts;
|