git repos / blockattack-game

blame: source/code/ReadKeyboard.cpp

normal view · raw

89c4a3a6 sago007 2008-08-29 14:32 1
/*
c53e6443 sago007 2012-04-17 11:04 2
===========================================================================
c53e6443 sago007 2012-04-17 11:04 3
blockattack - Block Attack - Rise of the Blocks
e373cd75 Poul Sander 2018-11-07 19:21 4
Copyright (C) 2005-2018 Poul Sander
89c4a3a6 sago007 2008-08-29 14:32 5
c53e6443 sago007 2012-04-17 11:04 6
This program is free software: you can redistribute it and/or modify
c53e6443 sago007 2012-04-17 11:04 7
it under the terms of the GNU General Public License as published by
c53e6443 sago007 2012-04-17 11:04 8
the Free Software Foundation, either version 2 of the License, or
c53e6443 sago007 2012-04-17 11:04 9
(at your option) any later version.
89c4a3a6 sago007 2008-08-29 14:32 10
c53e6443 sago007 2012-04-17 11:04 11
This program is distributed in the hope that it will be useful,
c53e6443 sago007 2012-04-17 11:04 12
but WITHOUT ANY WARRANTY; without even the implied warranty of
c53e6443 sago007 2012-04-17 11:04 13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
c53e6443 sago007 2012-04-17 11:04 14
GNU General Public License for more details.
89c4a3a6 sago007 2008-08-29 14:32 15
c53e6443 sago007 2012-04-17 11:04 16
You should have received a copy of the GNU General Public License
c53e6443 sago007 2012-04-17 11:04 17
along with this program.  If not, see http://www.gnu.org/licenses/
89c4a3a6 sago007 2008-08-29 14:32 18
c53e6443 sago007 2012-04-17 11:04 19
Source information and contacts persons can be found at
e373cd75 Poul Sander 2018-11-07 19:21 20
https://blockattack.net
c53e6443 sago007 2012-04-17 11:04 21
===========================================================================
89c4a3a6 sago007 2008-08-29 14:32 22
*/
89c4a3a6 sago007 2008-08-29 14:32 23
89c4a3a6 sago007 2008-08-29 14:32 24
#include "ReadKeyboard.h"
227d1f4e sago007 2015-12-05 07:34 25
#include "utf8.h"
0e1e83de sago007 2015-12-25 13:30 26
#include <iostream>
cdb45e21 sago007 2015-11-22 21:35 27
ecef5838 sago007 2015-11-24 20:01 28
ReadKeyboard::ReadKeyboard(void) {
c53e6443 sago007 2012-04-17 11:04 29
	maxLength = 16;
d26562ba sago007 2015-12-04 23:29 30
	position = text_string.begin();
89c4a3a6 sago007 2008-08-29 14:32 31
}
89c4a3a6 sago007 2008-08-29 14:32 32
ecef5838 sago007 2015-11-24 20:01 33
ReadKeyboard::~ReadKeyboard(void) {
89c4a3a6 sago007 2008-08-29 14:32 34
}
89c4a3a6 sago007 2008-08-29 14:32 35
0e1e83de sago007 2015-12-25 13:30 36
int ReadKeyboard::CharsBeforeCursor() {
d26562ba sago007 2015-12-04 23:29 37
	return std::distance(text_string.begin(), position);
89c4a3a6 sago007 2008-08-29 14:32 38
}
89c4a3a6 sago007 2008-08-29 14:32 39
ecef5838 sago007 2015-11-24 20:01 40
ReadKeyboard::ReadKeyboard(const char* oldName) {
c53e6443 sago007 2012-04-17 11:04 41
	maxLength = 16;
f6707482 sago007 2015-12-04 22:55 42
	text_string = oldName;
d26562ba sago007 2015-12-04 23:29 43
	position = text_string.end();
89c4a3a6 sago007 2008-08-29 14:32 44
}
89c4a3a6 sago007 2008-08-29 14:32 45
89c4a3a6 sago007 2008-08-29 14:32 46
078900fe sago007 2015-12-05 15:31 47
void ReadKeyboard::putchar(const std::string& thing) {
daa8f1cf sago007 2016-01-23 10:57 48
	if ( (int)text_string.length() < maxLength) {
0e1e83de sago007 2015-12-25 13:30 49
		int oldPostition = utf8::distance(text_string.begin(), position);
0e1e83de sago007 2015-12-25 13:30 50
		int lengthOfInsertString = utf8::distance(thing.begin(), thing.end());
0e1e83de sago007 2015-12-25 13:30 51
		text_string.insert(position, thing.begin(), thing.end());
0e1e83de sago007 2015-12-25 13:30 52
		position = text_string.begin();  //Inserting may destroy our old iterator
0e1e83de sago007 2015-12-25 13:30 53
		utf8::advance(position, oldPostition + lengthOfInsertString, text_string.end());
c53e6443 sago007 2012-04-17 11:04 54
	}
89c4a3a6 sago007 2008-08-29 14:32 55
}
89c4a3a6 sago007 2008-08-29 14:32 56
89c4a3a6 sago007 2008-08-29 14:32 57
ecef5838 sago007 2015-11-24 20:01 58
void ReadKeyboard::removeChar() {
d26562ba sago007 2015-12-04 23:29 59
	if (position < text_string.end()) {
e373cd75 Poul Sander 2018-11-07 19:21 60
		std::string::iterator endChar= position;
227d1f4e sago007 2015-12-05 07:34 61
		utf8::advance(endChar, 1, text_string.end());
227d1f4e sago007 2015-12-05 07:34 62
		text_string.erase(position, endChar);
acd79baf sago007 2015-11-22 19:37 63
	}
89c4a3a6 sago007 2008-08-29 14:32 64
}
89c4a3a6 sago007 2008-08-29 14:32 65
078900fe sago007 2015-12-05 15:31 66
bool ReadKeyboard::ReadKey(const SDL_Event& key) {
0e1e83de sago007 2015-12-25 13:30 67
	if (key.type == SDL_TEXTINPUT) {
0e1e83de sago007 2015-12-25 13:30 68
		putchar(key.text.text);
0e1e83de sago007 2015-12-25 13:30 69
		if (key.text.text[0] != 0) {
0e1e83de sago007 2015-12-25 13:30 70
			return true;
0e1e83de sago007 2015-12-25 13:30 71
		}
9b99cf7a sago007 2015-12-04 20:22 72
	}
0e1e83de sago007 2015-12-25 13:30 73
	return ReadKey(key.key.keysym.sym);
9b99cf7a sago007 2015-12-04 20:22 74
}
9b99cf7a sago007 2015-12-04 20:22 75
078900fe sago007 2015-12-05 15:31 76
bool ReadKeyboard::ReadKey(SDL_Keycode keyPressed) {
ecef5838 sago007 2015-11-24 20:01 77
	if (keyPressed == SDLK_DELETE) {
d26562ba sago007 2015-12-04 23:29 78
		if ((text_string.length()>0)&& (position<text_string.end())) {
acd79baf sago007 2015-11-22 19:37 79
			ReadKeyboard::removeChar();
acd79baf sago007 2015-11-22 19:37 80
		}
c53e6443 sago007 2012-04-17 11:04 81
		return true;
c53e6443 sago007 2012-04-17 11:04 82
	}
ecef5838 sago007 2015-11-24 20:01 83
	if (keyPressed == SDLK_BACKSPACE) {
d26562ba sago007 2015-12-04 23:29 84
		if (position>text_string.begin()) {
227d1f4e sago007 2015-12-05 07:34 85
			utf8::prior(position, text_string.begin());
c53e6443 sago007 2012-04-17 11:04 86
			ReadKeyboard::removeChar();
c53e6443 sago007 2012-04-17 11:04 87
			return true;
c53e6443 sago007 2012-04-17 11:04 88
		}
c53e6443 sago007 2012-04-17 11:04 89
		return false;
c53e6443 sago007 2012-04-17 11:04 90
	}
ecef5838 sago007 2015-11-24 20:01 91
	if (keyPressed == SDLK_HOME) {
d26562ba sago007 2015-12-04 23:29 92
		position = text_string.begin();
c53e6443 sago007 2012-04-17 11:04 93
		return true;
c53e6443 sago007 2012-04-17 11:04 94
	}
ecef5838 sago007 2015-11-24 20:01 95
	if (keyPressed == SDLK_END) {
d26562ba sago007 2015-12-04 23:29 96
		position=text_string.end();
c53e6443 sago007 2012-04-17 11:04 97
		return true;
c53e6443 sago007 2012-04-17 11:04 98
	}
d26562ba sago007 2015-12-04 23:29 99
	if ((keyPressed == SDLK_LEFT) && (position>text_string.begin())) {
227d1f4e sago007 2015-12-05 07:34 100
		utf8::prior(position, text_string.begin());
c53e6443 sago007 2012-04-17 11:04 101
		return true;
c53e6443 sago007 2012-04-17 11:04 102
	}
d26562ba sago007 2015-12-04 23:29 103
	if ((keyPressed == SDLK_RIGHT) && (position<text_string.end())) {
227d1f4e sago007 2015-12-05 07:34 104
		utf8::next(position, text_string.end());
c53e6443 sago007 2012-04-17 11:04 105
		return true;
c53e6443 sago007 2012-04-17 11:04 106
	}
0e1e83de sago007 2015-12-25 13:30 107
	return true;
89c4a3a6 sago007 2008-08-29 14:32 108
}
89c4a3a6 sago007 2008-08-29 14:32 109
0e1e83de sago007 2015-12-25 13:30 110
const std::string& ReadKeyboard::GetString() const {
0e1e83de sago007 2015-12-25 13:30 111
	return text_string;
89c4a3a6 sago007 2008-08-29 14:32 112
}
1970-01-01 00:00 113