123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- {
- Ported to FPC by Nikolay Nikolov ([email protected])
- }
- {
- Keyboard example for OpenPTC 1.0 C++ implementation
- Copyright (c) Glenn Fiedler ([email protected])
- This source code is in the public domain
- }
- program KeyboardExample;
- {$MODE objfpc}
- uses
- ptc;
- var
- console: IPTCConsole;
- surface: IPTCSurface;
- format: IPTCFormat;
- color: IPTCColor;
- key: IPTCKeyEvent;
- x, y: Integer;
- size: Integer;
- delta: Integer;
- begin
- try
- try
- { create console }
- console := TPTCConsoleFactory.CreateNew;
- { create format }
- format := TPTCFormatFactory.CreateNew(32, $00FF0000, $0000FF00, $000000FF);
- { open the console }
- console.open('Keyboard example', format);
- { create surface matching console dimensions }
- surface := TPTCSurfaceFactory.CreateNew(console.width, console.height, format);
- { setup cursor data }
- x := surface.width div 2;
- y := surface.height div 2;
- size := surface.width div 10;
- color := TPTCColorFactory.CreateNew(1, 1, 1);
- { main loop }
- repeat
- { check for key press }
- if console.KeyPressed then
- begin
- { read console key press }
- console.ReadKey(key);
- { shift modifier }
- if key.shift then
- { move fast }
- delta := 10
- else
- { move slow }
- delta := 1;
- { handle cursor keys }
- case key.code of
- PTCKEY_LEFT: Dec(x, delta);
- PTCKEY_RIGHT: Inc(x, delta);
- PTCKEY_UP: Dec(y, delta);
- PTCKEY_DOWN: Inc(y, delta);
- { exit when escape is pressed }
- PTCKEY_ESCAPE: Break;
- end;
- end;
- { clear surface }
- surface.clear;
- { draw cursor as a quad }
- surface.clear(color, TPTCAreaFactory.CreateNew(x - size, y - size, x + size, y + size));
- { copy to console }
- surface.copy(console);
- { update console }
- console.update;
- until False;
- finally
- if Assigned(console) then
- console.close;
- end;
- except
- on error: TPTCError do
- { report error }
- error.report;
- end;
- end.
|