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
c53e6443 sago007 2012-04-17 11:04 4
Copyright (C) 2005-2012 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
021de090 sago007 2015-12-30 18:56 20
http://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
96eb7a16 sago007 2016-04-29 17:01 28
using std::string;
96eb7a16 sago007 2016-04-29 17:01 29
using std::cerr;
96eb7a16 sago007 2016-04-29 17:01 30
using std::endl;
cdb45e21 sago007 2015-11-22 21:35 31
ecef5838 sago007 2015-11-24 20:01 32
ReadKeyboard::ReadKeyboard(void) {
c53e6443 sago007 2012-04-17 11:04 33
	maxLength = 16;
d26562ba sago007 2015-12-04 23:29 34
	position = text_string.begin();
89c4a3a6 sago007 2008-08-29 14:32 35
}
89c4a3a6 sago007 2008-08-29 14:32 36
ecef5838 sago007 2015-11-24 20:01 37
ReadKeyboard::~ReadKeyboard(void) {
89c4a3a6 sago007 2008-08-29 14:32 38
}
89c4a3a6 sago007 2008-08-29 14:32 39
0e1e83de sago007 2015-12-25 13:30 40
int ReadKeyboard::CharsBeforeCursor() {
d26562ba sago007 2015-12-04 23:29 41
	return std::distance(text_string.begin(), position);
89c4a3a6 sago007 2008-08-29 14:32 42
}
89c4a3a6 sago007 2008-08-29 14:32 43
ecef5838 sago007 2015-11-24 20:01 44
ReadKeyboard::ReadKeyboard(const char* oldName) {
c53e6443 sago007 2012-04-17 11:04 45
	maxLength = 16;
f6707482 sago007 2015-12-04 22:55 46
	text_string = oldName;
d26562ba sago007 2015-12-04 23:29 47
	position = text_string.end();
89c4a3a6 sago007 2008-08-29 14:32 48
}
89c4a3a6 sago007 2008-08-29 14:32 49
89c4a3a6 sago007 2008-08-29 14:32 50
078900fe sago007 2015-12-05 15:31 51
void ReadKeyboard::putchar(const std::string& thing) {
daa8f1cf sago007 2016-01-23 10:57 52
	if ( (int)text_string.length() < maxLength) {
0e1e83de sago007 2015-12-25 13:30 53
		int oldPostition = utf8::distance(text_string.begin(), position);
0e1e83de sago007 2015-12-25 13:30 54
		int lengthOfInsertString = utf8::distance(thing.begin(), thing.end());
0e1e83de sago007 2015-12-25 13:30 55
		text_string.insert(position, thing.begin(), thing.end());
0e1e83de sago007 2015-12-25 13:30 56
		position = text_string.begin();  //Inserting may destroy our old iterator
0e1e83de sago007 2015-12-25 13:30 57
		utf8::advance(position, oldPostition + lengthOfInsertString, text_string.end());
c53e6443 sago007 2012-04-17 11:04 58
	}
89c4a3a6 sago007 2008-08-29 14:32 59
}
89c4a3a6 sago007 2008-08-29 14:32 60
89c4a3a6 sago007 2008-08-29 14:32 61
ecef5838 sago007 2015-11-24 20:01 62
void ReadKeyboard::removeChar() {
d26562ba sago007 2015-12-04 23:29 63
	if (position < text_string.end()) {
227d1f4e sago007 2015-12-05 07:34 64
		string::iterator endChar= position;
227d1f4e sago007 2015-12-05 07:34 65
		utf8::advance(endChar, 1, text_string.end());
227d1f4e sago007 2015-12-05 07:34 66
		text_string.erase(position, endChar);
acd79baf sago007 2015-11-22 19:37 67
	}
89c4a3a6 sago007 2008-08-29 14:32 68
}
89c4a3a6 sago007 2008-08-29 14:32 69
078900fe sago007 2015-12-05 15:31 70
bool ReadKeyboard::ReadKey(const SDL_Event& key) {
0e1e83de sago007 2015-12-25 13:30 71
	if (key.type == SDL_TEXTINPUT) {
0e1e83de sago007 2015-12-25 13:30 72
		putchar(key.text.text);
0e1e83de sago007 2015-12-25 13:30 73
		if (key.text.text[0] != 0) {
0e1e83de sago007 2015-12-25 13:30 74
			return true;
0e1e83de sago007 2015-12-25 13:30 75
		}
9b99cf7a sago007 2015-12-04 20:22 76
	}
0e1e83de sago007 2015-12-25 13:30 77
	return ReadKey(key.key.keysym.sym);
9b99cf7a sago007 2015-12-04 20:22 78
}
9b99cf7a sago007 2015-12-04 20:22 79
078900fe sago007 2015-12-05 15:31 80
bool ReadKeyboard::ReadKey(SDL_Keycode keyPressed) {
ecef5838 sago007 2015-11-24 20:01 81
	if (keyPressed == SDLK_DELETE) {
d26562ba sago007 2015-12-04 23:29 82
		if ((text_string.length()>0)&& (position<text_string.end())) {
acd79baf sago007 2015-11-22 19:37 83
			ReadKeyboard::removeChar();
acd79baf sago007 2015-11-22 19:37 84
		}
c53e6443 sago007 2012-04-17 11:04 85
		return true;
c53e6443 sago007 2012-04-17 11:04 86
	}
ecef5838 sago007 2015-11-24 20:01 87
	if (keyPressed == SDLK_BACKSPACE) {
d26562ba sago007 2015-12-04 23:29 88
		if (position>text_string.begin()) {
227d1f4e sago007 2015-12-05 07:34 89
			utf8::prior(position, text_string.begin());
c53e6443 sago007 2012-04-17 11:04 90
			ReadKeyboard::removeChar();
c53e6443 sago007 2012-04-17 11:04 91
			return true;
c53e6443 sago007 2012-04-17 11:04 92
		}
c53e6443 sago007 2012-04-17 11:04 93
		return false;
c53e6443 sago007 2012-04-17 11:04 94
	}
ecef5838 sago007 2015-11-24 20:01 95
	if (keyPressed == SDLK_HOME) {
d26562ba sago007 2015-12-04 23:29 96
		position = text_string.begin();
c53e6443 sago007 2012-04-17 11:04 97
		return true;
c53e6443 sago007 2012-04-17 11:04 98
	}
ecef5838 sago007 2015-11-24 20:01 99
	if (keyPressed == SDLK_END) {
d26562ba sago007 2015-12-04 23:29 100
		position=text_string.end();
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_LEFT) && (position>text_string.begin())) {
227d1f4e sago007 2015-12-05 07:34 104
		utf8::prior(position, text_string.begin());
c53e6443 sago007 2012-04-17 11:04 105
		return true;
c53e6443 sago007 2012-04-17 11:04 106
	}
d26562ba sago007 2015-12-04 23:29 107
	if ((keyPressed == SDLK_RIGHT) && (position<text_string.end())) {
227d1f4e sago007 2015-12-05 07:34 108
		utf8::next(position, text_string.end());
c53e6443 sago007 2012-04-17 11:04 109
		return true;
c53e6443 sago007 2012-04-17 11:04 110
	}
0e1e83de sago007 2015-12-25 13:30 111
	return true;
89c4a3a6 sago007 2008-08-29 14:32 112
}
89c4a3a6 sago007 2008-08-29 14:32 113
0e1e83de sago007 2015-12-25 13:30 114
const std::string& ReadKeyboard::GetString() const {
0e1e83de sago007 2015-12-25 13:30 115
	return text_string;
89c4a3a6 sago007 2008-08-29 14:32 116
}
1970-01-01 00:00 117