Welcome to mirror list, hosted at ThFree Co, Russian Federation.

robot.cs « awt - github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5df6a949ce21b15f739073bf56b9e51552fb7132 (plain)
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/*
  Copyright (C) 2007 Volker Berlin

  This software is provided 'as-is', without any express or implied
  warranty.  In no event will the authors be held liable for any damages
  arising from the use of this software.

  Permission is granted to anyone to use this software for any purpose,
  including commercial applications, and to alter it and redistribute it
  freely, subject to the following restrictions:

  1. The origin of this software must not be misrepresented; you must not
     claim that you wrote the original software. If you use this software
     in a product, an acknowledgment in the product documentation would be
     appreciated but is not required.
  2. Altered source versions must be plainly marked as such, and must not be
     misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.

  Jeroen Frijters
  jeroen@frijters.net 

*/

using System;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using java.awt.peer;
using java.awt.@event;

namespace ikvm.awt
{

    internal class WindowsRobot : RobotPeer
    {
        internal WindowsRobot(java.awt.GraphicsDevice device)
        {
        }

		public void dispose()
		{
		}

        public int getRGBPixel(int x, int y)
        {
            Bitmap bitmap = new Bitmap(1, 1);
            Graphics g = Graphics.FromImage(bitmap);
            g.CopyFromScreen( x, y, 0, 0, new Size(1,1));
            g.Dispose();
            Color color = bitmap.GetPixel(0,0);
            bitmap.Dispose();
            return color.ToArgb();
        }

        public int[] getRGBPixels(java.awt.Rectangle r)
        {
            int width = r.width;
            int height = r.height;
            Bitmap bitmap = new Bitmap(width, height);
            Graphics g = Graphics.FromImage(bitmap);
            g.CopyFromScreen(r.x, r.y, 0, 0, new Size(width, height));
            g.Dispose();
            int[] pixels = new int[width * height];
            for (int i = 0; i < width; i++)
            {
                for (int j = 0; j < height; j++)
                {
                    pixels[i+j*width] = bitmap.GetPixel(i, j).ToArgb();
                }
            }
            bitmap.Dispose();
            return pixels;
        }

        private byte MapKeyCode(int keyCode)
        {
            //TODO there need a keymap for some special chars
            //http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/WinUI/WindowsUserInterface/UserInput/VirtualKeyCodes.asp
            switch (keyCode)
            {
                case KeyEvent.VK_DELETE:
                    return VK_DELETE;
                default:
                    return (byte)keyCode;
            }
        }

        public void keyPress(int keycode)
        {
            keybd_event(MapKeyCode(keycode), 0, KEYEVENTF_KEYDOWN, IntPtr.Zero);
        }

        public void keyRelease(int keycode)
        {
            keybd_event(MapKeyCode(keycode), 0, KEYEVENTF_KEYUP, IntPtr.Zero);
        }

        public void mouseMove(int x, int y)
        {
            Cursor.Position = new Point(x,y);
        }

        public void mousePress(int button)
        {
            int dwFlags = 0;
            switch (button)
            {
                case InputEvent.BUTTON1_MASK:
                    dwFlags |= MOUSEEVENTF_LEFTDOWN;
                    break;
                case InputEvent.BUTTON2_MASK:
                    dwFlags |= MOUSEEVENTF_MIDDLEDOWN;
                    break;
                case InputEvent.BUTTON3_MASK:
                    dwFlags |= MOUSEEVENTF_RIGHTDOWN;
                    break;
            }
            mouse_event(dwFlags, 0, 0, 0, IntPtr.Zero);
        }

        public void mouseRelease(int button)
        {
            int dwFlags = 0;
            switch (button)
            {
                case InputEvent.BUTTON1_MASK:
                    dwFlags |= MOUSEEVENTF_LEFTUP;
                    break;
                case InputEvent.BUTTON2_MASK:
                    dwFlags |= MOUSEEVENTF_MIDDLEUP;
                    break;
                case InputEvent.BUTTON3_MASK:
                    dwFlags |= MOUSEEVENTF_RIGHTUP;
                    break;
            }
            mouse_event(dwFlags, 0, 0, 0, IntPtr.Zero);
        }

        public void mouseWheel(int wheel)
        {
            mouse_event(0, 0, 0, wheel, IntPtr.Zero);
        }

        [DllImport("user32.dll")]
        private static extern void keybd_event(byte vk, byte scan, int flags, IntPtr extrainfo);

        private const int KEYEVENTF_KEYDOWN = 0x0000;
        private const int KEYEVENTF_KEYUP = 0x0002;

        [DllImport("user32.dll")]
        private static extern void mouse_event(
            int dwFlags, // motion and click options
            int dx, // horizontal position or change
            int dy, // vertical position or change
            int dwData, // wheel movement
            IntPtr dwExtraInfo // application-defined information
        );

        private const int MOUSEEVENTF_LEFTDOWN = 0x0002;
        private const int MOUSEEVENTF_LEFTUP = 0x0004;
        private const int MOUSEEVENTF_RIGHTDOWN = 0x0008;
        private const int MOUSEEVENTF_RIGHTUP = 0x0010;
        private const int MOUSEEVENTF_MIDDLEDOWN = 0x0020;
        private const int MOUSEEVENTF_MIDDLEUP = 0x0040;



