1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- Ported to FPC by Nikolay Nikolov ([email protected])
- }
- {
- Area example for OpenPTC 1.0 C++ implementation
- Copyright (c) Glenn Fiedler ([email protected])
- This source code is in the public domain
- }
- program AreaExample;
- {$MODE objfpc}
- uses
- ptc;
- var
- console: IPTCConsole;
- format: IPTCFormat;
- surface: IPTCSurface;
- pixels: PDWord;
- width, height: Integer;
- i: Integer;
- x, y, r, g, b: Integer;
- area: IPTCArea;
- begin
- try
- try
- { create console }
- console := TPTCConsoleFactory.CreateNew;
- { create format }
- format := TPTCFormatFactory.CreateNew(32, $00FF0000, $0000FF00, $000000FF);
- { create console }
- console.open('Area example', format);
- { create surface half the size of the console }
- surface := TPTCSurfaceFactory.CreateNew(console.width div 2, console.height div 2, format);
- { setup destination area }
- x := console.width div 4;
- y := console.height div 4;
- area := TPTCAreaFactory.CreateNew(x, y, x + surface.width, y + surface.height);
- { loop until a key is pressed }
- while not console.KeyPressed do
- begin
- { lock surface }
- pixels := surface.lock;
- try
- { get surface dimensions }
- width := surface.width;
- height := surface.height;
- { draw random pixels }
- for i := 1 to 100 do
- begin
- { get random position }
- x := Random(width);
- y := Random(height);
- { get random color }
- r := Random(256);
- g := Random(256);
- b := Random(256);
- { draw color [r,g,b] at position [x,y] }
- pixels[x + y * width] := (r shl 16) + (g shl 8) + b;
- end;
- finally
- { unlock surface }
- surface.unlock;
- end;
- { copy surface to console destination area }
- surface.copy(console, surface.area, area);
- { update console area }
- console.update;
- end;
- finally
- if Assigned(console) then
- console.close;
- end;
- except
- on error: TPTCError do
- { report error }
- error.report;
- end;
- end.
|