/*
* The ManaPlus Client
* Copyright (C) 2011-2015 The ManaPlus Developers
*
* This file is part of The ManaPlus Client.
*
* This program 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
* any later version.
*
* 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. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#ifndef GRAPHICSVERTEXES_H
#define GRAPHICSVERTEXES_H
#include "main.h"
#include "localconsts.h"
#ifdef USE_OPENGL
#ifdef ANDROID
#include
#else
#ifndef USE_SDL2
#define GL_GLEXT_PROTOTYPES 1
#endif
#include
#endif
#endif
#include
#include
class Image;
struct DoubleRect final
{
SDL_Rect src;
SDL_Rect dst;
};
class SDLGraphicsVertexes final
{
public:
SDLGraphicsVertexes();
A_DELETE_COPY(SDLGraphicsVertexes)
~SDLGraphicsVertexes();
std::vector mList;
};
#ifdef USE_OPENGL
class OpenGLGraphicsVertexes final
{
public:
OpenGLGraphicsVertexes();
A_DELETE_COPY(OpenGLGraphicsVertexes)
~OpenGLGraphicsVertexes();
GLfloat *switchFloatTexArray();
GLint *switchIntVertArray();
GLint *switchIntTexArray();
GLshort *switchShortVertArray();
std::vector *getFloatTexPool() A_WARN_UNUSED
{ return &mFloatTexPool; }
std::vector *getIntVertPool() A_WARN_UNUSED
{ return &mIntVertPool; }
std::vector *getShortVertPool() A_WARN_UNUSED
{ return &mShortVertPool; }
std::vector *getIntTexPool() A_WARN_UNUSED
{ return &mIntTexPool; }
void switchVp(const int n);
GLfloat *continueFloatTexArray();
GLint *continueIntVertArray();
GLshort *continueShortVertArray();
GLint *continueIntTexArray();
int continueVp();
void updateVp(const int n);
std::vector *getVp() A_WARN_UNUSED
{ return &mVp; }
void init();
void clear();
int ptr;
GLfloat *mFloatTexArray;
GLint *mIntTexArray;
GLint *mIntVertArray;
GLshort *mShortVertArray;
std::vector mVp;
std::vector mFloatTexPool;
std::vector mIntVertPool;
std::vector mShortVertPool;
std::vector mIntTexPool;
std::vector mVbo;
};
#endif
typedef std::vector DoubleRects;
class ImageVertexes final
{
public:
ImageVertexes();
A_DELETE_COPY(ImageVertexes)
~ImageVertexes();
const Image *image;
#ifdef USE_OPENGL
OpenGLGraphicsVertexes ogl;
#endif
DoubleRects sdl;
};
typedef std::vector ImageVertexesVector;
typedef ImageVertexesVector::iterator ImageCollectionIter;
typedef ImageVertexesVector::const_iterator ImageCollectionCIter;
class ImageCollection final
{
public:
ImageCollection();
A_DELETE_COPY(ImageCollection)
~ImageCollection();
void clear();
#ifdef USE_OPENGL
GLuint currentGLImage;
#endif
const Image *currentImage;
ImageVertexes *currentVert;
ImageVertexesVector draws;
};
#ifdef USE_OPENGL
extern unsigned int vertexBufSize;
#endif
#endif // GRAPHICSVERTEXES_H