2013-09-01 14:27:21 +00:00
|
|
|
/*
|
|
|
|
** etc.h
|
|
|
|
**
|
|
|
|
** This file is part of mkxp.
|
|
|
|
**
|
2021-09-06 18:50:44 +00:00
|
|
|
** Copyright (C) 2021 Amaryllis Kulla <amaryllis.kulla@protonmail.com>
|
2013-09-01 14:27:21 +00:00
|
|
|
**
|
|
|
|
** mkxp is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 2 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** mkxp is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with mkxp. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ETC_H
|
|
|
|
#define ETC_H
|
|
|
|
|
2013-12-04 16:48:37 +00:00
|
|
|
#include <sigc++/signal.h>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
#include "serializable.h"
|
|
|
|
#include "etc-internal.h"
|
|
|
|
|
|
|
|
struct SDL_Color;
|
|
|
|
|
|
|
|
enum BlendType
|
|
|
|
{
|
2014-08-12 19:28:18 +00:00
|
|
|
BlendKeepDestAlpha = -1,
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
BlendNormal = 0,
|
|
|
|
BlendAddition = 1,
|
|
|
|
BlendSubstraction = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Color : public Serializable
|
|
|
|
{
|
|
|
|
Color()
|
|
|
|
: red(0), green(0), blue(0), alpha(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
Color(double red, double green, double blue, double alpha = 255);
|
|
|
|
Color(const Vec4 &norm);
|
|
|
|
Color(const Color &o);
|
|
|
|
|
2013-09-27 02:39:35 +00:00
|
|
|
virtual ~Color() {}
|
|
|
|
|
2014-09-04 23:26:03 +00:00
|
|
|
const Color &operator=(const Color &o);
|
2013-09-01 14:27:21 +00:00
|
|
|
void set(double red, double green, double blue, double alpha);
|
2014-09-04 23:26:03 +00:00
|
|
|
|
|
|
|
bool operator==(const Color &o) const;
|
2014-08-15 20:53:42 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
void setRed(double value);
|
|
|
|
void setGreen(double value);
|
|
|
|
void setBlue(double value);
|
|
|
|
void setAlpha(double value);
|
|
|
|
|
|
|
|
double getRed() const { return red; }
|
|
|
|
double getGreen() const { return green; }
|
|
|
|
double getBlue() const { return blue; }
|
|
|
|
double getAlpha() const { return alpha; }
|
|
|
|
|
2014-09-04 23:26:03 +00:00
|
|
|
/* Serializable */
|
|
|
|
int serialSize() const;
|
|
|
|
void serialize(char *buffer) const;
|
|
|
|
static Color *deserialize(const char *data, int len);
|
|
|
|
|
|
|
|
/* Internal */
|
|
|
|
void updateInternal();
|
|
|
|
void updateExternal();
|
|
|
|
|
2014-08-12 17:41:11 +00:00
|
|
|
bool hasEffect() const
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
|
|
|
return (alpha != 0);
|
|
|
|
}
|
|
|
|
|
2014-10-25 21:38:19 +00:00
|
|
|
SDL_Color toSDLColor() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
/* Range (0.0 ~ 255.0) */
|
|
|
|
double red;
|
|
|
|
double green;
|
|
|
|
double blue;
|
|
|
|
double alpha;
|
|
|
|
|
|
|
|
/* Normalized (0.0 ~ 1.0) */
|
|
|
|
Vec4 norm;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Tone : public Serializable
|
|
|
|
{
|
|
|
|
Tone()
|
|
|
|
: red(0), green(0), blue(0), gray(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
Tone(double red, double green, double blue, double gray = 0);
|
|
|
|
Tone(const Tone &o);
|
|
|
|
|
2013-09-27 02:39:35 +00:00
|
|
|
virtual ~Tone() {}
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
bool operator==(const Tone &o) const;
|
|
|
|
|
|
|
|
void set(double red, double green, double blue, double gray);
|
2014-09-04 23:26:03 +00:00
|
|
|
const Tone &operator=(const Tone &o);
|
2014-08-15 20:53:42 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
void setRed(double value);
|
|
|
|
void setGreen(double value);
|
|
|
|
void setBlue(double value);
|
|
|
|
void setGray(double value);
|
|
|
|
|
|
|
|
double getRed() const { return red; }
|
|
|
|
double getGreen() const { return green; }
|
|
|
|
double getBlue() const { return blue; }
|
|
|
|
double getGray() const { return gray; }
|
|
|
|
|
2014-09-04 23:26:03 +00:00
|
|
|
/* Serializable */
|
|
|
|
int serialSize() const;
|
|
|
|
void serialize(char *buffer) const;
|
|
|
|
static Tone *deserialize(const char *data, int len);
|
|
|
|
|
|
|
|
/* Internal */
|
|
|
|
void updateInternal();
|
|
|
|
|
2014-08-12 17:41:11 +00:00
|
|
|
bool hasEffect() const
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
|
|
|
return ((int)red != 0 ||
|
|
|
|
(int)green != 0 ||
|
|
|
|
(int)blue != 0 ||
|
|
|
|
(int)gray != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Range (-255.0 ~ 255.0) */
|
|
|
|
double red;
|
|
|
|
double green;
|
|
|
|
double blue;
|
|
|
|
/* Range (0.0 ~ 255.0) */
|
|
|
|
double gray;
|
|
|
|
|
|
|
|
/* Normalized (-1.0 ~ 1.0) */
|
|
|
|
Vec4 norm;
|
2014-08-12 19:21:16 +00:00
|
|
|
|
|
|
|
sigc::signal<void> valueChanged;
|
2013-09-01 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Rect : public Serializable
|
|
|
|
{
|
|
|
|
Rect()
|
|
|
|
: x(0), y(0), width(0), height(0)
|
|
|
|
{}
|
|
|
|
|
2013-09-27 02:39:35 +00:00
|
|
|
virtual ~Rect() {}
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
Rect(int x, int y, int width, int height);
|
|
|
|
Rect(const Rect &o);
|
|
|
|
Rect(const IntRect &r);
|
|
|
|
|
|
|
|
bool operator==(const Rect &o) const;
|
|
|
|
void operator=(const IntRect &rect);
|
|
|
|
void set(int x, int y, int w, int h);
|
2014-09-04 23:26:03 +00:00
|
|
|
const Rect &operator=(const Rect &o);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
void empty();
|
2013-09-28 19:45:33 +00:00
|
|
|
bool isEmpty() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-09-22 22:03:43 +00:00
|
|
|
void setX(int value);
|
|
|
|
void setY(int value);
|
|
|
|
void setWidth(int value);
|
|
|
|
void setHeight(int value);
|
|
|
|
|
|
|
|
int getX() const { return x; }
|
|
|
|
int getY() const { return y; }
|
|
|
|
int getWidth() const { return width; }
|
|
|
|
int getHeight() const { return height; }
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-09-04 23:26:03 +00:00
|
|
|
/* Serializable */
|
2013-09-01 14:27:21 +00:00
|
|
|
int serialSize() const;
|
|
|
|
void serialize(char *buffer) const;
|
|
|
|
static Rect *deserialize(const char *data, int len);
|
|
|
|
|
2014-09-04 23:26:03 +00:00
|
|
|
/* Internal */
|
|
|
|
FloatRect toFloatRect() const
|
|
|
|
{
|
|
|
|
return FloatRect(x, y, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
IntRect toIntRect()
|
|
|
|
{
|
|
|
|
return IntRect(x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
|
|
|
|
sigc::signal<void> valueChanged;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* For internal use.
|
|
|
|
* All drawable classes have properties of one or more of the above
|
|
|
|
* types, which in an interpreted environment act as independent
|
|
|
|
* objects, and rely on the GC to clean them up. When a drawable
|
|
|
|
* class is constructed, these properties must have default objects
|
|
|
|
* that are constructed with the class. C++ however has no GC, so
|
|
|
|
* there is no way to clean them up when used directly with it.
|
|
|
|
* Therefore the default objects are first created embedded in the
|
|
|
|
* drawable class (so they get destroyed automatically from within
|
|
|
|
* C++ if no pointers were changed), and the binding then takes
|
|
|
|
* care of properly allocating new, independent objects and replacing
|
|
|
|
* the defaults. Thus both C++ and the interpreted API can be used
|
|
|
|
* without memory leakage.
|
|
|
|
* This can be removed at a later point when no testing directly
|
|
|
|
* from C++ is needed anymore. */
|
|
|
|
struct EtcTemps
|
|
|
|
{
|
|
|
|
Color color;
|
|
|
|
Tone tone;
|
|
|
|
Rect rect;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ETC_H
|