File: ps2_gen_mouse_4.c

package info (click to toggle)
faumachine 20100527-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 53,836 kB
  • ctags: 20,552
  • sloc: ansic: 179,550; asm: 3,645; makefile: 3,611; perl: 2,103; sh: 1,529; python: 600; xml: 563; lex: 210; vhdl: 204
file content (218 lines) | stat: -rw-r--r-- 4,753 bytes parent folder | download | duplicates (2)
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
 * $Id: ps2_gen_mouse_4.c,v 1.10 2009-06-03 11:34:10 vrsieh Exp $ 
 *
 * Copyright (C) 2008-2009 FAUmachine Team <info@faumachine.org>.
 * This program is free software. You can redistribute it and/or modify it
 * under the terms of the GNU General Public License, either version 2 of
 * the License, or (at your option) any later version. See COPYING.
 */

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

#include "ps2_gen_mouse_4.h"

#define COMP_(x)	ps2_gen_mouse_4_ ## x

struct cpssp {
	struct sig_ps2_main *port_ps2;

#define NAME		mouse
#define NAME_(x)	mouse_ ## x
#define SNAME		"mouse"

#define MOUSE_TYPE 4
#define STATE
#include "arch_gen_mouse.c"
#undef STATE
};

static void
mouse_send(struct cpssp *cpssp, uint8_t byte)
{
	sig_ps2_send(cpssp->port_ps2, cpssp, byte);
}

#define NAME		mouse
#define NAME_(x)	mouse_ ## x
#define SNAME		"mouse"

#define MOUSE_TYPE 4
#define BEHAVIOUR
#include "arch_gen_mouse.c"
#undef BEHAVIOUR

static void
COMP_(power_set)(void *_cpssp, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_power_set(cpssp, val);
}

static void
COMP_(recv)(void *_cpssp, uint8_t byte)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_recv(cpssp, byte);
}

static void
COMP_(clkrunning)(void *_cpssp, int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_clkrunning(cpssp, val);
}

static void
COMP_(deltax_set)(void *_cpssp, int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_deltax_set(cpssp, val);
}

static void
COMP_(deltay_set)(void *_cpssp, int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_deltay_set(cpssp, val);
}

static void
COMP_(deltaz_set)(void *_cpssp, int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_deltaz_set(cpssp, val);
}

static void
COMP_(button1_set)(void *_cpssp, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_button1_set(cpssp, val);
}

static void
COMP_(button2_set)(void *_cpssp, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_button2_set(cpssp, val);
}

static void
COMP_(button3_set)(void *_cpssp, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_button3_set(cpssp, val);
}

static void
COMP_(button4_set)(void *_cpssp, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_button4_set(cpssp, val);
}

static void
COMP_(button5_set)(void *_cpssp, unsigned int val)
{
	struct cpssp *cpssp = (struct cpssp *) _cpssp;

	mouse_button5_set(cpssp, val);
}

void *
COMP_(create)(
	const char *name,
	struct sig_manage *port_manage,
	struct sig_ps2 *port_ps2,
	struct sig_integer *port_deltax,
	struct sig_integer *port_deltay,
	struct sig_integer *port_deltaz,
	struct sig_boolean *port_button1,
	struct sig_boolean *port_button2,
	struct sig_boolean *port_button3,
	struct sig_boolean *port_button4,
	struct sig_boolean *port_button5
)
{
	static const struct sig_boolean_funcs power_funcs = {
		.set = COMP_(power_set),
	};
	static const struct sig_ps2_main_funcs ps2_funcs = {
		.recv = COMP_(recv),
		.clkrunning = COMP_(clkrunning),
	};
	static const struct sig_integer_funcs deltax_funcs = {
		.set = COMP_(deltax_set),
	};
	static const struct sig_integer_funcs deltay_funcs = {
		.set = COMP_(deltay_set),
	};
	static const struct sig_integer_funcs deltaz_funcs = {
		.set = COMP_(deltaz_set),
	};
	static const struct sig_boolean_funcs button1_funcs = {
		.set = COMP_(button1_set),
	};
	static const struct sig_boolean_funcs button2_funcs = {
		.set = COMP_(button2_set),
	};
	static const struct sig_boolean_funcs button3_funcs = {
		.set = COMP_(button3_set),
	};
	static const struct sig_boolean_funcs button4_funcs = {
		.set = COMP_(button4_set),
	};
	static const struct sig_boolean_funcs button5_funcs = {
		.set = COMP_(button5_set),
	};
	struct cpssp *cpssp;

	cpssp = malloc(sizeof(*cpssp));
	assert(cpssp);

	mouse_create(cpssp);
	mouse_init(cpssp);

	/* Call */
	cpssp->port_ps2 = port_ps2->main;
	sig_ps2_main_connect(port_ps2->main, cpssp, &ps2_funcs);

	/* Out */

	/* In */
	sig_boolean_connect_in(port_ps2->p5V, cpssp, &power_funcs);

	sig_integer_connect_in(port_deltax, cpssp, &deltax_funcs);
	sig_integer_connect_in(port_deltay, cpssp, &deltay_funcs);
	sig_integer_connect_in(port_deltaz, cpssp, &deltaz_funcs);

	sig_boolean_connect_in(port_button1, cpssp, &button1_funcs);
	sig_boolean_connect_in(port_button2, cpssp, &button2_funcs);
	sig_boolean_connect_in(port_button3, cpssp, &button3_funcs);
	sig_boolean_connect_in(port_button4, cpssp, &button4_funcs);
	sig_boolean_connect_in(port_button5, cpssp, &button5_funcs);

	return cpssp;
}

void
COMP_(destroy)(void *_cpssp)
{
	struct cpssp *cpssp = _cpssp;

	mouse_destroy(cpssp);

	free(cpssp);
}