/* Copyright (C) 2001-2004 Stephane Magnenat & Luc-Olivier de Charrière for any question or comment contact us at or This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include namespace GAGCore { CursorManager::CursorManager() { nextType = currentType = CURSOR_NORMAL; currentFrame = 0; } void CursorManager::load(void) { cursors.clear(); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/normal")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/click")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/direction_lu")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/direction_u")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/direction_ru")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/direction_r")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/direction_rd")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/direction_d")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/direction_ld")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/direction_l")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/wait")); cursors.push_back(Toolkit::getSprite("data/gfx/cursor/mark")); } void CursorManager::nextTypeFromMouse(DrawableSurface *ds, int x, int y, bool button) { // if we are in a user mode, we don't change it if (nextType > CURSOR_LEFT) return; // button override directions const int limit = 20; if (button) { nextType = CURSOR_CLICK; return; } // cursor change if near end of screen int w = ds->getW(); int h = ds->getH(); if (xh-limit) nextType = CURSOR_LEFT_DOWN; else nextType = CURSOR_LEFT; } else if (x>w-limit) { if (yh-limit) nextType = CURSOR_RIGHT_DOWN; else nextType = CURSOR_RIGHT; } else { if (yh-limit) nextType = CURSOR_DOWN; else nextType = CURSOR_NORMAL; } } void CursorManager::setNextType(CursorType type) { nextType = type; } void CursorManager::draw(DrawableSurface *ds, int x, int y) { if (currentFrame >= cursors[static_cast(currentType)]->getFrameCount()) { currentType = nextType; currentFrame = 0; } Sprite *sprite = cursors[static_cast(currentType)]; ds->drawSprite(x-(sprite->getW(currentFrame)>>1), y-(sprite->getH(currentFrame)>>1), sprite, currentFrame); currentFrame++; } }