1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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, see <http://www.gnu.org/licenses/>.
*
*/
/*
* This code is based on the CRAB engine
*
* Copyright (c) Arvind Raja Yadav
*
* Licensed under MIT
*
*/
#include "graphics/screen.h"
#include "crab/crab.h"
#include "crab/input/cursor.h"
#include "crab/ui/slider.h"
namespace Crab {
using namespace pyrodactyl::ui;
using namespace pyrodactyl::image;
using namespace pyrodactyl::input;
void Slider::load(rapidxml::xml_node<char> *node, const int &min, const int &max, const int &val) {
if (nodeValid(node)) {
_knob.load(node->first_node("knob"), false);
_bar.load(node->first_node("bar"));
_knob.x = _bar.x + ((_bar.w - _knob.w) * _value / (_max - _min));
_knob.y = _bar.y;
_knob.w = g_engine->_imageManager->getTexture(_knob._img._normal).w();
_knob.h = g_engine->_imageManager->getTexture(_knob._img._normal).h();
_knob._canmove = true;
_min = min;
_max = max;
_value = val;
_caption.load(node->first_node("caption"), &_bar);
}
}
bool Slider::handleEvents(const Common::Event &Event) {
if (_isGreyed) // do not entertain events when greyed is set
return false;
// A person is moving the knob
if (_knob.handleEvents(Event) == BUAC_GRABBED) {
int dx = g_engine->_mouse->_motion.x - _bar.x;
if (dx < 0)
dx = 0;
else if (dx > (_bar.w - _knob.w))
dx = (_bar.w - _knob.w);
_knob.x = _bar.x + dx;
_knob.y = _bar.y;
_value = _min + (((_max - _min) * (_knob.x - _bar.x)) / (_bar.w - _knob.w));
return true;
}
// If a person clicks on the slider bar, the knob needs to travel there
if ((Event.type == Common::EVENT_LBUTTONDOWN || Event.type == Common::EVENT_RBUTTONDOWN) && _bar.contains(g_engine->_mouse->_button.x, g_engine->_mouse->_button.y)) {
_knob.x = g_engine->_mouse->_button.x;
_knob.y = _bar.y;
_value = _min + (((_max - _min) * (_knob.x - _bar.x)) / (_bar.w - _knob.w));
return true;
}
return false;
}
void Slider::draw() {
_bar.draw();
_caption.draw(false);
_knob.draw();
greyOut();
}
// This function only works when slider is drawn over the textured background in Unrest
// Constants have been found by hit and trial
void Slider::greyOut() {
if (!_isGreyed)
return;
int w = _bar.w + _bar.x - _caption.x;
int h = _knob.h > _caption.h ? _knob.h : _caption.h;
byte a, r, g, b;
for (int y = _caption.y; y < _caption.y + h; y++) {
uint32 *ptr = (uint32 *)g_engine->_screen->getBasePtr(_caption.x, y);
for (int x = 0; x < w; x++, ptr++) {
g_engine->_format->colorToARGB(*ptr, a, r, g, b);
if (x >= _knob.x - _caption.x && x <= _knob.w + _knob.x - _caption.x) {
r /= 3;
g /= 3;
b /= 2;
*ptr = g_engine->_format->ARGBToColor(a, r, g, b);
} else if (g > 0x37) {
r >>= 1;
g >>= 1;
b >>= 1;
*ptr = g_engine->_format->ARGBToColor(a, r, g, b);
}
}
}
}
void Slider::value(const int val) {
_value = val;
if (_value < _min)
_value = _min;
else if (_value > _max)
_value = _max;
_knob.x = _bar.x + ((_bar.w - _knob.w) * (_value - _min)) / (_max - _min);
}
void Slider::setUI() {
_bar.setUI();
_knob.setUI();
_caption.setUI(&_bar);
_knob.x = _bar.x + ((_bar.w - _knob.w) * _value / (_max - _min));
_knob.y = _bar.y;
_knob.w = g_engine->_imageManager->getTexture(_knob._img._normal).w();
_knob.h = g_engine->_imageManager->getTexture(_knob._img._normal).h();
}
} // End of namespace Crab
|