123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424 |
- #ifndef Bild_H
- #define Bild_H
- #include "Array.h"
- #include "Zeichnung.h"
- #include "Punkt.h"
- namespace Framework
- {
- class Bild;
- #ifdef WIN32
- class VScrollBar;
- class HScrollBar;
- class Rahmen;
- struct MausEreignis;
- class Text;
- #endif
-
- class Bild
- {
- private:
- int *fc;
- bool delFc;
- Punkt size;
- int ref;
- Punkt *drawOff;
- Punkt *dPosA;
- Punkt *dSizeA;
- int doa;
- unsigned char *alpha;
- int alphaAnzahl;
- bool rend;
- bool alpha3D;
-
- inline void alphaPixelP( int x, int y, int f );
- inline void alphaPixelP3D( int x, int y, int f );
- inline void alphaPixelP( int &fc, int f );
- inline void alphaPixelP3D( int &fc, int f );
- inline void alphaPixelAssozP( int &fc, int f );
- inline char getOutCode( Punkt p ) const;
- void drawFlatDreieck( int y1, int y2, float m1, float b1, float m2, float b2, int farbe );
- void drawFlatDreieckTextur( int y1, int y2, double m1, double b1, double m2, double b2, double tx1, double ty1, double tx2, double ty2,
- double tx_1o, double ty_1o, double tx_2o, double ty_2o, double txf, double tyf, Bild &textur );
- void drawFlatDreieckAlpha( int y1, int y2, float m1, float b1, float m2, float b2, int farbe );
- void drawFlatDreieckTexturAlpha( int y1, int y2, double m1, double b1, double m2, double b2, double tx1, double ty1, double tx2, double ty2,
- double tx_1o, double ty_1o, double tx_2o, double ty_2o, double txf, double tyf, Bild &textur );
- void drawLinieHTextur( Vec2< double > p, double length, Vec2< double > ta, Vec2< double > tb, double txo, double tyo, Bild &textur );
- void drawLinieHTexturAlpha( Vec2< double > p, double length, Vec2< double > ta, Vec2< double > tb, double txo, double tyo, Bild &textur );
- public:
-
-
-
- __declspec( dllexport ) Bild( bool options = 0 );
-
- __declspec( dllexport ) ~Bild();
-
-
- __declspec( dllexport ) bool isAreaDrawable( int x, int y, int width, int height );
-
-
-
- __declspec( dllexport ) void setAlpha3D( bool erlaubt );
-
- __declspec( dllexport ) void setAlpha( unsigned char alpha );
-
- __declspec( dllexport ) void releaseAlpha();
-
-
-
-
-
- __declspec( dllexport ) void setPixelBuffer( int *buffer, bool deleteBuffer, int breite, int height );
-
-
-
-
- __declspec( dllexport ) void neuBild( int breite, int height, int fillColor );
-
-
-
-
-
- __declspec( dllexport ) void alphaPixel2D( int x, int y, int f );
- __declspec( dllexport ) void alphaPixel3D( int x, int y, int f );
-
-
-
-
- __declspec( dllexport ) void alphaPixel2D( int i, int f );
- __declspec( dllexport ) void alphaPixel3D( int i, int f );
-
-
-
-
- __declspec( dllexport ) void alphaPixelDP2D( int x, int y, int f );
- __declspec( dllexport ) void alphaPixelDP3D( int x, int y, int f );
-
-
-
- __declspec( dllexport ) void alphaPixelDP2D( int i, int f );
- __declspec( dllexport ) void alphaPixelDP3D( int i, int f );
-
-
-
-
- __declspec( dllexport ) void setPixelDP( int x, int y, int f );
-
-
-
- __declspec( dllexport ) void setPixelDP( int i, int f );
-
-
- __declspec( dllexport ) void setFarbe( int f );
-
-
-
-
-
-
- __declspec( dllexport ) void fillRegion( int x, int y, int b, int h, int fc );
-
-
-
-
-
-
- __declspec( dllexport ) void alphaRegion( int x, int y, int b, int h, int fc );
-
-
-
-
-
- __declspec( dllexport ) void drawLinieH( int x, int y, int length, int fc );
-
-
-
-
-
- __declspec( dllexport ) void drawLinieV( int x, int y, int length, int fc );
-
-
-
-
-
- __declspec( dllexport ) void drawLinieHAlpha( int x, int y, int length, int fc );
-
-
-
-
-
- __declspec( dllexport ) void drawLinieVAlpha( int x, int y, int length, int fc );
-
-
-
-
- __declspec( dllexport ) void drawLinieBordered( Punkt a, Punkt b, int bc, int fc );
-
-
-
-
- __declspec( dllexport ) void drawLinieBorderedAlpha( Punkt a, Punkt b, int bc, int fc );
-
-
-
-
- __declspec( dllexport ) void drawLinie( Punkt a, Punkt b, int fc );
-
-
-
-
- __declspec( dllexport ) void drawLinieAlpha( Punkt a, Punkt b, int fc );
-
-
-
-
-
- __declspec( dllexport ) void fillCircle( int xOff, int yOff, int r, int fc );
-
-
-
-
-
- __declspec( dllexport ) void drawKreis( int xOff, int yOff, int r, int fc );
-
-
-
-
-
- __declspec( dllexport ) void drawKreisAlpha( int xOff, int yOff, int r, int fc );
-
-
-
-
-
-
- __declspec( dllexport ) void drawBild( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void alphaBild( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void alphaBildAssoz( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void drawBild90( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void alphaBild90( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void drawBild180( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void alphaBild180( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void drawBild270( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void alphaBild270( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void drawBildSkall( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
-
- __declspec( dllexport ) void alphaBildSkall( int x, int y, int br, int hi, Bild &zBild );
-
-
-
-
-
- __declspec( dllexport ) void drawDreieck( Punkt a, Punkt b, Punkt c, int farbe );
-
-
-
-
-
-
-
-
- __declspec( dllexport ) void drawDreieckTextur( Punkt a, Punkt b, Punkt c, Punkt ta, Punkt tb, Punkt tc, Bild &textur );
-
-
-
-
-
- __declspec( dllexport ) void drawDreieckAlpha( Punkt a, Punkt b, Punkt c, int farbe );
-
-
-
-
-
-
-
-
- __declspec( dllexport ) void drawDreieckTexturAlpha( Punkt a, Punkt b, Punkt c, Punkt ta, Punkt tb, Punkt tc, Bild &textur );
-
- __declspec( dllexport ) void replaceColorWithAlpha( int color );
-
-
-
-
-
- __declspec( dllexport ) bool setDrawOptions( const Punkt &pos, const Punkt &gr );
-
-
-
-
-
-
-
- __declspec( dllexport ) bool setDrawOptions( int x, int y, int br, int hi );
-
-
-
-
-
- __declspec( dllexport ) bool setDrawOptionsErzwingen( const Punkt &pos, const Punkt &gr );
-
-
-
-
-
-
-
- __declspec( dllexport ) bool setDrawOptionsErzwingen( int x, int y, int br, int hi );
-
-
-
-
- __declspec( dllexport ) void addScrollOffset( int xOff, int yOff );
-
-
- __declspec( dllexport ) void releaseDrawOptions();
-
- __declspec( dllexport ) bool getRend();
-
-
- __declspec( dllexport ) int *getBuffer() const;
-
-
-
- __declspec( dllexport ) int getPixel( int x, int y ) const;
-
- __declspec( dllexport ) const Punkt &getSize() const;
-
- __declspec( dllexport ) int getBreite() const;
-
- __declspec( dllexport ) int getHeight() const;
-
- __declspec( dllexport ) unsigned char getAlpha() const;
-
- __declspec( dllexport ) const Punkt &getDrawPos() const;
-
- __declspec( dllexport ) const Punkt &getDrawGr() const;
-
- __declspec( dllexport ) const Punkt &getDrawOff() const;
-
-
-
- __declspec( dllexport ) bool hasAlpha3D();
-
-
- __declspec( dllexport ) Bild *getThis();
-
-
- __declspec( dllexport ) Bild *release();
- };
-
- class BildZ : public ZeichnungHintergrund
- {
- public:
- class Style : public ZeichnungHintergrund::Style
- {
- public:
- const static __int64 Alpha = 0x1000;
- const static __int64 normal = HScroll | Sichtbar | Erlaubt | Rahmen | VScroll;
- };
- private:
- Bild *bild;
- public:
-
- __declspec( dllexport ) BildZ();
-
- __declspec( dllexport ) virtual ~BildZ();
-
-
- __declspec( dllexport ) void setBildZ( Bild *b );
-
-
- __declspec( dllexport ) void setBild( Bild *b );
-
-
-
- __declspec( dllexport ) bool tick( double tickVal ) override;
-
-
- __declspec( dllexport ) void doMausEreignis( MausEreignis &me ) override;
-
-
- __declspec( dllexport ) void render( Bild &zRObj ) override;
-
- __declspec( dllexport ) Bild *getBild() const;
-
- __declspec( dllexport ) Bild *zBild() const;
-
- __declspec( dllexport ) Zeichnung *dublizieren() const override;
- };
- #ifdef WIN32
-
-
-
-
- __declspec( dllexport ) Bild *ladeBild( char *pfad, Text *zError );
- #endif
- }
- #endif
|