96 lines
1.9 KiB
C++
Executable File
96 lines
1.9 KiB
C++
Executable File
#ifndef GL_CODE_H_INCLUDED
|
|
#define GL_CODE_H_INCLUDED
|
|
|
|
#ifdef TARGET_ANDROID
|
|
//#include "android_api.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
|
|
#ifdef TARGET_ANDROID
|
|
#include <GLES/gl.h>
|
|
#include <GLES2/gl2.h>
|
|
#include <GLES2/gl2ext.h>
|
|
#endif
|
|
|
|
//#ifdef TARGET_WIN32
|
|
//#define NOMINMAX 1
|
|
//#include <Windows.h>
|
|
//#undef NOMINMAX
|
|
//#endif
|
|
|
|
#include "boost/shared_ptr.hpp"
|
|
#include "boost/thread/thread.hpp"
|
|
#include "boost/asio.hpp"
|
|
#include "boost/assign.hpp"
|
|
#include "boost/variant.hpp"
|
|
#include "boost/function.hpp"
|
|
#include "boost/bind.hpp"
|
|
|
|
#include "include/Engine.h"
|
|
|
|
using namespace SE;
|
|
|
|
class TAndroidApplication : public TApplication, public TSerializeInterface
|
|
{
|
|
protected:
|
|
|
|
void LoadModels();
|
|
void AddFrameBuffers();
|
|
|
|
public:
|
|
bool Inited;
|
|
bool Loaded;
|
|
|
|
std::vector<boost::variant<boost::function<size_t()>, boost::function<bool()>, boost::function<void()> > > LoadingQueue;
|
|
|
|
TRenderPair mountain;
|
|
Matrix4f mountainTransformation;
|
|
|
|
std::array<TTriangleList, 6> ices;
|
|
std::vector<TRenderParams> iceParams;
|
|
std::vector<Matrix4f> iceTransformations;
|
|
|
|
float WaterTimer;
|
|
float SnowTimer;
|
|
float CloudTimer;
|
|
float SkyTexShift;
|
|
bool WaveDir;
|
|
|
|
TAndroidApplication();
|
|
|
|
virtual void InnerInit();
|
|
void InnerReinitGLResources() override;
|
|
|
|
virtual void InnerDeinit();
|
|
|
|
virtual void InnerDraw();
|
|
|
|
virtual void InnerUpdate(size_t dt);
|
|
|
|
virtual void InnerOnMove(Vector2f pos, Vector2f shift) override;
|
|
|
|
virtual void OnMouseDown(TMouseState& mouseState);
|
|
|
|
bool IsInited() { return Inited; }
|
|
|
|
void DrawSceneWithoutWater(bool inv);
|
|
void DrawSnow();
|
|
void DrawAllScene(bool toScreen);
|
|
|
|
|
|
virtual void Serialize(boost::property_tree::ptree& propertyTree);
|
|
|
|
//void DrawSceneWithoutWaterFrame();
|
|
|
|
|
|
};
|
|
|
|
|
|
//static void checkGlError(const std::string& op);
|
|
|
|
|
|
#endif
|