forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyboard.c
161 lines (150 loc) · 5.07 KB
/
keyboard.c
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
153
154
155
156
157
158
159
160
161
/* ***************************************************************************
* keyboard.c -- keyboard input management
*
* Copyright (C) 2016 by Liu Chao <[email protected]>
*
* This file is part of the LCUI project, and may only be used, modified, and
* distributed under the terms of the GPLv2.
*
* (GPLv2 is abbreviation of GNU General Public License Version 2)
*
* By continuing to use, modify, or distribute this file you indicate that you
* have read the license and understand and accept it fully.
*
* The LCUI project 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 GPL v2 for more details.
*
* You should have received a copy of the GPLv2 along with this file. It is
* usually in the LICENSE.TXT file, If not, see <http://www.gnu.org/licenses/>.
* ****************************************************************************/
/* ****************************************************************************
* keyboard.c -- 键盘输入管理
*
* 版权所有 (C) 2016 归属于 刘超 <[email protected]>
*
* 这个文件是LCUI项目的一部分,并且只可以根据GPLv2许可协议来使用、更改和发布。
*
* (GPLv2 是 GNU通用公共许可证第二版 的英文缩写)
*
* 继续使用、修改或发布本文件,表明您已经阅读并完全理解和接受这个许可协议。
*
* LCUI 项目是基于使用目的而加以散布的,但不负任何担保责任,甚至没有适销性或特
* 定用途的隐含担保,详情请参照GPLv2许可协议。
*
* 您应已收到附随于本文件的GPLv2许可协议的副本,它通常在LICENSE.TXT文件中,如果
* 没有,请查看:<http://www.gnu.org/licenses/>.
* ****************************************************************************/
#include <time.h>
#include <stdlib.h>
#include <LCUI_Build.h>
#include <LCUI/LCUI.h>
#include <LCUI/thread.h>
#include <LCUI/input.h>
typedef struct KeyStateNodeRec_ {
int state; /**< 当前状态 */
clock_t hit_time; /**< 按下此键时的时间 */
clock_t interval_time; /**< 近两次按下此键的时间间隔 */
} KeyStateNodeRec, *KeyStateNode;
static struct LCUIKeyboardModule {
LCUI_Mutex mutex;
RBTree state_tree;
} self;
/** 检测指定键值的按键是否处于按下状态 */
LCUI_BOOL LCUIKeyboard_IsHit( int key_code )
{
KeyStateNode node;
LCUIMutex_Lock( &self.mutex );
node = RBTree_GetData( &self.state_tree, key_code );
LCUIMutex_Unlock( &self.mutex );
if( node && node->state == LCUIKEYSTATE_PRESSED ) {
return TRUE;
}
return FALSE;
}
/**
* 检测指定键值的按键是否按了两次
* @param key_code 要检测的按键的键值
* @param interval_time 该按键倒数第二次按下时的时间与当前时间的最大间隔
*/
LCUI_BOOL LCUIKeyboard_IsDoubleHit( int key_code, int interval_time )
{
clock_t ct;
KeyStateNode node;
/* 计算当前时间(单位:毫秒) */
ct = clock() * 1000 / CLOCKS_PER_SEC;
LCUIMutex_Lock( &self.mutex );
node = RBTree_GetData( &self.state_tree, key_code );
LCUIMutex_Unlock( &self.mutex );
if( !node ) {
return FALSE;
}
/* 间隔时间为-1,说明该键是新记录的 */
if( node->interval_time == -1 ) {
return FALSE;
}
ct -= node->hit_time - node->interval_time;
/* 判断按键被按下两次时是否在距当前 interval_time 毫秒的时间内发生 */
if( ct <= interval_time ) {
return TRUE;
}
return FALSE;
}
/** 添加已被按下的按键 */
void LCUIKeyboard_HitKey( int key_code )
{
clock_t ct;
KeyStateNode node;
LCUIMutex_Lock( &self.mutex );
ct = clock() * 1000 / CLOCKS_PER_SEC;
node = RBTree_GetData( &self.state_tree, key_code );
if( !node ) {
node = NEW( KeyStateNodeRec, 1 );
node->interval_time = -1;
node->hit_time = ct;
node->state = LCUIKEYSTATE_PRESSED;
RBTree_Insert( &self.state_tree, key_code, node );
LCUIMutex_Unlock( &self.mutex );
return;
}
if( node->state == LCUIKEYSTATE_RELEASE ) {
node->state = LCUIKEYSTATE_PRESSED;
/* 记录与上次此键被按下时的时间间隔 */
node->interval_time = ct - node->hit_time;
/* 记录本次此键被按下时的时间 */
node->hit_time = ct;
}
LCUIMutex_Unlock( &self.mutex );
}
/** 标记指定键值的按键已释放 */
void LCUIKeyboard_ReleaseKey( int key_code )
{
KeyStateNode node;
LCUIMutex_Lock( &self.mutex );
node = RBTree_GetData( &self.state_tree, key_code );
if( node ) {
node->state = LCUIKEYSTATE_RELEASE;
}
LCUIMutex_Unlock( &self.mutex );
}
static void OnKeyboardEvent( LCUI_SysEvent e, void *arg )
{
if( e->type == LCUI_KEYDOWN ) {
LCUIKeyboard_HitKey( e->key.code );
} else if( e->type == LCUI_KEYUP ) {
LCUIKeyboard_ReleaseKey( e->key.code );
}
}
void LCUI_InitKeyboard( void )
{
LCUIMutex_Init( &self.mutex );
RBTree_Init( &self.state_tree );
RBTree_OnDestroy( &self.state_tree, free );
LCUI_BindEvent( LCUI_KEYDOWN, OnKeyboardEvent, NULL, NULL );
LCUI_BindEvent( LCUI_KEYUP, OnKeyboardEvent, NULL, NULL );
}
void LCUI_ExitKeyboard( void )
{
RBTree_Destroy( &self.state_tree );
LCUIMutex_Destroy( &self.mutex );
}