123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087 |
- {
- $Id$
- This file is part of the Free Pascal run time library.
- Copyright (c) 1993,99 by the Free Pascal development team
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program 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.
- **********************************************************************}
- Unit Graph;
- {-------------------------------------------------------}
- { Differences with TP Graph unit: }
- { - default putimage and getimage only support a max. }
- { of 64K colors on screen, because all pixels are }
- { saved as words. }
- { - Set RGB Palette is not used, SetPalette must be }
- { used instead. }
- { - In the TP graph unit, Clipping is always performed }
- { on strings written with OutText, and this clipping }
- { is done on a character per character basis (for }
- { example, if ONE part of a character is outside the }
- { viewport , then that character is not written at }
- { all to the screen. In FPC Pascal, clipping is done }
- { on a PIXEL basis, not a character basis, so part of }
- { characters which are not entirely in the viewport }
- { may appear on the screen. }
- { - SetTextStyle only conforms to the TP version when }
- { the correct (and expected) values are used for }
- { CharSize for stroked fonts (4 = stroked fonts) }
- { - InstallUserDriver is not supported, so always }
- { returns an error. }
- { - RegisterBGIDriver is not supported, so always }
- { returns an error. }
- { - DrawPoly XORPut mode is not exactly the same as in }
- { the TP graph unit. }
- { - Imagesize returns a longint instead of a word }
- { - ImageSize cannot return an error value }
- {-------------------------------------------------------}
- { AUTHORS: }
- { Gernot Tenchio - original version }
- { Florian Klaempfl - major updates }
- { Pierre Mueller - major bugfixes }
- { Carl Eric Codere - complete rewrite }
- { Thomas Schatzl - optimizations,routines and }
- { suggestions. }
- { Jonas Maebe - bugfixes and optimizations }
- { Credits (external): }
- { - Original FloodFill code by }
- { Menno Victor van der star }
- { (the code has been heavily modified) }
- {-------------------------------------------------------}
- {-------------------------------------------------------}
- { For significant speed improvements , is is recommended }
- { that these routines be hooked (otherwise the default, }
- { slower routines will be used) : }
- { HLine() }
- { VLine() }
- { PatternLine() }
- { ClearViewPort() }
- { PutImage() }
- { GetImage() - ImageSize() should also be changed }
- { InternalEllipse() }
- { Line() }
- { GetScanLine() }
- {--------------------------------------------------------}
- { FPC unit requirements: }
- { All modes should at least have 1 graphics page to }
- { make it possible to create animation on all supported }
- { systems , this can be done either by double-buffering }
- { yourself in the heap if no hardware is available to do}
- { it. }
- {--------------------------------------------------------}
- { COMPATIBILITY WARNING: Some of the compatibility tests }
- { were done using the CGA and other the VGA drivers. }
- { Within the BGI drivers themselves the BEHAVIOUR is not }
- { the same, so be warned!!! }
- {--------------------------------------------------------}
- { History log: }
- { 15th February 1999: }
- { + Added support for system font in vertical mode }
- { + system font is now available for all platforms }
- { * font support routines now compile }
- { * textHeight would not return correct size for system }
- { font }
- { * Alignment of fonts partly fixed }
- { 17th Feb. 1999: }
- { + First support for stroked fonts }
- { 18th Feb. 1999: }
- { * bugfix of line drawing which fixes stroked font }
- { displays. }
- { 23rd Feb. 1999: }
- { + Applied Pierre's patches to font }
- { + Added scaling of bitmapped fonts }
- { + Vertical stroked fonts }
- { 24th Feb. 1999: }
- { * Scaling of stroked fonts must be done using FPs }
- { to be 100% compatible with turbo pascal }
- { + Sped up by 40% stroked font scaling calculations }
- { + RegisterBGIFont }
- { 9th march 1999: }
- { + Starting implementing Fillpoly() }
- { 15th march 1999: }
- { + SetFillStyle() }
- { + patternLine() }
- { + Bar() }
- { * GraphDefaults would not make the Default color }
- { of the fill pattern to the Max. Palette entry. }
- { + SetFillPattern() }
- { 20th march 1999: }
- { * GraphDefaults would not reset to the text system }
- { * DefaultFont would write one character too much to }
- { the screen }
- { + Sloped thick lines in Line() }
- { + Sloped patterned lines in Line() }
- { * GraphDefaults would not reset the User Fill pattern}
- { to $ff }
- { + DirectPutPixel takes care of XOR mode writes }
- { improves speed by about 30% over old method of }
- { GetPixel XOR CurrentColor }
- { * Dashed LineStyle exactly like BP version now }
- { + Center LineStyle (checked against CGA driver) }
- { * GraphDefaults() now resets linepattern array }
- { 1st april 1999: }
- { + First implementation of FillPoly (incomplete) }
- { 2nd april 1999: }
- { * FillPoly did not Reset PatternLine index }
- { * FillPoly did not use correct color }
- { * PatternLine was writing modes in reverse direction }
- { * PatternLine would not work with non-rectangular }
- { shapes. }
- { * PatternLine must fill up the ENTIRE pattern, }
- { with either the foreground or background color. }
- { * GraphDefaults() would not call SetBkColor() }
- { * Fixed some memory leaks in FillPoly() }
- { 11th April 1999: }
- { * PatternLine() was drawing one pixel less then }
- { requested }
- { 12th April 1999: }
- { + FloodFill - first working implementation }
- { Horrbly slow even on very fast cpu's }
- { + Some suggestions of Thomas implemented }
- { 13th April 1999: }
- { * FloodFill() vertical index was off by one pixel }
- { * FloodFill() would never draw the last line in the }
- { list }
- { - Removed ClearViewPort320 which was wrong anyways, }
- { will need to be implemented later. }
- { * PatternLine() would not always restore write mode }
- { + Circle() uses NormalPut always with NormWidth lines}
- { + FillEllipse() initial version }
- { * InternalEllipse() - 0 to 360 now supported as }
- { angles. }
- { 14th April 1999: }
- { * mod x = and (x-1)(from Thomas Schatzl) gives a }
- { significant speed improvement. }
- { 15th april 1999: }
- { + Arc() ok except for Aspect Ratio, which does not }
- { give us the correct ratio on a 320x200 screen. }
- { + Added FillPoly() from Thomas Schatzl }
- { + More hookable routines }
- { 16th april 1999: }
- { + Line() checked ok. }
- { 17th april 1999: }
- { * GraphDefaults() would not reset CP }
- { + GetX(), GetY(), MoveTo() checked for viewports }
- { * OutTextXY() should not update the CP }
- { * ClearViewPort() would not update the CP }
- { * ClearDevice() would not update the CP }
- { * Sector() would update the CP by calling LineTo }
- { * Bar3D() would update the CP }
- { * PieSlice() would update the CP }
- { 18th april 1999: }
- { + Clipping algorithm }
- { 19th april 1999: }
- { + Adapterinfo structure }
- { 20th april 1999: }
- { + GetModeName }
- { + GetGraphMode }
- { + GetModeRange }
- {--------------------------------------------------------}
- { LEFT TO DO: }
- { - optimize scaling of stroked fonts }
- { - optimize InternalEllipse() }
- { using linear appx. of sine/cosine tables }
- { - justification for stroked fonts does not work }
- { - On Closegraph deallocate all font pointers }
- {--------------------------------------------------------}
- { text.inc will crash on aligned requirement machines. }
- { (packed record for fontrec) }
- {$ifndef fpc}
- {$G+}
- {$endif}
- Interface
- {$ifdef win32}
- uses
- windows;
- {$endif win32}
- const
- { error codes }
- grOk = 0;
- grNoInitGraph = -1;
- grNotDetected = -2;
- grFileNotFound = -3;
- grInvalidDriver = -4;
- grNoLoadMem = -5;
- grNoScanMem = -6;
- grNoFloodMem = -7;
- grFontNotFound = -8;
- grNoFontMem = -9;
- grInvalidMode = -10;
- grError = -11;
- grIOerror = -12;
- grInvalidFont = -13;
- grInvalidFontNum = -14;
- grInvalidVersion = -18;
- { Color constants for setpalette }
- black = 0;
- blue = 1;
- green = 2;
- cyan = 3;
- red = 4;
- magenta = 5;
- brown = 6;
- lightgray = 7;
- darkgray = 8;
- lightblue = 9;
- lightgreen = 10;
- lightcyan = 11;
- lightred = 12;
- lightmagenta = 13;
- yellow = 14;
- white = 15;
- EGABlack = 0;
- EGABlue = 1;
- EGAGreen = 2;
- EGACyan = 3;
- EGARed = 4;
- EGAMagenta = 5;
- EGALightgray= 7;
- EGABrown = 20;
- EGADarkgray = 56;
- EGALightblue = 57;
- EGALightgreen = 58;
- EGALightcyan = 59;
- EGALightred = 60;
- EGALightmagenta=61;
- EGAYellow = 62;
- EGAWhite = 63;
- { Line styles for GetLineStyle/SetLineStyle }
- SolidLn = 0;
- DottedLn = 1;
- CenterLn = 2;
- DashedLn = 3;
- UserBitLn = 4;
- NormWidth = 1;
- ThickWidth = 3;
- { Set/GetTextStyle Konstanten: }
- DefaultFont = 0;
- TriplexFont = 1;
- SmallFont = 2;
- SansSerifFont = 3;
- GothicFont = 4;
- ScriptFont = 5;
- SimpleFont = 6;
- TSCRFont = 7;
- LCOMFont = 8;
- EuroFont = 9;
- BoldFont = 10;
- HorizDir = 0;
- VertDir = 1;
- UserCharSize = 0;
- ClipOn = true;
- ClipOff = false;
- { Bar3D constants }
- TopOn = true;
- TopOff = false;
- { fill pattern for Get/SetFillStyle: }
- EmptyFill = 0;
- SolidFill = 1;
- LineFill = 2;
- LtSlashFill = 3;
- SlashFill = 4;
- BkSlashFill = 5;
- LtBkSlashFill = 6;
- HatchFill = 7;
- XHatchFill = 8;
- InterleaveFill = 9;
- WideDotFill = 10;
- CloseDotFill = 11;
- UserFill = 12;
- { bitblt operators }
- NormalPut = 0;
- CopyPut = 0;
- XORPut = 1;
- OrPut = 2;
- AndPut = 3;
- NotPut = 4;
- { SetTextJustify constants }
- LeftText = 0;
- CenterText = 1;
- RightText = 2;
- BottomText = 0;
- TopText = 2;
- { graphic drivers }
- CurrentDriver = -128;
- Detect = 0;
- LowRes = 1;
- HercMono = 7;
- VGA = 9;
- VESA = 10;
- { graph modes }
- Default = 0;
- { VGA Driver modes }
- VGALo = 0;
- VGAMed = 1;
- VGAHi = 2;
- { Hercules mono card }
- HercMonoHi = 0;
- MaxColors = 255; { Maximum possible colors using a palette }
- { otherwise, direct color encoding }
- type
- RGBRec = packed record
- Red: integer;
- Green: integer;
- Blue : integer;
- end;
- PaletteType = record
- Size : longint;
- Colors : array[0..MaxColors] of RGBRec;
- end;
- LineSettingsType = record
- linestyle : word;
- pattern : word;
- thickness : word;
- end;
- TextSettingsType = record
- font : word;
- direction : word;
- charsize : word;
- horiz : word;
- vert : word;
- end;
- FillSettingsType = record
- pattern : word;
- color : word;
- end;
- FillPatternType = array[1..8] of byte;
- PointType = record
- x,y : integer;
- end;
- ViewPortType = record
- x1,y1,x2,y2 : integer;
- Clip : boolean;
- end;
- ArcCoordsType = record
- x,y : integer;
- xstart,ystart : integer;
- xend,yend : integer;
- end;
- {$IFDEF FPC}
- graph_int = longint; { platform specific integer used for indexes;
- should be 16 bits on TP/BP and 32 bits on every-
- thing else for speed reasons }
- graph_float = single; { the platform's preferred floating point size }
- {$ELSE}
- graph_int = integer; { platform specific integer used for indexes;
- should be 16 bits on TP/BP and 32 bits on every-
- thing else for speed reasons }
- graph_float = real; { the platform's preferred floating point size }
- {$ENDIF}
- const
- fillpatternTable : array[0..12] of FillPatternType = (
- ($00,$00,$00,$00,$00,$00,$00,$00), { background color }
- ($ff,$ff,$ff,$ff,$ff,$ff,$ff,$ff), { foreground color }
- ($ff,$ff,$00,$00,$ff,$ff,$00,$00), { horizontal lines }
- ($01,$02,$04,$08,$10,$20,$40,$80), { slashes }
- ($07,$0e,$1c,$38,$70,$e0,$c1,$83), { thick slashes }
- ($07,$83,$c1,$e0,$70,$38,$1c,$0e), { thick backslashes }
- ($5a,$2d,$96,$4b,$a5,$d2,$69,$b4), { backslashes }
- ($ff,$88,$88,$88,$ff,$88,$88,$88), { small boxes }
- ($18,$24,$42,$81,$81,$42,$24,$18), { rhombus }
- ($cc,$33,$cc,$33,$cc,$33,$cc,$33), { wall pattern }
- ($80,$00,$08,$00,$80,$00,$08,$00), { wide points }
- ($88,$00,$22,$00,$88,$00,$22,$00), { dense points }
- (0,0,0,0,0,0,0,0) { user defined line style }
- );
- { ******************** PROCEDURAL VARIABLES ********************* }
- { * These are hooks which have device specific stuff in them, * }
- { * therefore to add new modes or to redirect these routines * }
- { * then declare variables of these types as shown below. * }
- {-----------------------------------------------------------------}
- TYPE
- { This is the standard putpixel routine used by all function }
- { drawing routines, it will use the viewport settings, as }
- { well as clip, and use the current foreground color to plot }
- { the desired pixel. }
- defpixelproc = procedure(X,Y: Integer);
- { standard plot and get pixel }
- getpixelproc = function(X,Y: Integer): word;
- putpixelproc = procedure(X,Y: Integer; Color: Word);
- { clears the viewport, also used to clear the device }
- clrviewproc = procedure;
- { putimage procedure, can be hooked to accomplish transparency }
- putimageproc = procedure (X,Y: Integer; var Bitmap; BitBlt: Word);
- getimageproc = procedure(X1,Y1,X2,Y2: Integer; Var Bitmap);
- imagesizeproc= function (X1,Y1,X2,Y2: Integer): longint;
- graphfreememprc = procedure (var P: Pointer; size: word);
- graphgetmemprc = procedure (var P: pointer; size: word);
- { internal routines -- can be hooked for much faster drawing }
- { draw filled horizontal lines using current color }
- { on entry coordinates are already clipped. }
- hlineproc = procedure (x, x2,y : integer);
- { on entry coordinates are already clipped. }
- { draw filled vertical line using current color }
- vlineproc = procedure (x,y,y2: integer);
- { this routine is used to draw filled patterns for all routines }
- { that require it. (FillPoly, FloodFill, Sector, etc... }
- { clipping is verified, uses current Fill settings for drawing }
- patternlineproc = procedure (x1,x2,y: integer);
- { this routine is used to draw all circles/ellipses/sectors }
- { more info... on this later... }
- ellipseproc = procedure (X,Y: Integer;XRadius: word;
- YRadius:word; stAngle,EndAngle: word; fp: PatternLineProc);
- { Line routine - draws lines thick/norm widths with current }
- { color and line style - LINE must be clipped here. }
- lineproc = procedure (X1, Y1, X2, Y2 : Integer);
- { this routine is used for FloodFill - it returns an entire }
- { screen scan line with a word for each pixel in the scanline }
- getscanlineproc = procedure (Y : integer; var data);
- { changes the active display screen where we draw to... }
- setactivepageproc = procedure (page: word);
- { changes the active display screen which we see ... }
- setvisualpageproc = procedure (page: word);
- { this routine actually switches to the desired video mode. }
- initmodeproc = procedure;
- { this routine is called to save the sate just before a mode set }
- savestateproc = procedure;
- { this routine is called in closegraph to cleanup... }
- restorestateproc = procedure;
- { This routine is a hook for SetRGBPalette }
- setrgbpaletteproc =
- procedure(ColorNum, RedValue, GreenValue, BlueValue: Integer);
- { This routine is a hook for GetRGBPalette }
- getrgbpaletteproc =
- procedure(ColorNum: integer; var
- RedValue, GreenValue, BlueValue: Integer);
- TYPE
- {-----------------------------------}
- { Linked list for mode information }
- { This list is set up by one of the }
- { following routines: }
- { It lists all available resolutions}
- { on this display adapter. }
- {-----------------------------------}
- { QueryAdapter() }
- { DetectGraph() }
- { InitGraph() }
- {-----------------------------------}
- PModeInfo = ^TModeInfo;
- TModeInfo = record
- DriverNumber: Integer;
- ModeNumber: Integer;
- MaxColor: Longint; { Maximum colors on screen }
- PaletteSize : Longint; { Maximum palette entry we can change }
- XAspect : Integer; { XAspect ratio correction factor }
- YAspect : Integer; { YAspect ratio correction factor }
- MaxX: Integer; { Max-X row }
- MaxY: Integer; { Max. column. }
- DirectColor: boolean; { Is this a direct color mode?? }
- Hardwarepages: byte; { total number of image pages - 1 }
- ModeName: String[18];
- { necessary hooks ... }
- DirectPutPixel : DefPixelProc;
- GetPixel : GetPixelProc;
- PutPixel : PutPixelProc;
- SetRGBPalette : SetRGBPaletteProc;
- GetRGBPalette : GetRGBPaletteProc;
- { defaults possible ... }
- SetVisualPage : SetVisualPageProc;
- SetActivePage : SetActivePageProc;
- ClearViewPort : ClrViewProc;
- PutImage : PutImageProc;
- GetImage : GetImageProc;
- ImageSize : ImageSizeProc;
- GetScanLine : GetScanLineProc;
- Line : LineProc;
- InternalEllipse: EllipseProc;
- PatternLine : PatternLineProc;
- HLine : HLineProc;
- VLine : VLineProc;
- InitMode : InitModeProc;
- next: PModeInfo;
- end;
- VAR
- DirectPutPixel : DefPixelProc;
- ClearViewPort : ClrViewProc;
- PutPixel : PutPixelProc;
- PutImage : PutImageProc;
- GetImage : GetImageProc;
- ImageSize : ImageSizeProc;
- GetPixel : GetPixelProc;
- SetVisualPage : SetVisualPageProc;
- SetActivePage : SetActivePageProc;
- SetRGBPalette : SetRGBPaletteProc;
- GetRGBPalette : GetRGBPaletteProc;
- GraphFreeMemPtr: graphfreememprc;
- GraphGetMemPtr : graphgetmemprc;
- GetScanLine : GetScanLineProc;
- Line : LineProc;
- InternalEllipse: EllipseProc;
- PatternLine : PatternLineProc;
- HLine : HLineProc;
- VLine : VLineProc;
- SaveVideoState : SaveStateProc;
- RestoreVideoState: RestoreStateProc;
- ExitSave: pointer;
- {$ifdef win32}
- { this procedure allows to hook keyboard message of the graph unit window }
- charmessagehandler : function(Window: hwnd; AMessage, WParam,
- LParam: Longint): Longint;
- {$endif win32}
- Procedure Closegraph;
- procedure SetLineStyle(LineStyle: word; Pattern: word; Thickness: word);
- function GraphErrorMsg(ErrorCode: Integer): string;
- Function GetMaxX: Integer;
- Function GetMaxY: Integer;
- Procedure SetViewPort(X1, Y1, X2, Y2: Integer; Clip: Boolean);
- Function GraphResult: Integer;
- function GetModeName(ModeNumber: integer): string;
- procedure SetGraphMode(Mode: Integer);
- function GetGraphMode: Integer;
- function GetMaxMode: word;
- procedure RestoreCrtMode;
- procedure GetModeRange(GraphDriver: Integer; var LoMode, HiMode: Integer);
- Function GetX: Integer;
- Function GetY: Integer;
- procedure GraphDefaults;
- procedure ClearDevice;
- procedure GetViewSettings(var viewport : ViewPortType);
- procedure SetWriteMode(WriteMode : integer);
- procedure GetFillSettings(var Fillinfo:Fillsettingstype);
- procedure GetFillPattern(var FillPattern:FillPatternType);
- procedure GetLineSettings(var ActiveLineInfo : LineSettingsType);
- procedure InitGraph(var GraphDriver:Integer;var GraphMode:Integer;const PathToDriver:String);
- function InstallUserDriver(Name: string; AutoDetectPtr: Pointer): integer;
- function RegisterBGIDriver(driver: pointer): integer;
- procedure SetFillStyle(Pattern : word; Color: word);
- procedure SetFillPattern(Pattern: FillPatternType; Color: word);
- Function GetDriverName: string;
- procedure MoveRel(Dx, Dy: Integer);
- procedure MoveTo(X,Y: Integer);
- procedure SetDirectVideo(DirectAccess: boolean);
- function GetDirectVideo: boolean;
- { -------------------- Color/Palette ------------------------------- }
- procedure SetBkColor(ColorNum: Word);
- function GetColor: Word;
- function GetBkColor: Word;
- procedure SetColor(Color: Word);
- function GetMaxColor: word;
- procedure SetAllPalette(var Palette:PaletteType);
- procedure SetPalette(ColorNum: word; Color: shortint);
- procedure GetPalette(var Palette: PaletteType);
- function GetPaletteSize: integer;
- procedure GetDefaultPalette(var Palette: PaletteType);
- { -------------------- Shapes/Lines -------------------------------- }
- procedure Rectangle(x1,y1,x2,y2:integer);
- procedure Bar(x1,y1,x2,y2:integer);
- procedure Bar3D(x1, y1, x2, y2 : integer;depth : word;top : boolean);
- procedure FillPoly(NumPoints: word; Var PolyPoints);
- procedure DrawPoly(NumPoints : word;var polypoints);
- procedure LineRel(Dx, Dy: Integer);
- procedure LineTo(X,Y : Integer);
- procedure FloodFill(x : integer; y : integer; Border: word);
- { -------------------- Circle related routines --------------------- }
- procedure GetAspectRatio(var Xasp,Yasp : word);
- procedure SetAspectRatio(Xasp, Yasp : word);
- procedure GetArcCoords(var ArcCoords: ArcCoordsType);
- procedure Arc(X,Y : Integer; StAngle,EndAngle,Radius: word);
- procedure PieSlice(X,Y,stangle,endAngle:integer;Radius: Word);
- procedure FillEllipse(X, Y: Integer; XRadius, YRadius: Word);
- procedure Circle(X, Y: Integer; Radius:Word);
- procedure Sector(x, y: Integer; StAngle,EndAngle, XRadius, YRadius: Word);
- procedure Ellipse(X,Y : Integer; stAngle, EndAngle: word; XRadius,
- YRadius: word);
- { --------------------- Text related routines --------------------- }
- function InstallUserFont(const FontFileName : string) : integer;
- function RegisterBGIfont(font : pointer) : integer;
- procedure GetTextSettings(var TextInfo : TextSettingsType);
- function TextHeight(const TextString : string) : word;
- function TextWidth(const TextString : string) : word;
- procedure SetTextJustify(horiz,vert : word);
- procedure SetTextStyle(font,direction : word;charsize : word);
- procedure SetUserCharSize(Multx,Divx,Multy,Divy : word);
- procedure OutTextXY(x,y : integer;const TextString : string);
- procedure OutText(const TextString : string);
- { Load extra graph additions per system like mode constants }
- {$i graphh.inc}
- Implementation
- { what a mess ... it would be much better if the graph unit }
- { would follow the structure of the FPC system unit: }
- { the main file is system depended and the system independend part }
- { is included (FK) }
- {$ifdef fpc}
- {$ifdef go32v2}
- {$define dpmi}
- uses go32,ports;
- Type TDPMIRegisters = go32.registers;
- {$endif go32v2}
- {$ifdef win32}
- uses
- strings;
- {$endif}
- {$else fpc}
- {$IFDEF DPMI}
- uses WinAPI;
- {$ENDIF}
- {$endif fpc}
- {$ifdef logging}
- var debuglog: text;
- function strf(l: longint): string;
- begin
- str(l, strf)
- end;
- Procedure Log(Const s: String);
- Begin
- Append(debuglog);
- Write(debuglog, s);
- Close(debuglog);
- End;
- Procedure LogLn(Const s: string);
- Begin
- Append(debuglog);
- Writeln(debuglog,s);
- Close(debuglog);
- End;
- {$endif logging}
- const
- StdBufferSize = 4096; { Buffer size for FloodFill }
- type
- tinttable = array[0..16383] of integer;
- pinttable = ^tinttable;
- WordArray = Array [0..StdbufferSize] Of word;
- PWordArray = ^WordArray;
- const
- { Mask for each bit in byte used to determine pattern }
- BitArray: Array[0..7] of byte =
- ($01,$02,$04,$08,$10,$20,$40,$80);
- RevbitArray: Array[0..7] of byte =
- ($80,$40,$20,$10,$08,$04,$02,$01);
- { pre expanded line patterns }
- { 0 = LSB of byte pattern }
- { 15 = MSB of byte pattern }
- LinePatterns: Array[0..15] of BOOLEAN =
- (TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,
- TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE);
- const
- BGIPath : string = '.';
- { Default font 8x8 system from IBM PC }
- {$i fontdata.inc}
- var
- CurrentColor: Word;
- CurrentBkColor: Word;
- CurrentX : Integer; { viewport relative }
- CurrentY : Integer; { viewport relative }
- ClipPixels: Boolean; { Should cliiping be enabled }
- CurrentWriteMode: Integer;
- _GraphResult : Integer;
- LineInfo : LineSettingsType;
- FillSettings: FillSettingsType;
- { information for Text Output routines }
- CurrentTextInfo : TextSettingsType;
- CurrentXRatio, CurrentYRatio: graph_float;
- installedfonts: longint; { Number of installed fonts }
- StartXViewPort: Integer; { absolute }
- StartYViewPort: Integer; { absolute }
- ViewWidth : Integer;
- ViewHeight: Integer;
- IsGraphMode : Boolean; { Indicates if we are in graph mode or not }
- ArcCall: ArcCoordsType; { Information on the last call to Arc or Ellipse }
- var
- { ******************** HARDWARE INFORMATION ********************* }
- { Should be set in InitGraph once only. }
- IntCurrentMode : Integer;
- IntCurrentDriver : Integer; { Currently loaded driver }
- XAspect : Integer;
- YAspect : Integer;
- MaxX : Integer; { Maximum resolution - ABSOLUTE }
- MaxY : Integer; { Maximum resolution - ABSOLUTE }
- MaxColor : Longint;
- PaletteSize : longint; { Maximum palette entry we can set, usually equal}
- { maxcolor. }
- HardwarePages : byte; { maximum number of hardware visual pages }
- DriverName: String;
- DirectColor : Boolean ; { Is it a direct color mode? }
- ModeList : PModeInfo;
- DirectVideo : Boolean; { Direct access to video memory? }
- {--------------------------------------------------------------------------}
- { }
- { LINE AND LINE RELATED ROUTINES }
- { }
- {--------------------------------------------------------------------------}
- {$i clip.inc}
- procedure HLineDefault(x,x2,y: integer); {$ifndef fpc}far;{$endif fpc}
- var
- xtmp: integer;
- Begin
- { must we swap the values? }
- if x >= x2 then
- Begin
- xtmp := x2;
- x2 := x;
- x:= xtmp;
- end;
- { First convert to global coordinates }
- X := X + StartXViewPort;
- X2 := X2 + StartXViewPort;
- Y := Y + StartYViewPort;
- if ClipPixels then
- Begin
- if LineClipped(x,y,x2,y,StartXViewPort,StartYViewPort,
- StartXViewPort+ViewWidth, StartYViewPort+ViewHeight) then
- exit;
- end;
- for x:= x to x2 do
- DirectPutPixel(X,Y);
- end;
- procedure VLineDefault(x,y,y2: integer); {$ifndef fpc}far;{$endif fpc}
- var
- ytmp: integer;
- Begin
- { must we swap the values? }
- if y >= y2 then
- Begin
- ytmp := y2;
- y2 := y;
- y:= ytmp;
- end;
- { First convert to global coordinates }
- X := X + StartXViewPort;
- Y2 := Y2 + StartYViewPort;
- Y := Y + StartYViewPort;
- if ClipPixels then
- Begin
- if LineClipped(x,y,x,y2,StartXViewPort,StartYViewPort,
- StartXViewPort+ViewWidth, StartYViewPort+ViewHeight) then
- exit;
- end;
- for y := y to y2 do Directputpixel(x,y)
- End;
- Procedure DirectPutPixelClip(x,y: Integer);
- { for thickwidth lines, because they may call DirectPutPixel for coords }
- { outside the current viewport (bug found by CEC) }
- Begin
- If (Not ClipPixels) Or
- ((X >= StartXViewPort) And (X <= (StartXViewPort + ViewWidth)) And
- (Y >= StartYViewPort) And (Y <= (StartYViewPort + ViewHeight))) then
- Begin
- DirectPutPixel(x,y)
- End
- End;
- procedure LineDefault(X1, Y1, X2, Y2: Integer); {$ifndef fpc}far;{$endif fpc}
- var X, Y : Integer;
- deltax, deltay : Integer;
- d, dinc1, dinc2: Integer;
- xinc1 : Integer;
- xinc2 : Integer;
- yinc1 : Integer;
- yinc2 : Integer;
- i : Integer;
- Flag : Boolean; { determines pixel direction in thick lines }
- NumPixels : Integer;
- PixelCount : Integer;
- OldCurrentColor: Word;
- swtmp : integer;
- TmpNumPixels : integer;
- begin
- {******************************************}
- { SOLID LINES }
- {******************************************}
- if lineinfo.LineStyle = SolidLn then
- Begin
- { we separate normal and thick width for speed }
- { and because it would not be 100% compatible }
- { with the TP graph unit otherwise }
- if y1 = y2 then
- Begin
- {******************************************}
- { SOLID LINES HORIZONTAL }
- {******************************************}
- if lineinfo.Thickness=NormWidth then
- hline(x1,x2,y2)
- else
- begin
- { thick width }
- hline(x1,x2,y2-1);
- hline(x1,x2,y2);
- hline(x2,x2,y2+1);
- end;
- end
- else
- if x1 = x2 then
- Begin
- {******************************************}
- { SOLID LINES VERTICAL }
- {******************************************}
- if lineinfo.Thickness=NormWidth then
- vline(x1,y1,y2)
- else
- begin
- { thick width }
- vline(x1-1,y1,y2);
- vline(x1,y1,y2);
- vline(x1+1,y1,y2);
- end;
- end
- else
- begin
- { Convert to global coordinates. }
- x1 := x1 + StartXViewPort;
- x2 := x2 + StartXViewPort;
- y1 := y1 + StartYViewPort;
- y2 := y2 + StartYViewPort;
- { if fully clipped then exit... }
- if ClipPixels then
- begin
- if LineClipped(x1,y1,x2,y2,StartXViewPort, StartYViewPort,
- StartXViewPort+ViewWidth, StartYViewPort+ViewHeight) then
- exit;
- end;
- {******************************************}
- { SLOPED SOLID LINES }
- {******************************************}
- oldCurrentColor :=
- CurrentColor;
- { Calculate deltax and deltay for initialisation }
- deltax := abs(x2 - x1);
- deltay := abs(y2 - y1);
- { Initialize all vars based on which is the independent variable }
- if deltax >= deltay then
- begin
- Flag := FALSE;
- { x is independent variable }
- numpixels := deltax + 1;
- d := (2 * deltay) - deltax;
- dinc1 := deltay Shl 1;
- dinc2 := (deltay - deltax) shl 1;
- xinc1 := 1;
- xinc2 := 1;
- yinc1 := 0;
- yinc2 := 1;
- end
- else
- begin
- Flag := TRUE;
- { y is independent variable }
- numpixels := deltay + 1;
- d := (2 * deltax) - deltay;
- dinc1 := deltax Shl 1;
- dinc2 := (deltax - deltay) shl 1;
- xinc1 := 0;
- xinc2 := 1;
- yinc1 := 1;
- yinc2 := 1;
- end;
- { Make sure x and y move in the right directions }
- if x1 > x2 then
- begin
- xinc1 := - xinc1;
- xinc2 := - xinc2;
- end;
- if y1 > y2 then
- begin
- yinc1 := - yinc1;
- yinc2 := - yinc2;
- end;
- { Start drawing at <x1, y1> }
- x := x1;
- y := y1;
- If LineInfo.Thickness=NormWidth then
- Begin
- { Draw the pixels }
- for i := 1 to numpixels do
- begin
- DirectPutPixel(x, y);
- if d < 0 then
- begin
- d := d + dinc1;
- x := x + xinc1;
- y := y + yinc1;
- end
- else
- begin
- d := d + dinc2;
- x := x + xinc2;
- y := y + yinc2;
- end;
- CurrentColor := OldCurrentColor;
- end;
- end
- else
- { Thick width lines }
- begin
- { Draw the pixels }
- for i := 1 to numpixels do
- begin
- { all depending on the slope, we can determine }
- { in what direction the extra width pixels will be put }
- If Flag then
- Begin
- DirectPutPixelClip(x-1,y);
- DirectPutPixelClip(x,y);
- DirectPutPixelClip(x+1,y);
- end
- else
- Begin
- DirectPutPixelClip(x, y-1);
- DirectPutPixelClip(x, y);
- DirectPutPixelClip(x, y+1);
- end;
- if d < 0 then
- begin
- d := d + dinc1;
- x := x + xinc1;
- y := y + yinc1;
- end
- else
- begin
- d := d + dinc2;
- x := x + xinc2;
- y := y + yinc2;
- end;
- CurrentColor := OldCurrentColor;
- end;
- end;
- end;
- end
- else
- {******************************************}
- { begin patterned lines }
- {******************************************}
- Begin
- { Convert to global coordinates. }
- x1 := x1 + StartXViewPort;
- x2 := x2 + StartXViewPort;
- y1 := y1 + StartYViewPort;
- y2 := y2 + StartYViewPort;
- { if fully clipped then exit... }
- if ClipPixels then
- begin
- if LineClipped(x1,y1,x2,y2,StartXViewPort, StartYViewPort,
- StartXViewPort+ViewWidth, StartYViewPort+ViewHeight) then
- exit;
- end;
- OldCurrentColor := CurrentColor;
- PixelCount:=0;
- if y1 = y2 then
- Begin
- { Check if we must swap }
- if x1 >= x2 then
- Begin
- swtmp := x1;
- x1 := x2;
- x2 := swtmp;
- end;
- if LineInfo.Thickness = NormWidth then
- Begin
- for PixelCount:=x1 to x2 do
- { optimization: PixelCount mod 16 }
- if LinePatterns[PixelCount and 15] = TRUE then
- begin
- DirectPutPixel(PixelCount,y2);
- end;
- end
- else
- Begin
- for i:=-1 to 1 do
- Begin
- for PixelCount:=x1 to x2 do
- { Optimization from Thomas - mod 16 = and 15 }
- {this optimization has been performed by the compiler
- for while as well (JM)}
- if LinePatterns[PixelCount and 15] = TRUE then
- begin
- DirectPutPixelClip(PixelCount,y2+i);
- end;
- end;
- end;
- end
- else
- if x1 = x2 then
- Begin
- { Check if we must swap }
- if y1 >= y2 then
- Begin
- swtmp := y1;
- y1 := y2;
- y2 := swtmp;
- end;
- if LineInfo.Thickness = NormWidth then
- Begin
- for PixelCount:=y1 to y2 do
- { compare if we should plot a pixel here , compare }
- { with predefined line patterns... }
- if LinePatterns[PixelCount and 15] = TRUE then
- begin
- DirectPutPixel(x1,PixelCount);
- end;
- end
- else
- Begin
- for i:=-1 to 1 do
- Begin
- for PixelCount:=y1 to y2 do
- { compare if we should plot a pixel here , compare }
- { with predefined line patterns... }
- if LinePatterns[PixelCount and 15] = TRUE then
- begin
- DirectPutPixelClip(x1+i,PixelCount);
- end;
- end;
- end;
- end
- else
- Begin
- oldCurrentColor := CurrentColor;
- { Calculate deltax and deltay for initialisation }
- deltax := abs(x2 - x1);
- deltay := abs(y2 - y1);
- { Initialize all vars based on which is the independent variable }
- if deltax >= deltay then
- begin
- Flag := FALSE;
- { x is independent variable }
- numpixels := deltax + 1;
- d := (2 * deltay) - deltax;
- dinc1 := deltay Shl 1;
- dinc2 := (deltay - deltax) shl 1;
- xinc1 := 1;
- xinc2 := 1;
- yinc1 := 0;
- yinc2 := 1;
- end
- else
- begin
- Flag := TRUE;
- { y is independent variable }
- numpixels := deltay + 1;
- d := (2 * deltax) - deltay;
- dinc1 := deltax Shl 1;
- dinc2 := (deltax - deltay) shl 1;
- xinc1 := 0;
- xinc2 := 1;
- yinc1 := 1;
- yinc2 := 1;
- end;
- { Make sure x and y move in the right directions }
- if x1 > x2 then
- begin
- xinc1 := - xinc1;
- xinc2 := - xinc2;
- end;
- if y1 > y2 then
- begin
- yinc1 := - yinc1;
- yinc2 := - yinc2;
- end;
- { Start drawing at <x1, y1> }
- x := x1;
- y := y1;
- If LineInfo.Thickness=ThickWidth then
- Begin
- TmpNumPixels := NumPixels-1;
- { Draw the pixels }
- for i := 0 to TmpNumPixels do
- begin
- { all depending on the slope, we can determine }
- { in what direction the extra width pixels will be put }
- If Flag then
- Begin
- { compare if we should plot a pixel here , compare }
- { with predefined line patterns... }
- if LinePatterns[i and 15] = TRUE then
- begin
- DirectPutPixelClip(x-1,y);
- DirectPutPixelClip(x,y);
- DirectPutPixelClip(x+1,y);
- end;
- end
- else
- Begin
- { compare if we should plot a pixel here , compare }
- { with predefined line patterns... }
- if LinePatterns[i and 15] = TRUE then
- begin
- DirectPutPixelClip(x,y-1);
- DirectPutPixelClip(x,y);
- DirectPutPixelClip(x,y+1);
- end;
- end;
- if d < 0 then
- begin
- d := d + dinc1;
- x := x + xinc1;
- y := y + yinc1;
- end
- else
- begin
- d := d + dinc2;
- x := x + xinc2;
- y := y + yinc2;
- end;
- end;
- end
- else
- Begin
- { instead of putting in loop , substract by one now }
- TmpNumPixels := NumPixels-1;
- { NormWidth }
- for i := 0 to TmpNumPixels do
- begin
- if LinePatterns[i and 15] = TRUE then
- begin
- DirectPutPixel(x,y);
- end;
- if d < 0 then
- begin
- d := d + dinc1;
- x := x + xinc1;
- y := y + yinc1;
- end
- else
- begin
- d := d + dinc2;
- x := x + xinc2;
- y := y + yinc2;
- end;
- end;
- end
- end;
- {******************************************}
- { end patterned lines }
- {******************************************}
- { restore color }
- CurrentColor:=OldCurrentColor;
- end;
- end; { Line }
- {********************************************************}
- { Procedure DummyPatternLine() }
- {--------------------------------------------------------}
- { This is suimply an procedure that does nothing which }
- { can be passed as a patternlineproc for non-filled }
- { ellipses }
- {********************************************************}
- Procedure DummyPatternLine(x1, x2, y: integer); {$ifdef tp} far; {$endif tp}
- begin
- end;
- {********************************************************}
- { Procedure InternalEllipse() }
- {--------------------------------------------------------}
- { This routine first calculates all points required to }
- { draw a circle to the screen, and stores the points }
- { to display in a buffer before plotting them. The }
- { aspect ratio of the screen is taken into account when }
- { calculating the values. }
- {--------------------------------------------------------}
- { INPUTS: X,Y : Center coordinates of Ellipse. }
- { XRadius - X-Axis radius of ellipse. }
- { YRadius - Y-Axis radius of ellipse. }
- { stAngle, EndAngle: Start angle and end angles of the }
- { ellipse (used for partial ellipses and circles) }
- { pl: procedure which either draws a patternline (for }
- { FillEllipse) or does nothing (arc etc) }
- {--------------------------------------------------------}
- { NOTE: - }
- { - }
- {********************************************************}
- Procedure InternalEllipseDefault(X,Y: Integer;XRadius: word;
- YRadius:word; stAngle,EndAngle: word; pl: PatternLineProc); {$ifndef fpc}far;{$endif fpc}
- Const ConvFac = Pi/180.0;
- var
- j, Delta, DeltaEnd: graph_float;
- NumOfPixels: longint;
- TempTerm: graph_float;
- xtemp, ytemp, xp, yp, xm, ym, xnext, ynext,
- plxpyp, plxmyp, plxpym, plxmym: integer;
- BackupColor, DeltaAngle, TmpAngle, OldLineWidth: word;
- Begin
- If LineInfo.ThickNess = ThickWidth Then
- { first draw the two outer ellipses using normwidth and no filling (JM) }
- Begin
- OldLineWidth := LineInfo.Thickness;
- LineInfo.Thickness := NormWidth;
- InternalEllipseDefault(x,y,XRadius,YRadius,StAngle,EndAngle,
- {$ifdef fpc}@{$endif fpc}DummyPatternLine);
- InternalEllipseDefault(x,y,XRadius+1,YRadius+1,StAngle,EndAngle,
- {$ifdef fpc}@{$endif fpc}DummyPatternLine);
- If (XRadius <> 0) and (YRadius <> 0) Then
- { draw the smallest ellipse last, since that one will use the }
- { original pl, so it could possibly draw patternlines (JM) }
- Begin
- Dec(XRadius);
- Dec(YRadius);
- End
- Else Exit;
- { restore line thickness }
- LineInfo.Thickness := OldLineWidth;
- End;
- { check for an ellipse with negligable x and y radius }
- If (xradius <= 1) and (yradius <= 1) then
- begin
- putpixel(x,y,CurrentColor);
- ArcCall.X := X;
- ArcCall.Y := Y;
- ArcCall.XStart := X;
- ArcCall.YStart := Y;
- ArcCall.XEnd := X;
- ArcCall.YEnd := Y;
- exit;
- end;
- { for restoring after PatternLine }
- BackupColor := CurrentColor;
- If xradius = 0 then inc(xradius);
- if yradius = 0 then inc(yradius);
- { check if valid angles }
- stangle := stAngle mod 361;
- EndAngle := EndAngle mod 361;
- { if impossible angles then swap them! }
- if Endangle < StAngle then
- Begin
- TmpAngle:=EndAngle;
- EndAngle:=StAngle;
- Stangle:=TmpAngle;
- end;
- { calculate difference of angle now so we don't always have to calculate it }
- DeltaAngle:= EndAngle-StAngle;
- { approximate the number of pixels required by using the circumference }
- { equation of an ellipse. }
- { Changed this formula a it (trial and error), but the net result is that }
- { less pixels have to be calculated now }
- NumOfPixels:=Round(Sqrt(3)*sqrt(sqr(XRadius)+sqr(YRadius)));
- { Calculate the angle precision required }
- Delta := 90.0 / (NumOfPixels);
- { Adjust for screen aspect ratio }
- XRadius:=(longint(XRadius)*10000) div XAspect;
- YRadius:=(longint(YRadius)*10000) div YAspect;
- { removed from inner loop to make faster }
- { store some arccall info }
- ArcCall.X := X;
- ArcCall.Y := Y;
- TempTerm := (StAngle)*ConvFac;
- ArcCall.XStart := round(XRadius*Cos(TempTerm)) + X;
- ArcCall.YStart := round(YRadius*Sin(TempTerm+Pi)) + Y;
- TempTerm := (EndAngle)*ConvFac;
- ArcCall.XEnd := round(XRadius*Cos(TempTerm)) + X;
- ArcCall.YEnd := round(YRadius*Sin(TempTerm+Pi)) + Y;
- { Always just go over the first 90 degrees. Could be optimized a }
- { bit if StAngle and EndAngle lie in the same quadrant, left as an }
- { exercise for the reader :) (JM) }
- j := 0;
- { calculate stop position, go 1 further than 90 because otherwise }
- { 1 pixel is sometimes not drawn (JM) }
- DeltaEnd := 91;
- { Calculate points }
- xnext := XRadius;
- ynext := 0;
- Repeat
- xtemp := xnext;
- ytemp := ynext;
- { this is used by both sin and cos }
- TempTerm := (j+Delta)*ConvFac;
- { Calculate points }
- xnext := round(XRadius*Cos(TempTerm));
- ynext := round(YRadius*Sin(TempTerm+Pi));
- xp := x + xtemp;
- xm := x - xtemp;
- yp := y + ytemp;
- ym := y - ytemp;
- plxpyp := maxint;
- plxmyp := -maxint-1;
- plxpym := maxint;
- plxmym := -maxint-1;
- If (j >= StAngle) and (j <= EndAngle) then
- begin
- plxpyp := xp;
- PutPixel(xp,yp,CurrentColor);
- end;
- If ((180-j) >= StAngle) and ((180-j) <= EndAngle) then
- begin
- plxmyp := xm;
- PutPixel(xm,yp,CurrentColor);
- end;
- If ((j+180) >= StAngle) and ((j+180) <= EndAngle) then
- begin
- plxmym := xm;
- PutPixel(xm,ym,CurrentColor);
- end;
- If ((360-j) >= StAngle) and ((360-j) <= EndAngle) then
- begin
- plxpym := xp;
- PutPixel(xp,ym,CurrentColor);
- end;
- If (ynext <> ytemp) and
- (xp <> xm) then
- begin
- CurrentColor := FillSettings.Color;
- pl(plxmyp+1,plxpyp-1,yp);
- pl(plxmym+1,plxpym-1,ym);
- CurrentColor := BackupColor;
- end;
- j:=j+Delta;
- Until j > (DeltaEnd);
- end;
- {********************************************************}
- { Procedure InternalEllipse() }
- {--------------------------------------------------------}
- { This routine first calculates all points required to }
- { draw a circle to the screen, and stores the points }
- { to display in a buffer before plotting them. The }
- { aspect ratio of the screen is taken into account when }
- { calculating the values. }
- {--------------------------------------------------------}
- { INPUTS: X,Y : Center coordinates of Ellipse. }
- { XRadius - X-Axis radius of ellipse. }
- { YRadius - Y-Axis radius of ellipse. }
- { stAngle, EndAngle: Start angle and end angles of the }
- { ellipse (used for partial ellipses and circles) }
- {--------------------------------------------------------}
- { NOTE: - uses the current write mode. }
- { - Angles must both be between 0 and 360 }
- {********************************************************}
- (*
- Procedure InternalEllipseDefault (x, y : integer;
- xradius, yradius, stAngle, EndAngle : Word; pl: PatternLineProc); {$ifndef fpc} far; {$endif fpc}
- { Draw an ellipse arc. Crude but it works (anyone have a better one?) }
- Var
- aSqr, bSqr, twoaSqr, twobSqr, xa, ya, twoXbSqr, twoYaSqr, error : LongInt;
- Alpha, TempTerm : graph_float;
- BackupColor: Word;
- plxpyp, plxmyp, plxpym, plxmym: integer;
- const
- RadToDeg = 180/Pi;
- Procedure PlotPoints;
- var
- i,j: integer;
- xm, ym: integer;
- xp, yp: integer;
- Begin
- ym := y-ya;
- yp := y+ya;
- xm := x-xa;
- xp := x+xa;
- plxpyp := maxint;
- plxmyp := -maxint-1;
- plxpym := maxint;
- plxmym := -maxint-1;
- if LineInfo.Thickness = Normwidth then
- Begin
- If (Alpha+270>=StAngle) And (Alpha+270<=EndAngle) then
- Begin
- plxmym := xm;
- PutPixel (xm,ym, CurrentColor);
- End;
- If ((180+270)-Alpha>=StAngle) And ((180+270)-Alpha<=EndAngle) then
- Begin
- plxmyp := xm;
- PutPixel (xm,yp, CurrentColor);
- End;
- If ((180+270)+Alpha>=StAngle) And ((180+270)+Alpha<=EndAngle) then
- Begin
- plxpyp := xp;
- PutPixel (xp,yp, CurrentColor);
- End;
- If ((360+270)-Alpha>=StAngle) And ((360+270)-Alpha<=EndAngle) then
- Begin
- plxpym := xp;
- PutPixel (xp,ym, CurrentColor);
- End;
- end
- else
- Begin
- If (Alpha+270>=StAngle) And (Alpha+270<=EndAngle) then
- Begin
- plxmym := xm + 1;
- for i:=-1 to 1 do
- for j:=-1 to 1 do
- PutPixel (xm+i,ym+j, CurrentColor);
- End;
- If ((180+270)-Alpha>=StAngle) And ((180+270)-Alpha<=EndAngle) then
- Begin
- plxmyp := xm + 1;
- for i:=-1 to 1 do
- for j:=-1 to 1 do
- PutPixel (xm+i,yp+j, CurrentColor);
- End;
- If ((180+270)+Alpha>=StAngle) And ((180+270)+Alpha<=EndAngle) then
- Begin
- plxpyp := xp - 1;
- for i:=-1 to 1 do
- for j:=-1 to 1 do
- PutPixel (xp+i,yp+j, CurrentColor);
- End;
- If ((360+270)-Alpha>=StAngle) And ((360+270)-Alpha<=EndAngle) then
- Begin
- plxpym := xp - 1;
- for i:=-1 to 1 do
- for j:=-1 to 1 do
- PutPixel (xp+i,ym+j, CurrentColor);
- End;
- end;
- If (xp <> xm) then
- begin
- CurrentColor := FillSettings.Color;
- pl(plxmyp+1,plxpyp-1,yp);
- pl(plxmym+1,plxpym-1,ym);
- CurrentColor := BackupColor;
- end;
- End;
- Begin
- { check for an ellipse with negligable x and y radius }
- If (xradius <= 1) and (yradius <= 1) then
- begin
- putpixel(x,y,CurrentColor);
- ArcCall.X := X;
- ArcCall.Y := Y;
- ArcCall.XStart := X;
- ArcCall.YStart := Y;
- ArcCall.XEnd := X;
- ArcCall.YEnd := Y;
- exit;
- end;
- { for restoring after PatternLine }
- BackupColor := CurrentColor;
- If xradius = 0 then inc(xradius);
- if yradius = 0 then inc(yradius);
- { store arccall info }
- ArcCall.x := x;
- ArcCall.y := y;
- TempTerm := StAngle*RadToDeg;
- ArcCall.XStart := round(XRadius*Cos(TempTerm)) + X;
- ArcCall.YStart := round(YRadius*Sin(TempTerm+Pi)) + Y;
- TempTerm := EndAngle*RadToDeg;
- ArcCall.XEnd := round(XRadius*Cos(TempTerm)) + X;
- ArcCall.YEnd := round(YRadius*Sin(TempTerm+Pi)) + Y;
- StAngle:=StAngle MOD 361;
- EndAngle:=EndAngle MOD 361;
- StAngle := StAngle + 270;
- EndAngle := EndAngle + 270;
- If StAngle>EndAngle then
- Begin
- StAngle:=StAngle Xor EndAngle; EndAngle:=EndAngle Xor StAngle; StAngle:=EndAngle Xor StAngle;
- End;
- { Adjust for screen aspect ratio }
- XRadius:=(longint(XRadius)*10000) div XAspect;
- YRadius:=(longint(YRadius)*10000) div YAspect;
- aSqr:=LongInt (xradius)*LongInt (xradius);
- bSqr:=LongInt (yradius)*LongInt (yradius);
- twoaSqr:=2*aSqr;
- twobSqr:=2*bSqr;
- xa:=0;
- ya:=yradius;
- twoXbSqr:=0;
- twoYaSqr:=ya*twoaSqr;
- error:=-ya*aSqr;
- While twoXbSqr<=twoYaSqr Do Begin
- If ya=0 then Alpha:=90 Else Alpha:=RadToDeg*Arctan (xa/ya); { Crude but it works }
- PlotPoints;
- Inc (xa);
- Inc (twoXbSqr,twobSqr);
- Inc (error,twoXbSqr-bSqr);
- If error>=0 then Begin
- Dec (ya);
- Dec (twoYaSqr,twoaSqr);
- Dec (error,twoYaSqr);
- End;
- End;
- xa:=xradius;
- ya:=0;
- twoXbSqr:=xa*twobSqr;
- twoYaSqr:=0;
- error:=-xa*bSqr;
- While twoXbSqr>twoYaSqr Do Begin
- If ya=0 then Alpha:=90 Else Alpha:=RadToDeg*Arctan (xa/ya);
- PlotPoints;
- Inc (ya);
- Inc (twoYaSqr,twoaSqr);
- Inc (error,twoYaSqr-aSqr);
- If error>=0 then Begin
- Dec (xa);
- Dec (twoXbSqr,twobSqr);
- Dec (error,twoXbSqr);
- End;
- End;
- End;
- *)
- procedure PatternLineDefault(x1,x2,y: integer); {$ifndef fpc}far;{$endif fpc}
- {********************************************************}
- { Draws a horizontal patterned line according to the }
- { current Fill Settings. }
- {********************************************************}
- { Important notes: }
- { - CurrentColor must be set correctly before entering }
- { this routine. }
- {********************************************************}
- var
- NrIterations: Integer;
- i : Integer;
- j : Integer;
- TmpFillPattern : byte;
- OldWriteMode : word;
- OldCurrentColor : word;
- begin
- { convert to global coordinates ... }
- x1 := x1 + StartXViewPort;
- x2 := x2 + StartXViewPort;
- y := y + StartYViewPort;
- { if line was fully clipped then exit...}
- if LineClipped(x1,y,x2,y,StartXViewPort,StartYViewPort,
- StartXViewPort+ViewWidth, StartYViewPort+ViewHeight) then
- exit;
- OldWriteMode := CurrentWriteMode;
- CurrentWriteMode := NormalPut;
- { Get the current pattern }
- TmpFillPattern := FillPatternTable
- [FillSettings.Pattern][(y and $7)+1];
- Case TmpFillPattern Of
- 0:
- begin
- OldCurrentColor := CurrentColor;
- CurrentColor := CurrentBkColor;
- { hline converts the coordinates to global ones, but that has been done }
- { already here!!! Convert them back to local ones... (JM) }
- HLine(x1-StartXViewPort,x2-StartXViewPort,y-StartYViewPort);
- CurrentColor := OldCurrentColor;
- end;
- $ff:
- begin
- HLine(x1-StartXViewPort,x2-StartXViewPort,y-StartYViewPort);
- end;
- else
- begin
- { number of times to go throuh the 8x8 pattern }
- NrIterations := abs(x2 - x1+1) div 8;
- Inc(NrIterations);
- For i:= 0 to NrIterations do
- Begin
- for j:=0 to 7 do
- Begin
- { x1 mod 8 }
- if RevBitArray[x1 and 7] and TmpFillPattern <> 0 then
- DirectPutpixel(x1,y)
- else
- begin
- { According to the TP graph manual, we overwrite everything }
- { which is filled up - checked against VGA and CGA drivers }
- { of TP. }
- OldCurrentColor := CurrentColor;
- CurrentColor := CurrentBkColor;
- DirectPutPixel(x1,y);
- CurrentColor := OldCurrentColor;
- end;
- Inc(x1);
- if x1 > x2 then
- begin
- CurrentWriteMode := OldWriteMode;
- exit;
- end;
- end;
- end;
- end;
- End;
- CurrentWriteMode := OldWriteMode;
- end;
- procedure LineRel(Dx, Dy: Integer);
- Begin
- Line(CurrentX, CurrentY, CurrentX + Dx, CurrentY + Dy);
- CurrentX := CurrentX + Dx;
- CurrentY := CurrentY + Dy;
- end;
- procedure LineTo(x,y : Integer);
- Begin
- Line(CurrentX, CurrentY, X, Y);
- CurrentX := X;
- CurrentY := Y;
- end;
- procedure Rectangle(x1,y1,x2,y2:integer);
- begin
- { Do not draw the end points }
- Line(x1,y1,x2-1,y1);
- Line(x1,y1+1,x1,y2);
- Line(x2,y1,x2,y2-1);
- Line(x1+1,y2,x2,y2);
- end;
- procedure GetLineSettings(var ActiveLineInfo : LineSettingsType);
- begin
- Activelineinfo:=Lineinfo;
- end;
- procedure SetLineStyle(LineStyle: word; Pattern: word; Thickness: word);
- var
- i: byte;
- j: byte;
- Begin
- if (LineStyle > UserBitLn) or ((Thickness <> Normwidth) and (Thickness <> ThickWidth)) then
- _GraphResult := grError
- else
- begin
- LineInfo.Thickness := Thickness;
- LineInfo.LineStyle := LineStyle;
- case LineStyle of
- UserBitLn: Lineinfo.Pattern := pattern;
- SolidLn: Lineinfo.Pattern := $ffff; { ------- }
- DashedLn : Lineinfo.Pattern := $F8F8; { -- -- --}
- DottedLn: LineInfo.Pattern := $CCCC; { - - - - }
- CenterLn: LineInfo.Pattern := $FC78; { -- - -- }
- end; { end case }
- { setup pattern styles }
- j:=16;
- for i:=0 to 15 do
- Begin
- dec(j);
- { bitwise mask for each bit in the word }
- if (word($01 shl i) AND LineInfo.Pattern) <> 0 then
- LinePatterns[j]:=TRUE
- else
- LinePatterns[j]:=FALSE;
- end;
- end;
- end;
- {--------------------------------------------------------------------------}
- { }
- { VIEWPORT RELATED ROUTINES }
- { }
- {--------------------------------------------------------------------------}
- Procedure ClearViewPortDefault; {$ifndef fpc}far;{$endif fpc}
- var
- j: integer;
- OldWriteMode, OldCurColor: word;
- LineSets : LineSettingsType;
- Begin
- { CP is always RELATIVE coordinates }
- CurrentX := 0;
- CurrentY := 0;
- { Save all old settings }
- OldCurColor := CurrentColor;
- CurrentColor:=CurrentBkColor;
- OldWriteMode:=CurrentWriteMode;
- GetLineSettings(LineSets);
- { reset to normal line style...}
- SetLineStyle(SolidLn, 0, NormWidth);
- { routines are relative here...}
- for J:=0 to ViewHeight do
- HLine(0, ViewWidth, J);
- { restore old settings...}
- SetLineStyle(LineSets.LineStyle, LineSets.Pattern, LineSets.Thickness);
- CurrentColor := OldCurColor;
- CurrentWriteMode := OldWriteMode;
- end;
- Procedure SetViewPort(X1, Y1, X2, Y2: Integer; Clip: Boolean);
- Begin
- if (X1 > GetMaxX) or (X2 > GetMaxX) or (X1 > X2) or (X1 < 0) then
- Begin
- _GraphResult := grError;
- exit;
- end;
- if (Y1 > GetMaxY) or (Y2 > GetMaxY) or (Y1 > Y2) or (Y1 < 0) then
- Begin
- _GraphResult := grError;
- exit;
- end;
- { CP is always RELATIVE coordinates }
- CurrentX := 0;
- CurrentY := 0;
- StartXViewPort := X1;
- StartYViewPort := Y1;
- ViewWidth := X2-X1;
- ViewHeight:= Y2-Y1;
- ClipPixels := Clip;
- end;
- procedure GetViewSettings(var viewport : ViewPortType);
- begin
- ViewPort.X1 := StartXViewPort;
- ViewPort.Y1 := StartYViewPort;
- ViewPort.X2 := ViewWidth + StartXViewPort;
- ViewPort.Y2 := ViewHeight + StartYViewPort;
- ViewPort.Clip := ClipPixels;
- end;
- procedure ClearDevice;
- var
- ViewPort: ViewPortType;
- begin
- { Reset the CP }
- CurrentX := 0;
- CurrentY := 0;
- { save viewport }
- ViewPort.X1 := StartXviewPort;
- ViewPort.X2 := ViewWidth - StartXViewPort;
- ViewPort.Y1 := StartYViewPort;
- ViewPort.Y2 := ViewHeight - StartYViewPort;
- ViewPort.Clip := ClipPixels;
- { put viewport to full screen }
- StartXViewPort := 0;
- ViewHeight := MaxY;
- StartYViewPort := 0;
- ViewWidth := MaxX;
- ClipPixels := TRUE;
- ClearViewPort;
- { restore old viewport }
- StartXViewPort := ViewPort.X1;
- ViewWidth := ViewPort.X2-ViewPort.X1;
- StartYViewPort := ViewPort.Y1;
- ViewHeight := ViewPort.Y2-ViewPort.Y1;
- ClipPixels := ViewPort.Clip;
- end;
- {--------------------------------------------------------------------------}
- { }
- { BITMAP PUT/GET ROUTINES }
- { }
- {--------------------------------------------------------------------------}
- Procedure GetScanlineDefault (Y : Integer; Var Data); {$ifndef fpc}far;{$endif fpc}
- {**********************************************************}
- { Procedure GetScanLine() }
- {----------------------------------------------------------}
- { Returns the full scanline of the video line of the Y }
- { coordinate. The values are returned in a WORD array }
- { each WORD representing a pixel of the specified scanline }
- { note: we only need the pixels inside the ViewPort! (JM) }
- {**********************************************************}
- Var
- x : Integer;
- Begin
- For x:=0 to ViewWidth Do
- WordArray(Data)[x]:=GetPixel(x, y);
- End;
- Function DefaultImageSize(X1,Y1,X2,Y2: Integer): longint; {$ifndef fpc}far;{$endif fpc}
- Begin
- { each pixel uses two bytes, to enable modes with colors up to 64K }
- { to work. }
- DefaultImageSize := 12 + (((X2-X1+1)*(Y2-Y1+1))*2);
- end;
- Procedure DefaultPutImage(X,Y: Integer; var Bitmap; BitBlt: Word); {$ifndef fpc}far;{$endif fpc}
- type
- pt = array[0..32000] of word;
- ptw = array[0..3] of longint;
- var
- color: word;
- i,j: Integer;
- Y1,X1: Integer;
- k: integer;
- Begin
- X1:= ptw(Bitmap)[0]+X; { get width and adjust end coordinate accordingly }
- Y1:= ptw(Bitmap)[1]+Y; { get height and adjust end coordinate accordingly }
- k:= 12; { Three reserved longs at start of bitmap }
- for j:=Y to Y1 do
- Begin
- for i:=X to X1 do
- begin
- case BitBlt of
- {$R-}
- CopyPut: color:= pt(Bitmap)[k]; { also = normalput }
- XORPut: color:= pt(Bitmap)[k] XOR GetPixel(i,j);
- OrPut: color:= pt(Bitmap)[k] OR GetPixel(i,j);
- AndPut: color:= pt(Bitmap)[k] AND GetPixel(i,j);
- NotPut: color:= not pt(Bitmap)[k];
- {$ifdef debug}
- {$R+}
- {$endif debug}
- end;
- putpixel(i,j,color);
- Inc(k);
- end;
- end;
- end;
- Procedure DefaultGetImage(X1,Y1,X2,Y2: Integer; Var Bitmap); {$ifndef fpc}far;{$endif fpc}
- type
- pt = array[0..32000] of word;
- ptw = array[0..3] of longint;
- var
- i,j: integer;
- k: longint;
- Begin
- k:= 12; { Three reserved longs at start of bitmap }
- for j:=Y1 to Y2 do
- Begin
- for i:=X1 to X2 do
- begin
- {$R-}
- pt(Bitmap)[k] :=getpixel(i,j);
- {$ifdef debug}
- {$R+}
- {$endif debug}
- Inc(k);
- end;
- end;
- ptw(Bitmap)[0] := X2-X1; { First longint is width }
- ptw(Bitmap)[1] := Y2-Y1; { Second longint is height }
- ptw(bitmap)[2] := 0; { Third longint is reserved}
- end;
- Procedure GetArcCoords(var ArcCoords: ArcCoordsType);
- Begin
- ArcCoords.X := ArcCall.X;
- ArcCoords.Y := ArcCall.Y;
- ArcCoords.XStart := ArcCall.XStart;
- ArcCoords.YStart := ArcCall.YStart;
- ArcCoords.XEnd := ArcCall.XEnd;
- ArcCoords.YEnd := ArcCall.YEnd;
- end;
- procedure SetVisualPageDefault(page : word); {$ifndef fpc}far;{$endif fpc}
- begin
- end;
- procedure SetActivePageDefault(page : word); {$ifndef fpc}far;{$endif fpc}
- begin
- end;
- Procedure DefaultHooks;
- {********************************************************}
- { Procedure DefaultHooks() }
- {--------------------------------------------------------}
- { Resets all hookable routine either to nil for those }
- { which need overrides, and others to defaults. }
- { This is called each time SetGraphMode() is called. }
- {********************************************************}
- Begin
- { All default hooks procedures }
- { required...}
- DirectPutPixel := nil;
- PutPixel := nil;
- GetPixel := nil;
- SetRGBPalette := nil;
- GetRGBPalette := nil;
- { optional...}
- {$ifdef fpc}
- SetActivePage := @SetActivePageDefault;
- SetVisualPage := @SetVisualPageDefault;
- ClearViewPort := @ClearViewportDefault;
- PutImage := @DefaultPutImage;
- GetImage := @DefaultGetImage;
- ImageSize := @DefaultImageSize;
- {$else fpc}
- SetActivePage := SetActivePageDefault;
- SetVisualPage := SetVisualPageDefault;
- ClearViewPort := ClearViewportDefault;
- PutImage := DefaultPutImage;
- GetImage := DefaultGetImage;
- ImageSize := DefaultImageSize;
- {$endif fpc}
- GraphFreeMemPtr := nil;
- GraphGetMemPtr := nil;
- {$ifdef fpc}
- GetScanLine := @GetScanLineDefault;
- Line := @LineDefault;
- InternalEllipse := @InternalEllipseDefault;
- PatternLine := @PatternLineDefault;
- HLine := @HLineDefault;
- VLine := @VLineDefault;
- {$else fpc}
- GetScanLine := GetScanLineDefault;
- Line := LineDefault;
- InternalEllipse := InternalEllipseDefault;
- PatternLine := PatternLineDefault;
- HLine := HLineDefault;
- VLine := VLineDefault;
- {$endif fpc}
- end;
- Procedure InitVars;
- {********************************************************}
- { Procedure InitVars() }
- {--------------------------------------------------------}
- { Resets all internal variables, and resets all }
- { overridable routines. }
- {********************************************************}
- Begin
- DirectVideo := TRUE; { By default use fastest access possible }
- ArcCall.X := 0;
- ArcCall.Y := 0;
- ArcCall.XStart := 0;
- ArcCall.YStart := 0;
- ArcCall.XEnd := 0;
- ArcCall.YEnd := 0;
- { Reset to default values }
- IntCurrentMode := 0;
- IntCurrentDriver := 0;
- XAspect := 0;
- YAspect := 0;
- MaxX := 0;
- MaxY := 0;
- MaxColor := 0;
- PaletteSize := 0;
- DirectColor := FALSE;
- HardwarePages := 0;
- DefaultHooks;
- end;
- {$i modes.inc}
- {$i palette.inc}
- {$i graph.inc}
- function InstallUserDriver(Name: string; AutoDetectPtr: Pointer): integer;
- begin
- _graphResult := grError;
- InstallUserDriver:=grError;
- end;
- function RegisterBGIDriver(driver: pointer): integer;
- begin
- _graphResult := grError;
- RegisterBGIDriver:=grError;
- end;
- { ----------------------------------------------------------------- }
- Procedure Arc(X,Y : Integer; StAngle,EndAngle,Radius: word);
- { var
- OldWriteMode: word;}
- Begin
- { Only if we are using thickwidths lines do we accept }
- { XORput write modes. }
- { OldWriteMode := CurrentWriteMode;
- if (LineInfo.Thickness = NormWidth) then
- CurrentWriteMode := NormalPut;}
- {$ifdef fpc}
- InternalEllipse(X,Y,Radius,Radius,StAngle,Endangle,@DummyPatternLine);
- {$else fpc}
- InternalEllipse(X,Y,Radius,Radius,StAngle,Endangle,DummyPatternLine);
- {$endif fpc}
- { CurrentWriteMode := OldWriteMode;}
- end;
- procedure Ellipse(X,Y : Integer; stAngle, EndAngle: word; XRadius,YRadius: word);
- Begin
- {$ifdef fpc}
- InternalEllipse(X,Y,XRadius,YRadius,StAngle,Endangle,@DummyPatternLine);
- {$else fpc}
- InternalEllipse(X,Y,XRadius,YRadius,StAngle,Endangle,DummyPatternLine);
- {$endif fpc}
- end;
- procedure FillEllipse(X, Y: Integer; XRadius, YRadius: Word);
- {********************************************************}
- { Procedure FillEllipse() }
- {--------------------------------------------------------}
- { Draws a filled ellipse using (X,Y) as a center point }
- { and XRadius and YRadius as the horizontal and vertical }
- { axes. The ellipse is filled with the current fill color}
- { and fill style, and is bordered with the current color.}
- {********************************************************}
- begin
- InternalEllipse(X,Y,XRadius,YRadius,0,360,PatternLine)
- end;
- procedure Circle(X, Y: Integer; Radius:Word);
- {********************************************************}
- { Draws a circle centered at X,Y with the given Radius. }
- {********************************************************}
- { Important notes: }
- { - Thickwidth circles use the current write mode, while}
- { normal width circles ALWAYS use CopyPut/NormalPut }
- { mode. (Tested against VGA BGI driver -CEC 13/Aug/99 }
- {********************************************************}
- var OriginalArcInfo: ArcCoordsType;
- OldWriteMode: word;
- begin
- if (Radius = 0) then
- Exit;
- if (Radius = 1) then
- begin
- { only normal put mode is supported by a call to PutPixel }
- PutPixel(X, Y, CurrentColor);
- Exit;
- end;
- { save state of arc information }
- { because it is not needed for }
- { a circle call. }
- move(ArcCall,OriginalArcInfo, sizeof(ArcCall));
- if LineInfo.Thickness = Normwidth then
- begin
- OldWriteMode := CurrentWriteMode;
- CurrentWriteMode := CopyPut;
- end;
- {$ifdef fpc}
- InternalEllipse(X,Y,Radius,Radius,0,360,@DummyPatternLine);
- {$else fpc}
- InternalEllipse(X,Y,Radius,Radius,0,360,DummyPatternLine);
- {$endif fpc}
- if LineInfo.Thickness = Normwidth then
- CurrentWriteMode := OldWriteMode;
- { restore arc information }
- move(OriginalArcInfo, ArcCall,sizeof(ArcCall));
- end;
- procedure SectorPL(x1,x2,y: Integer); {$ifndef fpc}far;{$endif fpc}
- var plx1, plx2: integer;
- {$ifdef sectorpldebug}
- t : text;
- {$endif sectorpldebug}
- begin
- {$ifdef sectorpldebug}
- assign(t,'sector.log');
- append(t);
- writeln(t,'Got here for line ',y);
- close(t);
- {$endif sectorpldebug}
- If (x1 = -maxint) Then
- If (x2 = maxint-1) Then
- { no ellipse points drawn on this line }
- If (((Y < ArcCall.Y) and (Y > ArcCall.YStart)) or
- ((Y > ArcCall.Y) and (Y < ArcCall.YStart))) Then
- { there is a part of the sector at this y coordinate, but no }
- { ellips points are plotted on this line, so draw a patternline }
- { between the lines connecting (arccall.x,arccall.y) with }
- { the start and the end of the arc (JM) }
- { use: y-y1=(y2-y1)/(x2-x1)*(x-x1) => }
- { x = (y-y1)/(y2-y1)*(x2-x1)+x1 }
- Begin
- {$ifdef sectorpldebug}
- If (ArcCall.YStart-ArcCall.Y) = 0 then
- begin
- append(t);
- writeln(t,'bug1');
- close(t);
- runerror(202);
- end;
- {$endif sectorpldebug}
- plx1 := (y-ArcCall.Y)*(ArcCall.XStart-ArcCall.X)
- div (ArcCall.YStart-ArcCall.Y)+ArcCall.X;
- {$ifdef sectorpldebug}
- If (ArcCall.YEnd-ArcCall.Y) = 0 then
- begin
- append(t);
- writeln(t,'bug2');
- close(t);
- runerror(202);
- end;
- {$endif sectorpldebug}
- plx2 := (y-ArcCall.Y)*(ArcCall.XEnd-ArcCall.X)
- div (ArcCall.YEnd-ArcCall.Y)+ArcCall.X;
- If plx1 > plx2 then
- begin
- plx1 := plx1 xor plx2;
- plx2 := plx1 xor plx2;
- plx1 := plx1 xor plx2;
- end;
- {$ifdef sectorpldebug}
- append(t);
- writeln(t,'lines: ',plx1,' - ',plx2);
- close(t);
- {$endif sectorpldebug}
- End
- { otherwise two points which have nothing to do with the sector }
- Else exit
- Else
- { the arc is plotted at the right side, but not at the left side, }
- { fill till the line between (ArcCall.X,ArcCall.Y) and }
- { (ArcCall.XStart,ArcCall.YStart) }
- Begin
- If (y < ArcCall.Y) then
- begin
- {$ifdef sectorpldebug}
- If (ArcCall.YEnd-ArcCall.Y) = 0 then
- begin
- append(t);
- writeln(t,'bug3');
- close(t);
- runerror(202);
- end;
- {$endif sectorpldebug}
- plx1 := (y-ArcCall.Y)*(ArcCall.XEnd-ArcCall.X)
- div (ArcCall.YEnd-ArcCall.Y)+ArcCall.X
- end
- else if (y > ArcCall.Y) then
- begin
- {$ifdef sectorpldebug}
- If (ArcCall.YStart-ArcCall.Y) = 0 then
- begin
- append(t);
- writeln(t,'bug4');
- close(t);
- runerror(202);
- end;
- {$endif sectorpldebug}
- plx1 := (y-ArcCall.Y)*(ArcCall.XStart-ArcCall.X)
- div (ArcCall.YStart-ArcCall.Y)+ArcCall.X
- end
- else plx1 := ArcCall.X;
- plx2 := x2;
- {$ifdef sectorpldebug}
- append(t);
- writeln(t,'right: ',plx1,' - ',plx2);
- close(t);
- {$endif sectorpldebug}
- End
- Else
- If (x2 = maxint-1) Then
- { the arc is plotted at the left side, but not at the rigth side. }
- { the right limit can be either the first or second line. Just take }
- { the closest one, but watch out for division by zero! }
- Begin
- If (y < ArcCall.Y) then
- begin
- {$ifdef sectorpldebug}
- If (ArcCall.YStart-ArcCall.Y) = 0 then
- begin
- append(t);
- writeln(t,'bug5');
- close(t);
- runerror(202);
- end;
- {$endif sectorpldebug}
- plx2 := (y-ArcCall.Y)*(ArcCall.XStart-ArcCall.X)
- div (ArcCall.YStart-ArcCall.Y)+ArcCall.X
- end
- else if (y > ArcCall.Y) then
- begin
- {$ifdef sectorpldebug}
- If (ArcCall.YEnd-ArcCall.Y) = 0 then
- begin
- append(t);
- writeln(t,'bug6');
- close(t);
- runerror(202);
- end;
- {$endif sectorpldebug}
- plx2 := (y-ArcCall.Y)*(ArcCall.XEnd-ArcCall.X)
- div (ArcCall.YEnd-ArcCall.Y)+ArcCall.X
- end
- else plx2 := ArcCall.X;
- plx1 := x1;
- {$ifdef sectorpldebug}
- append(t);
- writeln(t,'left: ',plx1,' - ',plx2);
- close(t);
- {$endif sectorpldebug}
- End
- Else
- { the arc is plotted at both sides }
- Begin
- plx1 := x1;
- plx2 := x2;
- {$ifdef sectorpldebug}
- append(t);
- writeln(t,'normal: ',plx1,' - ',plx2);
- close(t);
- {$endif sectorpldebug}
- End;
- If plx2 > plx1 then
- Begin
- {$ifdef sectorpldebug}
- append(t);
- Writeln(t,'drawing...');
- close(t);
- {$endif sectorpldebug}
- PatternLine(plx1,plx2,y);
- end;
- end;
- procedure Sector(x, y: Integer; StAngle,EndAngle, XRadius, YRadius: Word);
- (* var angle : graph_float;
- writemode : word; *)
- begin
- {$ifdef fpc}
- internalellipse(x,y,XRadius, YRadius, StAngle, EndAngle, @SectorPL);
- {$else fpc}
- internalellipse(x,y,XRadius, YRadius, StAngle, EndAngle, SectorPL);
- {$endif fpc}
- Line(ArcCall.XStart, ArcCall.YStart, x,y);
- Line(x,y,ArcCall.Xend,ArcCall.YEnd);
- end;
- procedure SetFillStyle(Pattern : word; Color: word);
- begin
- { on invalid input, the current fill setting will be }
- { unchanged. }
- if (Pattern > UserFill) or (Color > GetMaxColor) then
- begin
- _GraphResult := grError;
- exit;
- end;
- FillSettings.Color := Color;
- FillSettings.Pattern := Pattern;
- end;
- procedure SetFillPattern(Pattern: FillPatternType; Color: word);
- {********************************************************}
- { Changes the Current FillPattern to a user defined }
- { pattern and changes also the current fill color. }
- { The FillPattern is saved in the FillPattern array so }
- { it can still be used with SetFillStyle(UserFill,Color) }
- {********************************************************}
- var
- i: integer;
- begin
- if Color > GetMaxColor then
- begin
- _GraphResult := grError;
- exit;
- end;
- FillSettings.Color := Color;
- FillSettings.Pattern := UserFill;
- { Save the pattern in the buffer }
- For i:=1 to 8 do
- FillPatternTable[UserFill][i] := Pattern[i];
- end;
- procedure Bar(x1,y1,x2,y2:integer);
- {********************************************************}
- { Important notes for compatibility with BP: }
- { - WriteMode is always CopyPut }
- { - No contour is drawn for the lines }
- {********************************************************}
- var y : Integer;
- origcolor : longint;
- origlinesettings: Linesettingstype;
- origwritemode : Integer;
- begin
- origlinesettings:=lineinfo;
- origcolor:=CurrentColor;
- if y1>y2 then
- begin
- y:=y1;
- y1:=y2;
- y2:=y;
- end;
- { Always copy mode for Bars }
- origwritemode := CurrentWriteMode;
- CurrentWriteMode := CopyPut;
- { All lines used are of this style }
- Lineinfo.linestyle:=solidln;
- Lineinfo.thickness:=normwidth;
- case Fillsettings.pattern of
- EmptyFill :
- begin
- Currentcolor:=CurrentBkColor;
- for y:=y1 to y2 do
- Hline(x1,x2,y);
- end;
- SolidFill :
- begin
- CurrentColor:=FillSettings.color;
- for y:=y1 to y2 do
- Hline(x1,x2,y);
- end;
- else
- Begin
- CurrentColor:=FillSettings.color;
- for y:=y1 to y2 do
- patternline(x1,x2,y);
- end;
- end;
- CurrentColor:= Origcolor;
- LineInfo := OrigLineSettings;
- CurrentWriteMode := OrigWritemode;
- end;
- procedure bar3D(x1, y1, x2, y2 : integer;depth : word;top : boolean);
- var
- origwritemode : integer;
- OldX, OldY : integer;
- begin
- origwritemode := CurrentWriteMode;
- CurrentWriteMode := CopyPut;
- Bar(x1,y1,x2,y2);
- Rectangle(x1,y1,x2,y2);
- { Current CP should not be updated in Bar3D }
- { therefore save it and then restore it on }
- { exit. }
- OldX := CurrentX;
- OldY := CurrentY;
- if top then begin
- Moveto(x1,y1);
- Lineto(x1+depth,y1-depth);
- Lineto(x2+depth,y1-depth);
- Lineto(x2,y1);
- end;
- if Depth <> 0 then
- Begin
- Moveto(x2+depth,y1-depth);
- Lineto(x2+depth,y2-depth);
- Lineto(x2,y2);
- end;
- { restore CP }
- CurrentX := OldX;
- CurrentY := OldY;
- CurrentWriteMode := origwritemode;
- end;
- {--------------------------------------------------------------------------}
- { }
- { COLOR AND PALETTE ROUTINES }
- { }
- {--------------------------------------------------------------------------}
- procedure SetColor(Color: Word);
- Begin
- CurrentColor := Color;
- end;
- function GetColor: Word;
- Begin
- GetColor := CurrentColor;
- end;
- function GetBkColor: Word;
- Begin
- GetBkColor := CurrentBkColor;
- end;
- procedure SetBkColor(ColorNum: Word);
- { Background color means background screen color in this case, and it is }
- { INDEPENDANT of the viewport settings, so we must clear the whole screen }
- { with the color. }
- var
- ViewPort: ViewportType;
- Begin
- GetViewSettings(Viewport);
- SetViewPort(0,0,MaxX,MaxY,FALSE);
- CurrentBkColor := ColorNum;
- ClearViewPort;
- SetViewport(ViewPort.X1,Viewport.Y1,Viewport.X2,Viewport.Y2,Viewport.Clip);
- end;
- function GetMaxColor: word;
- { Checked against TP VGA driver - CEC }
- begin
- GetMaxColor:=MaxColor-1; { based on an index of zero so subtract one }
- end;
- Procedure MoveRel(Dx, Dy: Integer);
- Begin
- CurrentX := CurrentX + Dx;
- CurrentY := CurrentY + Dy;
- end;
- Procedure MoveTo(X,Y: Integer);
- {********************************************************}
- { Procedure MoveTo() }
- {--------------------------------------------------------}
- { Moves the current pointer in VIEWPORT relative }
- { coordinates to the specified X,Y coordinate. }
- {********************************************************}
- Begin
- CurrentX := X;
- CurrentY := Y;
- end;
- function GraphErrorMsg(ErrorCode: Integer): string;
- Begin
- GraphErrorMsg:='';
- case ErrorCode of
- grOk,grFileNotFound,grInvalidDriver: exit;
- grNoInitGraph: GraphErrorMsg:='Graphics driver not installed';
- grNotDetected: GraphErrorMsg:='Graphics hardware not detected';
- grNoLoadMem,grNoScanMem,grNoFloodMem: GraphErrorMsg := 'Not enough memory for graphics';
- grNoFontMem: GraphErrorMsg := 'Not enough memory to load font';
- grFontNotFound: GraphErrorMsg:= 'Font file not found';
- grInvalidMode: GraphErrorMsg := 'Invalid graphics mode';
- grError: GraphErrorMsg:='Graphics error';
- grIoError: GraphErrorMsg:='Graphics I/O error';
- grInvalidFont,grInvalidFontNum: GraphErrorMsg := 'Invalid font';
- grInvalidVersion: GraphErrorMsg:='Invalid driver version';
- end;
- end;
- Function GetMaxX: Integer;
- { Routine checked against VGA driver - CEC }
- Begin
- GetMaxX := MaxX;
- end;
- Function GetMaxY: Integer;
- { Routine checked against VGA driver - CEC }
- Begin
- GetMaxY := MaxY;
- end;
- Function GraphResult: Integer;
- Begin
- GraphResult := _GraphResult;
- _GraphResult := grOk;
- end;
- Function GetX: Integer;
- Begin
- GetX := CurrentX;
- end;
- Function GetY: Integer;
- Begin
- GetY := CurrentY;
- end;
- Function GetDriverName: string;
- begin
- GetDriverName:=DriverName;
- end;
- procedure graphdefaults;
- { PS: GraphDefaults does not ZERO the ArcCall structure }
- { so a call to GetArcCoords will not change even the }
- { returned values even if GraphDefaults is called in }
- { between. }
- var
- i: integer;
- begin
- lineinfo.linestyle:=solidln;
- lineinfo.thickness:=normwidth;
- { reset line style pattern }
- for i:=0 to 15 do
- LinePatterns[i] := TRUE;
- { By default, according to the TP prog's reference }
- { the default pattern is solid, and the default }
- { color is the maximum color in the palette. }
- fillsettings.color:=GetMaxColor;
- fillsettings.pattern:=solidfill;
- { GraphDefaults resets the User Fill pattern to $ff }
- { checked with VGA BGI driver - CEC }
- for i:=1 to 8 do
- FillPatternTable[UserFill][i] := $ff;
- CurrentColor:=white;
- SetBkColor(Black);
- ClipPixels := TRUE;
- { Reset the viewport }
- StartXViewPort := 0;
- StartYViewPort := 0;
- ViewWidth := MaxX;
- ViewHeight := MaxY;
- { Reset CP }
- CurrentX := 0;
- CurrentY := 0;
- { normal write mode }
- CurrentWriteMode := CopyPut;
- { Schriftart einstellen }
- CurrentTextInfo.font := DefaultFont;
- CurrentTextInfo.direction:=HorizDir;
- CurrentTextInfo.charsize:=1;
- CurrentTextInfo.horiz:=LeftText;
- CurrentTextInfo.vert:=TopText;
- XAspect:=10000; YAspect:=10000;
- end;
- procedure GetAspectRatio(var Xasp,Yasp : word);
- begin
- XAsp:=XAspect;
- YAsp:=YAspect;
- end;
- procedure SetAspectRatio(Xasp, Yasp : word);
- begin
- Xaspect:= XAsp;
- YAspect:= YAsp;
- end;
- procedure SetWriteMode(WriteMode : integer);
- { TP sets the writemodes according to the following scheme (JM) }
- begin
- Case writemode of
- xorput, andput: CurrentWriteMode := XorPut;
- notput, orput, copyput: CurrentWriteMode := CopyPut;
- End;
- end;
- procedure GetFillSettings(var Fillinfo:Fillsettingstype);
- begin
- Fillinfo:=Fillsettings;
- end;
- procedure GetFillPattern(var FillPattern:FillPatternType);
- begin
- FillPattern:=FillpatternTable[UserFill];
- end;
- procedure DrawPoly(numpoints : word;var polypoints);
- type
- ppointtype = ^pointtype;
- pt = array[0..16000] of pointtype;
- var
- i : longint;
- begin
- if numpoints < 2 then
- begin
- _GraphResult := grError;
- exit;
- end;
- for i:=0 to numpoints-2 do
- line(pt(polypoints)[i].x,
- pt(polypoints)[i].y,
- pt(polypoints)[i+1].x,
- pt(polypoints)[i+1].y);
- end;
- procedure PieSlice(X,Y,stangle,endAngle:integer;Radius: Word);
- begin
- Sector(x,y,stangle,endangle,radius,radius);
- end;
- {$i fills.inc}
- {$i gtext.inc}
- procedure DetectGraph(var GraphDriver:Integer;var GraphMode:Integer);
- var LoMode, HiMode: Integer;
- CpyMode: Integer;
- CpyDriver: Integer;
- begin
- HiMode := -1;
- LoMode := -1;
- { We start at VGA }
- GraphDriver := VGA;
- CpyMode := 0;
- { search all possible graphic drivers in ascending order...}
- { usually the new driver numbers indicate newest hardware...}
- { Internal driver numbers start at VGA=9 }
- repeat
- GetModeRange(GraphDriver,LoMode,HiMode);
- { save the highest mode possible...}
- if HiMode = -1 then break;
- CpyMode:=HiMode;
- CpyDriver:=GraphDriver;
- { go to next driver if it exists...}
- Inc(GraphDriver);
- until (CpyMode=-1);
- { If this is equal to -1 then no graph mode possible...}
- if CpyMode = -1 then
- begin
- _GraphResult := grNotDetected;
- exit;
- end;
- GraphDriver := CpyDriver;
- GraphMode := CpyMode;
- end;
- procedure InitGraph(var GraphDriver:Integer;var GraphMode:Integer;
- const PathToDriver:String);
- begin
- { path to the fonts (where they will be searched)...}
- bgipath:=PathToDriver;
- if bgipath[length(bgipath)]<>'\' then
- bgipath:=bgipath+'\';
- if not assigned(SaveVideoState) then
- RunError(216);
- {$ifdef logging}
- LogLn('Calling SaveVideoState at '+strf(longint(savevideostate)));
- {$endif logging}
- SaveVideoState;
- InitVars;
- DriverName:=InternalDriverName; { DOS Graphics driver }
- if (Graphdriver=Detect) then
- begin
- DetectGraph(GraphDriver,GraphMode);
- If _GraphResult = grNotDetected then Exit;
- IntCurrentDriver := GraphDriver;
- { Actually set the graph mode...}
- SetGraphMode(GraphMode);
- end
- else
- begin
- { Search if that graphics modec actually exists...}
- if SearchMode(GraphDriver,GraphMode) = nil then
- begin
- _GraphResult := grInvalidMode;
- exit;
- end
- else
- begin
- IntCurrentDriver := GraphDriver;
- SetGraphMode(GraphMode);
- end;
- end;
- end;
- procedure SetDirectVideo(DirectAccess: boolean);
- begin
- DirectVideo := DirectAccess;
- end;
- function GetDirectVideo: boolean;
- begin
- GetDirectVideo := DirectVideo;
- end;
- procedure GraphExitProc; {$ifndef fpc} far; {$endif fpc}
- { deallocates all memory allocated by the graph unit }
- var
- list: PModeInfo;
- tmp : PModeInfo;
- c: graph_int;
- begin
- { restore old exitproc! }
- exitproc := exitsave;
- {$ifdef testsave}
- restorevideostate;
- {$endif testsave}
- { release memory allocated for fonts }
- for c := 1 to installedfonts do
- with fonts[c] Do
- If assigned(instr) Then
- Freemem(instr,instrlength);
- { release memory allocated for modelist }
- list := ModeList;
- while assigned(list) do
- begin
- tmp := list;
- list:=list^.next;
- dispose(tmp);
- end;
- {$IFDEF DPMI}
- { We had copied the buffer of mode information }
- { and allocated it dynamically... now free it }
- { Warning: if GetVESAInfo returned false, this buffer is not allocated! (JM)}
- If hasVesa then
- Dispose(VESAInfo.ModeList);
- {$ENDIF}
- end;
- begin
- {$ifdef logging}
- assign(debuglog,'grlog.txt');
- rewrite(debuglog);
- close(debuglog);
- {$endif logging}
- isgraphmode := false;
- ModeList := nil;
- SaveVideoState := nil;
- RestoreVideoState := nil;
- SavePtr := Nil;
- {$ifdef oldfont}
- {$ifdef go32v2}
- LoadFont8x8;
- {$endif go32v2}
- {$endif oldfont}
- { This must be called at startup... because GetGraphMode may }
- { be called even when not in graph mode. }
- {$ifdef logging}
- LogLn('Calling QueryAdapterInfo...');
- {$endif logging}
- QueryAdapterInfo;
- { Install standard fonts }
- { This is done BEFORE startup... }
- InstalledFonts := 0;
- InstallUserFont('TRIP');
- InstallUserFont('LITT');
- InstallUserFont('SANS');
- InstallUserFont('GOTH');
- { This installs an exit procedure which cleans up the mode list...}
- ExitSave := ExitProc;
- ExitProc := @GraphExitProc;
- {$ifdef testsave}
- savevideostate;
- {$endif testsave}
- {$ifdef win32}
- charmessagehandler:=nil;
- {$endif win32}
- end.
- SetGraphBufSize
- {
- $Log$
- Revision 1.38 1999-11-11 17:55:07 florian
- * the size was calculated wrong by imagesize
- Revision 1.37 1999/11/11 14:07:14 florian
- * better looking font
- Revision 1.36 1999/11/08 15:01:38 peter
- * fpcmake support
- Revision 1.35 1999/11/08 11:15:22 peter
- * move graph.inc to the target dir
- Revision 1.34 1999/11/03 20:23:01 florian
- + first release of win32 gui support
- Revision 1.33 1999/10/17 10:20:13 jonas
- * fixed clipping for thickwidth lines (bug 659)
- * fixed the faster internalellipsedefault, but it doesn't plot
- all pixels (there are gaps in the ellipses)
- Revision 1.32 1999/09/28 15:07:46 jonas
- * fix for disposing font data because it can contain #0 chars
- Revision 1.31 1999/09/28 13:56:25 jonas
- * reordered some local variables (first 4 byte vars, then 2 byte vars
- etc)
- * font data is now disposed in exitproc, exitproc is now called
- GraphExitProc (was CleanModes) and resides in graph.pp instead of in
- modes.inc
- Revision 1.30 1999/09/27 23:34:41 peter
- * new graph unit is default for go32v2
- * removed warnings/notes
- Revision 1.29 1999/09/26 13:31:06 jonas
- * changed name of modeinfo variable to vesamodeinfo and fixed
- associated errors (fillchar(modeinfo,sizeof(tmodeinfo),#0) instead
- of sizeof(TVesamodeinfo) etc)
- * changed several sizeof(type) to sizeof(varname) to avoid similar
- errors in the future
- Revision 1.28 1999/09/25 11:48:43 jonas
- + detectgraph
- * small change to internalellipsedefault so less pixels are
- calculated twice
- * some small corrections to graph.tex
- Revision 1.27 1999/09/24 22:52:38 jonas
- * optimized patternline a bit (always use hline when possible)
- * isgraphmode stuff cleanup
- * vesainfo.modelist now gets disposed in cleanmode instead of in
- closegraph (required moving of some declarations from vesa.inc to
- new vesah.inc)
- * queryadapter gets no longer called from initgraph (is called from
- initialization of graph unit)
- * bugfix for notput in 32k and 64k vesa modes
- * a div replaced by / in fillpoly
- Revision 1.26 1999/09/22 13:13:35 jonas
- * renamed text.inc -> gtext.inc to avoid conflict with system unit
- * fixed textwidth
- * isgraphmode now gets properly updated, so mode restoring works
- again
- Revision 1.25 1999/09/18 22:21:10 jonas
- + hlinevesa256 and vlinevesa256
- + support for not/xor/or/andput in vesamodes with 32k/64k colors
- * lots of changes to avoid warnings under FPC
- Revision 1.24 1999/09/18 16:03:37 jonas
- * graph.pp: removed pieslice and sector from ToDo list
- * closegraph: exits now immidiately if isgraphmode = false (caused
- RTE 204 with VESA enabled if you set exitproc to call closegraph
- and also called closegraph explicitely before exit, like bgidemo)
- Revision 1.23 1999/09/17 13:58:31 jonas
- * another fix for a case where internalellipsedefault went haywire
- * sector() and pieslice() fully implemented!
- * small change to prevent buffer overflow with floodfill
- Revision 1.22 1999/09/15 13:37:50 jonas
- * small change to internalellipsedef to be TP compatible
- * fixed directputpixel for vga 320*200*256
- Revision 1.21 1999/09/13 12:49:08 jonas
- * fixed Arc: internallellipse went into an endless loop if StAngle =
- EndAngle
- * FillEllipse is now much faster: no more floodfill,
- InternalEllipseDefault now draws the patternlines immediatety!
- Revision 1.20 1999/09/12 17:29:00 jonas
- * several changes to internalellipse to make it faster
- and to make sure it updates the ArcCall correctly
- (not yet done for width = 3)
- * Arc mostly works now, only sometimes an endless loop, don't know
- why
- Revision 1.19 1999/09/11 19:43:01 jonas
- * FloodFill: did not take into account current viewport settings
- * GetScanLine: only get line inside viewport, data outside of it
- is not used anyway
- * InternalEllipseDefault: fix for when xradius or yradius = 0 and
- increase xradius and yradius always by one (TP does this too)
- * fixed conlict in vesa.inc from last update
- * some conditionals to avoid range check and overflow errors in
- places where it doesn't matter
- Revision 1.18 1999/07/26 09:38:41 florian
- * bar: y2 can be less y1, fixed
- * settextstyle: charsize can be 0, must be changed into 1
- Revision 1.17 1999/07/18 15:07:20 jonas
- + xor-, and and- orput support for VESA256 modes
- * compile with -dlogging if you wnt some info to be logged to grlog.txt
- Revision 1.16 1999/07/14 18:18:04 florian
- * cosmetic changes
- }
|