123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560 |
- #ifndef Bild_H
- #define Bild_H
- #include "Array.h"
- #include "Punkt.h"
- #include "Zeichnung.h"
- namespace Framework
- {
- class Bild;
- #ifdef WIN32
- class VScrollBar;
- class HScrollBar;
- class Rahmen;
- struct MausEreignis;
- class Text;
- #endif
-
-
- class Bild : public virtual ReferenceCounter
- {
- private:
- int* fc;
- bool delFc;
- Punkt size;
- 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,
- const 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,
- const Bild& textur);
- void drawLinieHTextur(Vec2<double> p,
- double length,
- Vec2<double> ta,
- Vec2<double> tb,
- double txo,
- double tyo,
- const Bild& textur);
- void drawLinieHTexturAlpha(Vec2<double> p,
- double length,
- Vec2<double> ta,
- Vec2<double> tb,
- double txo,
- double tyo,
- const Bild& textur);
- public:
-
-
-
-
-
- DLLEXPORT Bild(bool options = 0);
-
- DLLEXPORT ~Bild();
-
-
-
-
- DLLEXPORT bool isAreaDrawable(int x, int y, int width, int height);
-
-
-
-
-
- DLLEXPORT void setAlpha3D(bool erlaubt);
-
-
- DLLEXPORT void setAlpha(unsigned char alpha);
-
- DLLEXPORT void releaseAlpha();
-
-
-
-
-
- DLLEXPORT void setPixelBuffer(
- int* buffer, bool deleteBuffer, int breite, int height);
-
-
-
-
- DLLEXPORT void neuBild(int breite, int height, int fillColor);
-
-
-
-
-
- DLLEXPORT void alphaPixel2D(int x, int y, int f);
- DLLEXPORT void alphaPixel3D(int x, int y, int f);
-
-
-
-
- DLLEXPORT void alphaPixel2D(int i, int f);
- DLLEXPORT void alphaPixel3D(int i, int f);
-
-
-
-
- DLLEXPORT void alphaPixelDP2D(int x, int y, int f);
- DLLEXPORT void alphaPixelDP3D(int x, int y, int f);
-
-
-
- DLLEXPORT void alphaPixelDP2D(int i, int f);
- DLLEXPORT void alphaPixelDP3D(int i, int f);
-
-
-
-
- DLLEXPORT void setPixelDP(int x, int y, int f);
-
-
-
- DLLEXPORT void setPixelDP(int i, int f);
-
-
- DLLEXPORT void setFarbe(int f);
-
-
-
-
-
-
- DLLEXPORT void fillRegion(int x, int y, int b, int h, int fc);
-
-
-
-
-
-
- DLLEXPORT void alphaRegion(int x, int y, int b, int h, int fc);
-
-
-
-
-
- DLLEXPORT void drawLinieH(int x, int y, int length, int fc);
-
-
-
-
-
- DLLEXPORT void drawLinieV(int x, int y, int length, int fc);
-
-
-
-
-
- DLLEXPORT void drawLinieHAlpha(int x, int y, int length, int fc);
-
-
-
-
-
- DLLEXPORT void drawLinieVAlpha(int x, int y, int length, int fc);
-
-
-
-
- DLLEXPORT void drawLinieBordered(Punkt a, Punkt b, int bc, int fc);
-
-
-
-
- DLLEXPORT void drawLinieBorderedAlpha(Punkt a, Punkt b, int bc, int fc);
-
-
-
-
- DLLEXPORT void drawLinie(Punkt a, Punkt b, int fc);
-
-
-
-
- DLLEXPORT void drawLinieAlpha(Punkt a, Punkt b, int fc);
-
-
-
-
-
- DLLEXPORT void fillCircle(int xOff, int yOff, int r, int fc);
-
-
-
-
-
- DLLEXPORT void drawKreis(int xOff, int yOff, int r, int fc);
-
-
-
-
-
- DLLEXPORT void drawKreisAlpha(int xOff, int yOff, int r, int fc);
-
-
-
-
-
-
-
-
- DLLEXPORT void drawBild(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void alphaBild(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void alphaBildAssoz(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void drawBild90(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void alphaBild90(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void drawBild180(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void alphaBild180(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void drawBild270(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void alphaBild270(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void drawBildSkall(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
-
-
-
- DLLEXPORT void alphaBildSkall(
- int x, int y, int br, int hi, const Bild& zBild);
-
-
-
-
-
- DLLEXPORT void drawDreieck(Punkt a, Punkt b, Punkt c, int farbe);
-
-
-
-
-
-
-
-
- DLLEXPORT void drawDreieckTextur(Punkt a,
- Punkt b,
- Punkt c,
- Punkt ta,
- Punkt tb,
- Punkt tc,
- const Bild& textur);
-
-
-
-
-
- DLLEXPORT void drawDreieckAlpha(Punkt a, Punkt b, Punkt c, int farbe);
-
-
-
-
-
-
-
-
- DLLEXPORT void drawDreieckTexturAlpha(Punkt a,
- Punkt b,
- Punkt c,
- Punkt ta,
- Punkt tb,
- Punkt tc,
- const Bild& textur);
-
- DLLEXPORT void replaceColorWithAlpha(int color);
-
-
-
-
-
-
-
-
-
-
-
- DLLEXPORT bool setDrawOptions(const Punkt& pos, const Punkt& gr);
-
-
-
-
-
-
-
-
-
-
-
-
- DLLEXPORT bool setDrawOptions(int x, int y, int br, int hi);
-
-
-
-
-
-
-
-
-
- DLLEXPORT bool setDrawOptionsErzwingen(
- const Punkt& pos, const Punkt& gr);
-
-
-
-
-
-
-
-
-
-
-
- DLLEXPORT bool setDrawOptionsErzwingen(int x, int y, int br, int hi);
-
- DLLEXPORT void setDrawOptionsReset();
-
-
-
-
-
-
- DLLEXPORT void addScrollOffset(int xOff, int yOff);
-
-
-
- DLLEXPORT void releaseDrawOptions();
-
-
- DLLEXPORT bool getRend();
-
-
- DLLEXPORT int* getBuffer() const;
-
-
-
- DLLEXPORT int getPixel(int x, int y) const;
-
- DLLEXPORT const Punkt& getSize() const;
-
- DLLEXPORT int getBreite() const;
-
- DLLEXPORT int getHeight() const;
-
- DLLEXPORT unsigned char getAlpha() const;
-
-
- DLLEXPORT const Punkt& getDrawPos() const;
-
- DLLEXPORT const Punkt& getDrawGr() const;
-
-
- DLLEXPORT const Punkt& getDrawOff() const;
-
-
-
-
-
- DLLEXPORT bool hasAlpha3D() const;
-
- DLLEXPORT int getAverageColor() const;
- };
-
- class BildZ : public ZeichnungHintergrund
- {
- public:
- class Style : public ZeichnungHintergrund::Style
- {
- public:
-
-
- static const __int64 Alpha = 0x1000;
-
-
- static const __int64 Skalliert = 0x2000;
-
-
- static const __int64 normal
- = HScroll | Sichtbar | Erlaubt | Rahmen | VScroll;
- };
- private:
- Bild* bild;
- protected:
-
-
- DLLEXPORT void doMausEreignis(MausEreignis& me, bool userRet) override;
- public:
-
- DLLEXPORT BildZ();
-
- DLLEXPORT virtual ~BildZ();
-
-
- DLLEXPORT void setBildZ(Bild* b);
-
-
- DLLEXPORT void setBild(Bild* b);
-
-
-
-
- DLLEXPORT bool tick(double tickVal) override;
-
-
- DLLEXPORT void render(Bild& zRObj) override;
-
- DLLEXPORT Bild* getBild() const;
-
- DLLEXPORT Bild* zBild() const;
-
-
- DLLEXPORT Zeichnung* dublizieren() const override;
- };
- #ifdef WIN32
-
-
-
-
- DLLEXPORT Bild* ladeBild(const char* pfad, Text* zError);
- #endif
- }
- #endif
|