Merge remote-tracking branch 'upstream/master' into zvision
Conflicts: engines/zvision/animation/rlf_animation.cpp engines/zvision/animation_control.h engines/zvision/core/console.cpp engines/zvision/core/events.cpp engines/zvision/cursors/cursor.cpp engines/zvision/cursors/cursor_manager.cpp engines/zvision/cursors/cursor_manager.h engines/zvision/fonts/truetype_font.cpp engines/zvision/graphics/render_manager.cpp engines/zvision/graphics/render_manager.h engines/zvision/inventory/inventory_manager.h engines/zvision/inventory_manager.h engines/zvision/meta_animation.h engines/zvision/module.mk engines/zvision/scripting/actions.cpp engines/zvision/scripting/control.h engines/zvision/scripting/controls/animation_control.cpp engines/zvision/scripting/controls/animation_control.h engines/zvision/scripting/controls/input_control.cpp engines/zvision/scripting/controls/lever_control.cpp engines/zvision/scripting/controls/timer_node.cpp engines/zvision/scripting/controls/timer_node.h engines/zvision/scripting/puzzle.h engines/zvision/scripting/scr_file_handling.cpp engines/zvision/scripting/script_manager.cpp engines/zvision/scripting/script_manager.h engines/zvision/sidefx.cpp engines/zvision/sound/zork_raw.cpp engines/zvision/sound/zork_raw.h engines/zvision/video/video.cpp engines/zvision/video/zork_avi_decoder.h engines/zvision/zvision.cpp engines/zvision/zvision.h
This commit is contained in:
commit
45589950c0
4226 changed files with 252007 additions and 79644 deletions
143
engines/zvision/scripting/controls/input_control.cpp
Normal file
143
engines/zvision/scripting/controls/input_control.cpp
Normal file
|
@ -0,0 +1,143 @@
|
|||
/* 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 2
|
||||
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "common/scummsys.h"
|
||||
|
||||
#include "zvision/input_control.h"
|
||||
|
||||
#include "zvision/zvision.h"
|
||||
#include "zvision/script_manager.h"
|
||||
#include "zvision/string_manager.h"
|
||||
#include "zvision/render_manager.h"
|
||||
#include "zvision/utility.h"
|
||||
|
||||
#include "common/str.h"
|
||||
#include "common/stream.h"
|
||||
#include "common/rect.h"
|
||||
|
||||
|
||||
namespace ZVision {
|
||||
|
||||
InputControl::InputControl(ZVision *engine, uint32 key, Common::SeekableReadStream &stream)
|
||||
: Control(engine, key),
|
||||
_nextTabstop(0),
|
||||
_focused(false),
|
||||
_textChanged(false),
|
||||
_cursorOffset(0) {
|
||||
// Loop until we find the closing brace
|
||||
Common::String line = stream.readLine();
|
||||
trimCommentsAndWhiteSpace(&line);
|
||||
|
||||
while (!stream.eos() && !line.contains('}')) {
|
||||
if (line.matchString("*rectangle*", true)) {
|
||||
int x1;
|
||||
int y1;
|
||||
int x2;
|
||||
int y2;
|
||||
|
||||
sscanf(line.c_str(), "%*[^(](%d %d %d %d)", &x1, &y1, &x2, &y2);
|
||||
|
||||
_textRectangle = Common::Rect(x1, y1, x2, y2);
|
||||
} else if (line.matchString("*aux_hotspot*", true)) {
|
||||
int x1;
|
||||
int y1;
|
||||
int x2;
|
||||
int y2;
|
||||
|
||||
sscanf(line.c_str(), "%*[^(](%d %d %d %d)", &x1, &y1, &x2, &y2);
|
||||
|
||||
_headerRectangle = Common::Rect(x1, y1, x2, y2);
|
||||
} else if (line.matchString("*string_init*", true)) {
|
||||
uint fontFormatNumber;
|
||||
|
||||
sscanf(line.c_str(), "%*[^(](%u)", &fontFormatNumber);
|
||||
|
||||
_textStyle = _engine->getStringManager()->getTextStyle(fontFormatNumber);
|
||||
} else if (line.matchString("*next_tabstop*", true)) {
|
||||
sscanf(line.c_str(), "%*[^(](%u)", &_nextTabstop);
|
||||
} else if (line.matchString("*cursor_animation*", true)) {
|
||||
char fileName[25];
|
||||
|
||||
sscanf(line.c_str(), "%*[^(](%25s %*u)", fileName);
|
||||
|
||||
_cursorAnimationFileName = Common::String(fileName);
|
||||
} else if (line.matchString("*cursor_dimensions*", true)) {
|
||||
// Ignore, use the dimensions in the animation file
|
||||
} else if (line.matchString("*cursor_animation_frames*", true)) {
|
||||
// Ignore, use the frame count in the animation file
|
||||
} else if (line.matchString("*focus*", true)) {
|
||||
_focused = true;
|
||||
}
|
||||
|
||||
line = stream.readLine();
|
||||
trimCommentsAndWhiteSpace(&line);
|
||||
}
|
||||
}
|
||||
|
||||
bool InputControl::onMouseUp(const Common::Point &screenSpacePos, const Common::Point &backgroundImageSpacePos) {
|
||||
_engine->getScriptManager()->focusControl(_key);
|
||||
return false;
|
||||
}
|
||||
|
||||
void InputControl::onKeyDown(Common::KeyState keyState) {
|
||||
if (!_focused) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (keyState.keycode == Common::KEYCODE_BACKSPACE) {
|
||||
_currentInputText.deleteLastChar();
|
||||
} else if (keyState.keycode == Common::KEYCODE_TAB) {
|
||||
_focused = false;
|
||||
// Focus the next input control
|
||||
_engine->getScriptManager()->focusControl(_nextTabstop);
|
||||
} else {
|
||||
// Otherwise, append the new character to the end of the current text
|
||||
|
||||
uint16 asciiValue = keyState.ascii;
|
||||
// We only care about text values
|
||||
if (asciiValue >= 32 && asciiValue <= 126) {
|
||||
_currentInputText += (char)asciiValue;
|
||||
_textChanged = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool InputControl::process(uint32 deltaTimeInMillis) {
|
||||
if (!_focused) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// First see if we need to render the text
|
||||
if (_textChanged) {
|
||||
// Blit the text using the RenderManager
|
||||
//Common::Rect destRect = _engine->getRenderManager()->renderTextToWorkingWindow(_key, _currentInputText, _textStyle.font, _textRectangle.left, _textRectangle.top, _textStyle.color, _textRectangle.width());
|
||||
|
||||
//_cursorOffset = destRect.left - _textRectangle.left;
|
||||
}
|
||||
|
||||
// Render the next frame of the animation
|
||||
// TODO: Implement animation handling
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
} // End of namespace ZVision
|
Loading…
Add table
Add a link
Reference in a new issue