        private const int VK_BACK          = 0x08;
        private const int VK_TAB           = 0x09;

/*
 * 0x0A - 0x0B : reserved
 */

        private const int VK_CLEAR         = 0x0C;
        private const int VK_RETURN        = 0x0D;

        private const int VK_SHIFT         = 0x10;
        private const int VK_CONTROL       = 0x11;
        private const int VK_MENU          = 0x12;
        private const int VK_PAUSE         = 0x13;
        private const int VK_CAPITAL       = 0x14;

        private const int VK_KANA          = 0x15;
        private const int VK_HANGEUL       = 0x15;  /* old name - should be here for compatibility */
        private const int VK_HANGUL        = 0x15;
        private const int VK_JUNJA         = 0x17;
        private const int VK_FINAL         = 0x18;
        private const int VK_HANJA         = 0x19;
        private const int VK_KANJI         = 0x19;

        private const int VK_ESCAPE        = 0x1B;

        private const int VK_CONVERT       = 0x1C;
        private const int VK_NONCONVERT    = 0x1D;
        private const int VK_ACCEPT        = 0x1E;
        private const int VK_MODECHANGE    = 0x1F;

        private const int VK_SPACE         = 0x20;
        private const int VK_PRIOR         = 0x21;
        private const int VK_NEXT          = 0x22;
        private const int VK_END           = 0x23;
        private const int VK_HOME          = 0x24;
        private const int VK_LEFT          = 0x25;
        private const int VK_UP            = 0x26;
        private const int VK_RIGHT         = 0x27;
        private const int VK_DOWN          = 0x28;
        private const int VK_SELECT        = 0x29;
        private const int VK_PRINT         = 0x2A;
        private const int VK_EXECUTE       = 0x2B;
        private const int VK_SNAPSHOT      = 0x2C;
        private const int VK_INSERT        = 0x2D;
        private const int VK_DELETE        = 0x2E;
        private const int VK_HELP          = 0x2F;

/*
 * VK_0 - VK_9 are the same as ASCII '0' - '9' (0x30 - 0x39)
 * 0x40 : unassigned
 * VK_A - VK_Z are the same as ASCII 'A' - 'Z' (0x41 - 0x5A)
 */

        private const int VK_LWIN          = 0x5B;
        private const int VK_RWIN          = 0x5C;
        private const int VK_APPS          = 0x5D;

/*
 * 0x5E : reserved
 */

        private const int VK_SLEEP         = 0x5F;

        private const int VK_NUMPAD0       = 0x60;
        private const int VK_NUMPAD1       = 0x61;
        private const int VK_NUMPAD2       = 0x62;
        private const int VK_NUMPAD3       = 0x63;
        private const int VK_NUMPAD4       = 0x64;
        private const int VK_NUMPAD5       = 0x65;
        private const int VK_NUMPAD6       = 0x66;
        private const int VK_NUMPAD7       = 0x67;
        private const int VK_NUMPAD8       = 0x68;
        private const int VK_NUMPAD9       = 0x69;
        private const int VK_MULTIPLY      = 0x6A;
        private const int VK_ADD           = 0x6B;
        private const int VK_SEPARATOR     = 0x6C;
        private const int VK_SUBTRACT      = 0x6D;
        private const int VK_DECIMAL       = 0x6E;
        private const int VK_DIVIDE        = 0x6F;
        private const int VK_F1            = 0x70;
        private const int VK_F2            = 0x71;
        private const int VK_F3            = 0x72;
        private const int VK_F4            = 0x73;
        private const int VK_F5            = 0x74;
        private const int VK_F6            = 0x75;
        private const int VK_F7            = 0x76;
        private const int VK_F8            = 0x77;
        private const int VK_F9            = 0x78;
        private const int VK_F10           = 0x79;
        private const int VK_F11           = 0x7A;
        private const int VK_F12           = 0x7B;
        private const int VK_F13           = 0x7C;
        private const int VK_F14           = 0x7D;
        private const int VK_F15           = 0x7E;
        private const int VK_F16           = 0x7F;
        private const int VK_F17           = 0x80;
        private const int VK_F18           = 0x81;
        private const int VK_F19           = 0x82;
        private const int VK_F20           = 0x83;
        private const int VK_F21           = 0x84;
        private const int VK_F22           = 0x85;
        private const int VK_F23           = 0x86;
        private const int VK_F24           = 0x87;

/*
 * 0x88 - 0x8F : unassigned
 */

