123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- {
- Free Pascal port of the OpenPTC C++ library.
- Copyright (C) 2001-2003 Nikolay Nikolov ([email protected])
- Original C++ version by Glenn Fiedler ([email protected])
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
- This library 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 GNU
- Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- }
- Constructor TPTCSurface.Create(_width, _height : Integer; Const _format : TPTCFormat);
- Var
- size : Integer;
- Begin
- m_pixels := Nil;
- m_copy := Nil;
- m_clear := Nil;
- m_palette := Nil;
- m_format := Nil;
- m_area := Nil;
- m_clip := Nil;
- m_locked := False;
- LOG('creating surface');
- LOG('width', _width);
- LOG('height', _height);
- LOG('format', _format);
- m_width := _width;
- m_height := _height;
- m_format := TPTCFormat.Create(_format);
- m_area := TPTCArea.Create(0, 0, width, height);
- m_clip := TPTCArea.Create(m_area);
- m_pitch := width * _format.bytes;
- size := width * height * _format.bytes;
- If size = 0 Then
- Raise TPTCError.Create('zero surface size');
- m_pixels := GetMem(size);
- If m_pixels = Nil Then
- Raise TPTCError.Create('could not allocate surface pixels');
- m_copy := TPTCCopy.Create;
- m_clear := TPTCClear.Create;
- m_palette := TPTCPalette.Create;
- clear;
- End;
- Destructor TPTCSurface.Destroy;
- Begin
- If m_locked Then
- Raise TPTCError.Create('surface is still locked');
- m_copy.Free;
- m_clear.Free;
- m_palette.Free;
- m_clip.Free;
- m_area.Free;
- m_format.Free;
- If m_pixels <> Nil Then
- FreeMem(m_pixels);
- Inherited Destroy;
- End;
- Procedure TPTCSurface.copy(Var surface : TPTCBaseSurface);
- Begin
- surface.load(m_pixels, m_width, m_height, m_pitch, m_format, m_palette);
- End;
- Procedure TPTCSurface.copy(Var surface : TPTCBaseSurface;
- Const source, destination : TPTCArea);
- Begin
- surface.load(m_pixels, m_width, m_height, m_pitch, m_format, m_palette,
- source, destination);
- End;
- Function TPTCSurface.lock : Pointer;
- Begin
- If m_locked Then
- Raise TPTCError.Create('surface is already locked');
- m_locked := True;
- lock := m_pixels;
- End;
- Procedure TPTCSurface.unlock;
- Begin
- If Not m_locked Then
- Raise TPTCError.Create('surface is not locked');
- m_locked := False;
- End;
- Procedure TPTCSurface.load(Const pixels : Pointer;
- _width, _height, _pitch : Integer;
- Const _format : TPTCFormat;
- Const _palette : TPTCPalette);
- Var
- Area_ : TPTCArea;
- Begin
- If m_clip.Equals(m_area) Then
- Begin
- m_copy.request(_format, m_format);
- m_copy.palette(_palette, m_palette);
- m_copy.copy(pixels, 0, 0, _width, _height, _pitch, m_pixels, 0, 0,
- m_width, m_height, m_pitch);
- End
- Else
- Begin
- Area_ := TPTCArea.Create(0, 0, _width, _height);
- Try
- load(pixels, _width, _height, _pitch, _format, _palette, Area_, m_area);
- Finally
- Area_.Free;
- End;
- End;
- End;
- Procedure TPTCSurface.load(Const pixels : Pointer;
- _width, _height, _pitch : Integer;
- Const _format : TPTCFormat;
- Const _palette : TPTCPalette;
- Const source, destination : TPTCArea);
- Var
- clipped_source, clipped_destination : TPTCArea;
- area_ : TPTCArea;
- Begin
- clipped_source := Nil;
- clipped_destination := Nil;
- area_ := Nil;
- Try
- clipped_source := TPTCArea.Create;
- clipped_destination := TPTCArea.Create;
- area_ := TPTCArea.Create(0, 0, _width, _height);
- TPTCClipper.clip(source, area_, clipped_source, destination, m_clip,
- clipped_destination);
- m_copy.request(_format, m_format);
- m_copy.palette(_palette, m_palette);
- m_copy.copy(pixels, clipped_source.left, clipped_source.top,
- clipped_source.width, clipped_source.height, _pitch,
- m_pixels, clipped_destination.left, clipped_destination.top,
- clipped_destination.width, clipped_destination.height, m_pitch);
- Finally
- clipped_source.Free;
- clipped_destination.Free;
- area_.Free;
- End;
- End;
- Procedure TPTCSurface.save(pixels : Pointer;
- _width, _height, _pitch : Integer;
- Const _format : TPTCFormat;
- Const _palette : TPTCPalette);
- Var
- area_ : TPTCArea;
- Begin
- If m_clip.Equals(m_area) Then
- Begin
- m_copy.request(m_format, _format);
- m_copy.palette(m_palette, _palette);
- m_copy.copy(m_pixels, 0, 0, m_width, m_height, m_pitch, pixels, 0, 0,
- _width, _height, _pitch);
- End
- Else
- Begin
- area_ := TPTCArea.Create(0, 0, width, height);
- Try
- save(pixels, _width, _height, _pitch, _format, _palette, m_area, area_);
- Finally
- area_.Free;
- End;
- End;
- End;
- Procedure TPTCSurface.save(pixels : Pointer;
- _width, _height, _pitch : Integer;
- Const _format : TPTCFormat;
- Const _palette : TPTCPalette;
- Const source, destination : TPTCArea);
- Var
- clipped_source, clipped_destination : TPTCArea;
- area_ : TPTCArea;
- Begin
- clipped_source := Nil;
- clipped_destination := Nil;
- area_ := Nil;
- Try
- clipped_source := TPTCArea.Create;
- clipped_destination := TPTCArea.Create;
- area_ := TPTCArea.Create(0, 0, _width, _height);
- TPTCClipper.clip(source, m_clip, clipped_source, destination, area_,
- clipped_destination);
- m_copy.request(m_format, _format);
- m_copy.palette(m_palette, _palette);
- m_copy.copy(m_pixels, clipped_source.left, clipped_source.top,
- clipped_source.width, clipped_source.height, m_pitch,
- pixels, clipped_destination.left, clipped_destination.top,
- clipped_destination.width, clipped_destination.height, _pitch);
- Finally
- clipped_source.Free;
- clipped_destination.Free;
- area_.Free;
- End;
- End;
- Procedure TPTCSurface.clear;
- Var
- Color : TPTCColor;
- Begin
- If format.direct Then
- Color := TPTCColor.Create(0, 0, 0, 0)
- Else
- Color := TPTCColor.Create(0);
- Try
- clear(Color);
- Finally
- Color.Free;
- End;
- End;
- Procedure TPTCSurface.clear(Const color : TPTCColor);
- Begin
- clear(color, m_area);
- End;
- Procedure TPTCSurface.clear(Const color : TPTCColor; Const _area : TPTCArea);
- Var
- clipped_area : TPTCArea;
- Begin
- clipped_area := TPTCClipper.clip(_area, m_clip);
- Try
- m_clear.request(m_format);
- m_clear.clear(m_pixels, clipped_area.left, clipped_area.top,
- clipped_area.width, clipped_area.height, m_pitch, color);
- Finally
- clipped_area.Free;
- End;
- End;
- Procedure TPTCSurface.palette(Const _palette : TPTCPalette);
- Begin
- m_palette.load(_palette.data^);
- End;
- Function TPTCSurface.palette : TPTCPalette;
- Begin
- palette := m_palette;
- End;
- Procedure TPTCSurface.clip(Const _area : TPTCArea);
- Var
- tmp : TPTCArea;
- Begin
- tmp := TPTCClipper.clip(_area, m_area);
- Try
- m_clip.ASSign(tmp);
- Finally
- tmp.Free;
- End;
- End;
- Function TPTCSurface.width : Integer;
- Begin
- width := m_width;
- End;
- Function TPTCSurface.height : Integer;
- Begin
- height := m_height;
- End;
- Function TPTCSurface.pitch : Integer;
- Begin
- pitch := m_pitch;
- End;
- Function TPTCSurface.area : TPTCArea;
- Begin
- area := m_area;
- End;
- Function TPTCSurface.clip : TPTCArea;
- Begin
- clip := m_clip;
- End;
- Function TPTCSurface.format : TPTCFormat;
- Begin
- format := m_format;
- End;
- Function TPTCSurface.option(Const _option : String) : Boolean;
- Begin
- option := m_copy.option(_option);
- End;
|