wesnoth/src/cursor.cpp

235 lines
4.9 KiB
C++

/* $Id$ */
/*
Copyright (C) 2003-5 by David White <davidnwhite@verizon.net>
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY.
See the COPYING file for more details.
*/
#include "global.hpp"
#include "cursor.hpp"
#include "game_config.hpp"
#include "image.hpp"
#include "preferences.hpp"
#include "scoped_resource.hpp"
#include "sdl_utils.hpp"
#include "video.hpp"
#include "SDL.h"
#include <iostream>
#include <vector>
namespace
{
bool use_colour_cursors()
{
return game_config::editor == false && preferences::use_colour_cursors();
}
SDL_Cursor* create_cursor(surface surf)
{
const surface nsurf(make_neutral_surface(surf));
if(nsurf == NULL) {
return NULL;
}
//the width must be a multiple of 8 (SDL requirement)
size_t cursor_width = nsurf->w;
if((cursor_width%8) != 0) {
cursor_width += 8 - (cursor_width%8);
}
std::vector<Uint8> data((cursor_width*nsurf->h)/8,0);
std::vector<Uint8> mask(data.size(),0);
//see http://sdldoc.csn.ul.ie/sdlcreatecursor.php for documentation on
//the format that data has to be in to pass to SDL_CreateCursor
surface_lock lock(nsurf);
const Uint32* const pixels = reinterpret_cast<Uint32*>(lock.pixels());
for(size_t y = 0; y != nsurf->h; ++y) {
for(size_t x = 0; x != nsurf->w; ++x) {
Uint8 r,g,b,a;
SDL_GetRGBA(pixels[y*nsurf->w + x],nsurf->format,&r,&g,&b,&a);
const size_t index = y*cursor_width + x;
const size_t shift = 7 - (index%8);
const Uint8 trans = (a < 128 ? 0 : 1) << shift;
const Uint8 black = (trans == 0 || (r+g+b)/3 > 128 ? 0 : 1) << shift;
data[index/8] |= black;
mask[index/8] |= trans;
}
}
return SDL_CreateCursor(&data[0],&mask[0],cursor_width,nsurf->h,0,0);
}
SDL_Cursor* cache[cursor::NUM_CURSORS] = { NULL, NULL, NULL, NULL };
//this array must have members corresponding to cursor::CURSOR_TYPE enum members
const std::string images[cursor::NUM_CURSORS] = { "normal.png", "wait.png", "move.png", "attack.png", "select.png" };
cursor::CURSOR_TYPE current_cursor = cursor::NUM_CURSORS;
int cursor_x = -1, cursor_y = -1;
surface cursor_buf = NULL;
bool have_focus = true;
SDL_Cursor* get_cursor(cursor::CURSOR_TYPE type)
{
if(cache[type] == NULL) {
static const std::string prefix = "cursors-bw/";
const surface surf(image::get_image(prefix + images[type],image::UNSCALED));
cache[type] = create_cursor(surf);
}
return cache[type];
}
void clear_cache()
{
for(size_t n = 0; n != cursor::NUM_CURSORS; ++n) {
if(cache[n] != NULL) {
SDL_FreeCursor(cache[n]);
cache[n] = NULL;
}
}
if(cursor_buf != NULL) {
cursor_buf = NULL;
}
}
}
namespace cursor
{
manager::manager()
{
use_colour(use_colour_cursors());
}
manager::~manager()
{
clear_cache();
SDL_ShowCursor(SDL_ENABLE);
}
void use_colour(bool value)
{
if(game_config::editor == false) {
SDL_ShowCursor(value ? SDL_DISABLE : SDL_ENABLE);
}
}
void set(CURSOR_TYPE type)
{
current_cursor = type;
if(type == NUM_CURSORS) {
return;
}
SDL_Cursor* const cursor = get_cursor(type);
if(cursor != NULL) {
SDL_SetCursor(cursor);
}
}
void set_focus(bool focus)
{
have_focus = focus;
}
setter::setter(CURSOR_TYPE type) : old_(current_cursor)
{
set(type);
}
setter::~setter()
{
set(old_);
}
void draw(surface screen)
{
if(use_colour_cursors() == false) {
return;
}
if(current_cursor == NUM_CURSORS) {
return;
}
if(have_focus == false) {
cursor_buf = NULL;
return;
}
int new_cursor_x, new_cursor_y;
SDL_GetMouseState(&new_cursor_x,&new_cursor_y);
const bool must_update = new_cursor_x != cursor_x || new_cursor_y != cursor_y;
cursor_x = new_cursor_x;
cursor_y = new_cursor_y;
const surface surf(image::get_image("cursors/" + images[current_cursor],image::UNSCALED));
if(surf == NULL) {
//fall back to b&w cursors
std::cerr << "could not load colour cursors. Falling back to hardware cursors\n";
preferences::set_colour_cursors(false);
return;
}
if(cursor_buf != NULL && (cursor_buf->w != surf->w || cursor_buf->h != surf->h)) {
cursor_buf = NULL;
}
if(cursor_buf == NULL) {
cursor_buf = create_compatible_surface(surf);
if(cursor_buf == NULL) {
std::cerr << "Could not allocate surface for mouse cursor\n";
return;
}
}
//save the screen area where the cursor is being drawn onto the back buffer
SDL_Rect area = {cursor_x,cursor_y,surf->w,surf->h};
SDL_BlitSurface(screen,&area,cursor_buf,NULL);
//blit the surface
SDL_BlitSurface(surf,NULL,screen,&area);
if(must_update) {
update_rect(area);
}
}
void undraw(surface screen)
{
if(use_colour_cursors() == false) {
return;
}
if(cursor_buf == NULL) {
return;
}
SDL_Rect area = {cursor_x,cursor_y,cursor_buf->w,cursor_buf->h};
SDL_BlitSurface(cursor_buf,NULL,screen,&area);
update_rect(area);
}
}