        private const int VK_NUMLOCK       = 0x90;
        private const int VK_SCROLL        = 0x91;

/*
 * NEC PC-9800 kbd definitions
 */
        private const int VK_OEM_NEC_EQUAL = 0x92;   // '=' key on numpad

/*
 * Fujitsu/OASYS kbd definitions
 */
        private const int VK_OEM_FJ_JISHO  = 0x92;   // 'Dictionary' key
        private const int VK_OEM_FJ_MASSHOU= 0x93;   // 'Unregister word' key
        private const int VK_OEM_FJ_TOUROKU= 0x94;   // 'Register word' key
        private const int VK_OEM_FJ_LOYA   = 0x95;   // 'Left OYAYUBI' key
        private const int VK_OEM_FJ_ROYA   = 0x96;   // 'Right OYAYUBI' key

/*
 * 0x97 - 0x9F : unassigned
 */

/*
 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
 * Used only as parameters to GetAsyncKeyState() and GetKeyState().
 * No other API or message will distinguish left and right keys in this way.
 */
        private const int VK_LSHIFT        = 0xA0;
        private const int VK_RSHIFT        = 0xA1;
        private const int VK_LCONTROL      = 0xA2;
        private const int VK_RCONTROL      = 0xA3;
        private const int VK_LMENU         = 0xA4;
        private const int VK_RMENU         = 0xA5;

        private const int VK_BROWSER_BACK       = 0xA6;
        private const int VK_BROWSER_FORWARD    = 0xA7;
        private const int VK_BROWSER_REFRESH    = 0xA8;
        private const int VK_BROWSER_STOP       = 0xA9;
        private const int VK_BROWSER_SEARCH     = 0xAA;
        private const int VK_BROWSER_FAVORITES  = 0xAB;
        private const int VK_BROWSER_HOME       = 0xAC;

        private const int VK_VOLUME_MUTE        = 0xAD;
        private const int VK_VOLUME_DOWN        = 0xAE;
        private const int VK_VOLUME_UP          = 0xAF;
        private const int VK_MEDIA_NEXT_TRACK   = 0xB0;
        private const int VK_MEDIA_PREV_TRACK   = 0xB1;
        private const int VK_MEDIA_STOP         = 0xB2;
        private const int VK_MEDIA_PLAY_PAUSE   = 0xB3;
        private const int VK_LAUNCH_MAIL        = 0xB4;
        private const int VK_LAUNCH_MEDIA_SELECT= 0xB5;
        private const int VK_LAUNCH_APP1        = 0xB6;
        private const int VK_LAUNCH_APP2        = 0xB7;


/*
 * 0xB8 - 0xB9 : reserved
 */

        private const int VK_OEM_1         = 0xBA;   // ';:' for US
        private const int VK_OEM_PLUS      = 0xBB;   // '+' any country
        private const int VK_OEM_COMMA     = 0xBC;   // ',' any country
        private const int VK_OEM_MINUS     = 0xBD;   // '-' any country
        private const int VK_OEM_PERIOD    = 0xBE;   // '.' any country
        private const int VK_OEM_2         = 0xBF;   // '/?' for US
        private const int VK_OEM_3         = 0xC0;   // '`~' for US

/*
 * 0xC1 - 0xD7 : reserved
 */

/*
 * 0xD8 - 0xDA : unassigned
 */

        private const int VK_OEM_4         = 0xDB;  //  '[{' for US
        private const int VK_OEM_5         = 0xDC;  //  '\|' for US
        private const int VK_OEM_6         = 0xDD;  //  ']}' for US
        private const int VK_OEM_7         = 0xDE;  //  ''"' for US
        private const int VK_OEM_8         = 0xDF;

/*
 * 0xE0 : reserved
 */

/*
 * Various extended or enhanced keyboards
 */
        private const int VK_OEM_AX        = 0xE1;  //  'AX' key on Japanese AX kbd
        private const int VK_OEM_102       = 0xE2;  //  "<>" or "\|" on RT 102-key kbd.
        private const int VK_ICO_HELP      = 0xE3;  //  Help key on ICO
        private const int VK_ICO_00        = 0xE4;  //  00 key on ICO


/*
 * 0xE8 : unassigned
 */

/*
 * Nokia/Ericsson definitions
 */
        private const int VK_OEM_RESET     = 0xE9;
        private const int VK_OEM_JUMP      = 0xEA;
        private const int VK_OEM_PA1       = 0xEB;
        private const int VK_OEM_PA2       = 0xEC;
        private const int VK_OEM_PA3       = 0xED;
        private const int VK_OEM_WSCTRL    = 0xEE;
        private const int VK_OEM_CUSEL     = 0xEF;
        private const int VK_OEM_ATTN      = 0xF0;
        private const int VK_OEM_FINISH    = 0xF1;
        private const int VK_OEM_COPY      = 0xF2;
        private const int VK_OEM_AUTO      = 0xF3;
        private const int VK_OEM_ENLW      = 0xF4;
        private const int VK_OEM_BACKTAB   = 0xF5;

        private const int VK_ATTN          = 0xF6;
        private const int VK_CRSEL         = 0xF7;
        private const int VK_EXSEL         = 0xF8;
        private const int VK_EREOF         = 0xF9;
        private const int VK_PLAY          = 0xFA;
        private const int VK_ZOOM          = 0xFB;
        private const int VK_NONAME        = 0xFC;
        private const int VK_PA1           = 0xFD;
        private const int VK_OEM_CLEAR     = 0xFE;


    }
}