From 2c1dc81db735d0da2cf25afd34b93c2f228ebb2d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 12 Dec 2014 22:18:14 +0300 Subject: Add chat command for moving camera. New chat command: /movecamera x y Alias: /cameramove x y --- src/actions/commands.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/actions/commands.cpp') diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index eb10e8a77..dd93da0e8 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -34,6 +34,7 @@ #include "being/playerrelations.h" #include "gui/chatconsts.h" +#include "gui/viewport.h" #include "gui/windows/chatwindow.h" #include "gui/windows/socialwindow.h" @@ -472,6 +473,19 @@ impHandler(navigateTo) return true; } +impHandler(moveCamera) +{ + int x = 0; + int y = 0; + + if (!viewport) + return false; + + if (parse2Int(event.args, x, y)) + viewport->moveCameraToPosition(x * mapTileSize, y * mapTileSize); + return true; +} + impHandler(imitation) { if (!localPlayer) -- cgit v1.2.3-70-g09d2