2013-09-01 14:27:21 +00:00
|
|
|
/*
|
|
|
|
** scene.h
|
|
|
|
**
|
|
|
|
** This file is part of mkxp.
|
|
|
|
**
|
|
|
|
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
|
|
|
|
**
|
|
|
|
** 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 SCENE_H
|
|
|
|
#define SCENE_H
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
#include "intrulist.h"
|
|
|
|
#include "etc.h"
|
|
|
|
#include "etc-internal.h"
|
|
|
|
|
|
|
|
class SceneElement;
|
|
|
|
class Viewport;
|
|
|
|
class Window;
|
2013-09-27 02:42:22 +00:00
|
|
|
class ScanRow;
|
2013-10-13 20:00:38 +00:00
|
|
|
struct TilemapPrivate;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
class Scene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct Geometry
|
|
|
|
{
|
|
|
|
int xOrigin, yOrigin;
|
|
|
|
IntRect rect;
|
|
|
|
};
|
|
|
|
|
|
|
|
Scene();
|
2013-09-30 17:30:05 +00:00
|
|
|
virtual ~Scene();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
virtual void composite();
|
|
|
|
virtual void requestViewportRender(Vec4& /*color*/, Vec4& /*flash*/, Vec4& /*tone*/) {}
|
|
|
|
|
|
|
|
const Geometry &getGeometry() const { return geometry; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void insert(SceneElement &element);
|
2013-10-13 10:58:56 +00:00
|
|
|
void insertAfter(SceneElement &element, SceneElement &after);
|
2013-09-01 14:27:21 +00:00
|
|
|
void reinsert(SceneElement &element);
|
|
|
|
|
|
|
|
/* Notify all elements that geometry has changed */
|
|
|
|
void notifyGeometryChange();
|
|
|
|
|
|
|
|
IntruList<SceneElement> elements;
|
|
|
|
Geometry geometry;
|
|
|
|
|
|
|
|
friend class SceneElement;
|
|
|
|
friend class Window;
|
2013-09-27 02:42:22 +00:00
|
|
|
friend class ScanRow;
|
2013-09-01 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SceneElement
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SceneElement(Scene &scene, int z = 0);
|
2013-09-27 02:42:22 +00:00
|
|
|
SceneElement(Scene &scene, int z, unsigned int cStamp);
|
2013-09-01 14:27:21 +00:00
|
|
|
virtual ~SceneElement();
|
|
|
|
|
|
|
|
void setScene(Scene &scene);
|
|
|
|
|
|
|
|
DECL_ATTR_VIRT( Z, int )
|
|
|
|
DECL_ATTR_VIRT( Visible, bool )
|
|
|
|
|
|
|
|
/* Disposable classes reimplement this to
|
|
|
|
* check if they're disposed before access */
|
|
|
|
virtual void aboutToAccess() const {}
|
|
|
|
|
|
|
|
protected:
|
2013-10-17 13:27:48 +00:00
|
|
|
/* A bit about OpenGL state:
|
|
|
|
*
|
|
|
|
* If we're not inside the draw cycle (ie. the 'draw()'
|
|
|
|
* handle), you're free to change any GL state through
|
|
|
|
* gl-util, except for those in GLState which you should
|
|
|
|
* push/pop as needed.
|
|
|
|
*
|
|
|
|
* If we're _drawing_, you should probably not touch most
|
|
|
|
* things in GLState. For scissored rendering, use push with
|
|
|
|
* setIntersect(), and then pop afterwards.
|
|
|
|
* Blendmode you can push/pop as you like. Do NOT touch viewport.
|
|
|
|
* Texture/Shader bindings you're free to modify without
|
|
|
|
* cleanup (and therefore you should expect dirty state).
|
|
|
|
* Do NOT touch the FBO::Draw binding. If you have to do work
|
|
|
|
* immediately before drawing that touches this (such as flushing
|
|
|
|
* Bitmaps), use the 'prepareDraw' signal in SharedState that
|
|
|
|
* will fire immediately before each frame draw.
|
|
|
|
*/
|
2013-09-01 14:27:21 +00:00
|
|
|
virtual void draw() = 0;
|
2013-10-17 13:27:48 +00:00
|
|
|
|
|
|
|
// FIXME: This should be a signal
|
2013-09-01 14:27:21 +00:00
|
|
|
virtual void onGeometryChange(const Scene::Geometry &) {}
|
|
|
|
|
2013-09-06 11:10:41 +00:00
|
|
|
/* Compares to elements in terms of their display priority;
|
|
|
|
* elements with lower priority are drawn earlier */
|
|
|
|
bool operator<(const SceneElement &o) const;
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
void unlink();
|
|
|
|
|
|
|
|
IntruListLink<SceneElement> link;
|
|
|
|
const unsigned int creationStamp;
|
|
|
|
int z;
|
|
|
|
bool visible;
|
|
|
|
Scene *scene;
|
|
|
|
|
|
|
|
friend class Scene;
|
|
|
|
friend class Viewport;
|
2013-10-13 20:00:38 +00:00
|
|
|
friend struct TilemapPrivate;
|
2013-09-01 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCENE_H
|