From c6ecbbecfeffe935a77bd79754cb59fbd1446a3e Mon Sep 17 00:00:00 2001 From: David Athay Date: Tue, 28 Apr 2009 16:26:34 +0100 Subject: Made map non-resizable. Stopped emote spamming. --- src/gui/minimap.cpp | 9 ++++++--- src/net/ea/beinghandler.cpp | 6 +++++- tmw.cbp | 4 ---- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index 174151c6..8fc4c9ff 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -47,7 +47,10 @@ Minimap::Minimap(): setWindowName("MiniMap"); mShow = config.getValue(getWindowName() + "Show", true); setDefaultSize(5, 25, 100, 100); - setResizable(true); + // set this to false as the minimap window size is changed + //depending on the map size + setResizable(false); + setDefaultVisible(true); setSaveVisible(true); @@ -98,7 +101,7 @@ void Minimap::setMap(Map *map) setMinWidth(mapWidth > titleWidth ? mapWidth : titleWidth); setMinHeight(mapHeight); - + mWidthProportion = (float) mMapImage->getWidth() / map->getWidth(); mHeightProportion = (float) mMapImage->getHeight() / map->getHeight(); @@ -190,7 +193,7 @@ void Minimap::draw(gcn::Graphics *graphics) default: continue; } - + const int offsetHeight = (int) ((dotSize - 1) * mHeightProportion); const int offsetWidth = (int) ((dotSize - 1) * mWidthProportion); diff --git a/src/net/ea/beinghandler.cpp b/src/net/ea/beinghandler.cpp index 4b61ec61..b6eab2c7 100644 --- a/src/net/ea/beinghandler.cpp +++ b/src/net/ea/beinghandler.cpp @@ -329,7 +329,11 @@ void BeingHandler::handleMessage(MessageIn &msg) } if (player_relations.hasPermission(dstBeing, PlayerRelation::EMOTE)) - dstBeing->setEmote(msg.readInt8(), EMOTION_TIME); + { + // only set emote if one doesnt already exist + if (!dstBeing->mEmotion) + dstBeing->setEmote(msg.readInt8(), EMOTION_TIME); + } break; diff --git a/tmw.cbp b/tmw.cbp index a1194c15..96b9ad2f 100644 --- a/tmw.cbp +++ b/tmw.cbp @@ -660,10 +660,6 @@