]> git.localhorst.tv Git - blank.git/blobdiff - src/app/app.cpp
unified location handling
[blank.git] / src / app / app.cpp
index f3c9115faedf3b50c96002efe1c231ee0e0547ed..35a3e3e8d37ada79dc8327160adfe1b4072838fa 100644 (file)
@@ -8,32 +8,55 @@
 #include "init.hpp"
 #include "../audio/Sound.hpp"
 #include "../graphics/ArrayTexture.hpp"
+#include "../graphics/CubeMap.hpp"
 #include "../graphics/Font.hpp"
 #include "../graphics/Texture.hpp"
+#include "../io/TokenStreamReader.hpp"
+#include "../model/bounds.hpp"
+#include "../model/Model.hpp"
+#include "../model/ModelRegistry.hpp"
+#include "../model/Shape.hpp"
+#include "../model/ShapeRegistry.hpp"
+#include "../shared/ResourceIndex.hpp"
 #include "../world/BlockType.hpp"
+#include "../world/BlockTypeRegistry.hpp"
 #include "../world/Entity.hpp"
 
+#include <fstream>
+#include <iomanip>
 #include <iostream>
 #include <stdexcept>
 #include <SDL_image.h>
 
+using std::runtime_error;
 using std::string;
 
 
 namespace blank {
 
-Application::Application(Environment &e)
+HeadlessApplication::HeadlessApplication(HeadlessEnvironment &e)
 : env(e)
 , states() {
 
 }
 
+HeadlessApplication::~HeadlessApplication() {
+
+}
+
+
+Application::Application(Environment &e)
+: HeadlessApplication(e)
+, env(e) {
+
+}
+
 Application::~Application() {
        env.audio.StopAll();
 }
 
 
-void Application::RunN(size_t n) {
+void HeadlessApplication::RunN(size_t n) {
        Uint32 last = SDL_GetTicks();
        for (size_t i = 0; HasState() && i < n; ++i) {
                Uint32 now = SDL_GetTicks();
@@ -43,7 +66,7 @@ void Application::RunN(size_t n) {
        }
 }
 
-void Application::RunT(size_t t) {
+void HeadlessApplication::RunT(size_t t) {
        Uint32 last = SDL_GetTicks();
        Uint32 finish = last + t;
        while (HasState() && last < finish) {
@@ -54,16 +77,21 @@ void Application::RunT(size_t t) {
        }
 }
 
-void Application::RunS(size_t n, size_t t) {
+void HeadlessApplication::RunS(size_t n, size_t t) {
        for (size_t i = 0; HasState() && i < n; ++i) {
                Loop(t);
+               std::cout << '.';
+               if (i % 16 == 15) {
+                       std::cout << std::setfill(' ') << std::setw(5) << std::right << (i + 1) << std::endl;
+               } else {
+                       std::cout << std::flush;
+               }
        }
 }
 
 
-void Application::Run() {
+void HeadlessApplication::Run() {
        Uint32 last = SDL_GetTicks();
-       env.window.GrabMouse();
        while (HasState()) {
                Uint32 now = SDL_GetTicks();
                int delta = now - last;
@@ -72,33 +100,55 @@ void Application::Run() {
        }
 }
 
+void HeadlessApplication::Loop(int dt) {
+       env.counter.EnterFrame();
+       HandleEvents();
+       if (!HasState()) return;
+       Update(dt);
+       CommitStates();
+       if (!HasState()) return;
+       env.counter.ExitFrame();
+}
+
 void Application::Loop(int dt) {
        env.counter.EnterFrame();
        HandleEvents();
        if (!HasState()) return;
        Update(dt);
-       env.state.Commit(*this);
+       CommitStates();
        if (!HasState()) return;
        Render();
        env.counter.ExitFrame();
 }
 
 
+void HeadlessApplication::HandleEvents() {
+       env.counter.EnterHandle();
+       SDL_Event event;
+       while (HasState() && SDL_PollEvent(&event)) {
+               Handle(event);
+               CommitStates();
+       }
+       env.counter.ExitHandle();
+}
+
+void HeadlessApplication::Handle(const SDL_Event &event) {
+       GetState().Handle(event);
+}
+
+
 void Application::HandleEvents() {
        env.counter.EnterHandle();
        SDL_Event event;
        while (HasState() && SDL_PollEvent(&event)) {
                Handle(event);
-               env.state.Commit(*this);
+               CommitStates();
        }
        env.counter.ExitHandle();
 }
 
 void Application::Handle(const SDL_Event &event) {
        switch (event.type) {
-               case SDL_QUIT:
-                       env.state.PopAll();
-                       break;
                case SDL_WINDOWEVENT:
                        Handle(event.window);
                        break;
@@ -111,21 +161,31 @@ void Application::Handle(const SDL_Event &event) {
 void Application::Handle(const SDL_WindowEvent &event) {
        switch (event.event) {
                case SDL_WINDOWEVENT_FOCUS_GAINED:
-                       env.window.GrabMouse();
+                       GetState().OnFocus();
                        break;
                case SDL_WINDOWEVENT_FOCUS_LOST:
-                       env.window.ReleaseMouse();
+                       GetState().OnBlur();
                        break;
                case SDL_WINDOWEVENT_RESIZED:
                        env.viewport.Resize(event.data1, event.data2);
+                       GetState().OnResize(env.viewport);
                        break;
                default:
                        break;
        }
 }
 
+void HeadlessApplication::Update(int dt) {
+       env.counter.EnterUpdate();
+       if (HasState()) {
+               GetState().Update(dt);
+       }
+       env.counter.ExitUpdate();
+}
+
 void Application::Update(int dt) {
        env.counter.EnterUpdate();
+       env.audio.Update(dt);
        if (HasState()) {
                GetState().Update(dt);
        }
@@ -147,32 +207,59 @@ void Application::Render() {
 }
 
 
-void Application::PushState(State *s) {
+void HeadlessApplication::PushState(State *s) {
+       if (!states.empty()) {
+               states.top()->OnPause();
+       }
        states.emplace(s);
+       ++s->ref_count;
+       if (s->ref_count == 1) {
+               s->OnEnter();
+       }
+       s->OnResume();
 }
 
-State *Application::PopState() {
+State *HeadlessApplication::PopState() {
        State *s = states.top();
        states.pop();
+       s->OnPause();
+       s->OnExit();
+       if (!states.empty()) {
+               states.top()->OnResume();
+       }
        return s;
 }
 
-State *Application::SwitchState(State *s_new) {
+State *HeadlessApplication::SwitchState(State *s_new) {
        State *s_old = states.top();
        states.top() = s_new;
+       --s_old->ref_count;
+       ++s_new->ref_count;
+       s_old->OnPause();
+       if (s_old->ref_count == 0) {
+               s_old->OnExit();
+       }
+       if (s_new->ref_count == 1) {
+               s_new->OnEnter();
+       }
+       s_new->OnResume();
        return s_old;
 }
 
-State &Application::GetState() {
+State &HeadlessApplication::GetState() {
        return *states.top();
 }
 
-bool Application::HasState() const noexcept {
+void HeadlessApplication::CommitStates() {
+       env.state.Commit(*this);
+}
+
+bool HeadlessApplication::HasState() const noexcept {
        return !states.empty();
 }
 
 
-void StateControl::Commit(Application &app) {
+void StateControl::Commit(HeadlessApplication &app) {
        while (!cue.empty()) {
                Memo m(cue.front());
                cue.pop();
@@ -191,29 +278,296 @@ void StateControl::Commit(Application &app) {
                                        app.PopState();
                                }
                                break;
+                       case POP_AFTER:
+                               while (app.HasState() && &app.GetState() != m.state) {
+                                       app.PopState();
+                               }
+                               break;
+                       case POP_UNTIL:
+                               while (app.HasState()) {
+                                       if (app.PopState() == m.state) {
+                                               break;
+                                       }
+                               }
                }
        }
 }
 
 
-Assets::Assets(const string &base)
+AssetLoader::AssetLoader(const string &base)
 : fonts(base + "fonts/")
 , sounds(base + "sounds/")
-, textures(base + "textures/") {
+, textures(base + "textures/")
+, data(base + "data/") {
+
+}
+
+Assets::Assets(const AssetLoader &loader)
+: large_ui_font(loader.LoadFont("DejaVuSans", 24))
+, small_ui_font(loader.LoadFont("DejaVuSans", 16)) {
+
+}
+
+namespace {
+
+CuboidBounds block_shape({{ -0.5f, -0.5f, -0.5f }, { 0.5f, 0.5f, 0.5f }});
+StairBounds stair_shape({{ -0.5f, -0.5f, -0.5f }, { 0.5f, 0.5f, 0.5f }}, { 0.0f, 0.0f });
+CuboidBounds slab_shape({{ -0.5f, -0.5f, -0.5f }, { 0.5f, 0.0f, 0.5f }});
+
+}
+
+void AssetLoader::LoadBlockTypes(
+       const string &set_name,
+       BlockTypeRegistry &reg,
+       ResourceIndex &snd_index,
+       ResourceIndex &tex_index,
+       const ShapeRegistry &shapes
+) const {
+       string full = data + set_name + ".types";
+       std::ifstream file(full);
+       if (!file) {
+               throw std::runtime_error("failed to open block type file " + full);
+       }
+       TokenStreamReader in(file);
+       string type_name;
+       string name;
+       string tex_name;
+       string shape_name;
+       while (in.HasMore()) {
+               in.ReadIdentifier(type_name);
+               in.Skip(Token::EQUALS);
+               BlockType type;
+
+               // read block type
+               in.Skip(Token::ANGLE_BRACKET_OPEN);
+               while (in.Peek().type != Token::ANGLE_BRACKET_CLOSE) {
+                       in.ReadIdentifier(name);
+                       in.Skip(Token::EQUALS);
+                       if (name == "visible") {
+                               type.visible = in.GetBool();
+                       } else if (name == "texture") {
+                               in.ReadString(tex_name);
+                               type.textures.push_back(tex_index.GetID(tex_name));
+                       } else if (name == "textures") {
+                               in.Skip(Token::BRACKET_OPEN);
+                               while (in.Peek().type != Token::BRACKET_CLOSE) {
+                                       in.ReadString(tex_name);
+                                       type.textures.push_back(tex_index.GetID(tex_name));
+                                       if (in.Peek().type == Token::COMMA) {
+                                               in.Skip(Token::COMMA);
+                                       }
+                               }
+                               in.Skip(Token::BRACKET_CLOSE);
+                       } else if (name == "rgb_mod") {
+                               in.ReadVec(type.rgb_mod);
+                       } else if (name == "hsl_mod") {
+                               in.ReadVec(type.hsl_mod);
+                       } else if (name == "outline") {
+                               in.ReadVec(type.outline_color);
+                       } else if (name == "label") {
+                               in.ReadString(type.label);
+                       } else if (name == "place_sound") {
+                               in.ReadString(tex_name);
+                               type.place_sound = snd_index.GetID(tex_name);
+                       } else if (name == "remove_sound") {
+                               in.ReadString(tex_name);
+                               type.remove_sound = snd_index.GetID(tex_name);
+                       } else if (name == "luminosity") {
+                               type.luminosity = in.GetInt();
+                       } else if (name == "block_light") {
+                               type.block_light = in.GetBool();
+                       } else if (name == "collision") {
+                               type.collision = in.GetBool();
+                       } else if (name == "collide_block") {
+                               type.collide_block = in.GetBool();
+                       } else if (name == "generate") {
+                               type.generate = in.GetBool();
+                       } else if (name == "min_solidity") {
+                               type.min_solidity = in.GetFloat();
+                       } else if (name == "mid_solidity") {
+                               type.mid_solidity = in.GetFloat();
+                       } else if (name == "max_solidity") {
+                               type.max_solidity = in.GetFloat();
+                       } else if (name == "min_humidity") {
+                               type.min_humidity = in.GetFloat();
+                       } else if (name == "mid_humidity") {
+                               type.mid_humidity = in.GetFloat();
+                       } else if (name == "max_humidity") {
+                               type.max_humidity = in.GetFloat();
+                       } else if (name == "min_temperature") {
+                               type.min_temperature = in.GetFloat();
+                       } else if (name == "mid_temperature") {
+                               type.mid_temperature = in.GetFloat();
+                       } else if (name == "max_temperature") {
+                               type.max_temperature = in.GetFloat();
+                       } else if (name == "min_richness") {
+                               type.min_richness = in.GetFloat();
+                       } else if (name == "mid_richness") {
+                               type.mid_richness = in.GetFloat();
+                       } else if (name == "max_richness") {
+                               type.max_richness = in.GetFloat();
+                       } else if (name == "commonness") {
+                               type.commonness = in.GetFloat();
+                       } else if (name == "shape") {
+                               in.ReadIdentifier(shape_name);
+                               type.shape = &shapes.Get(shape_name);
+                       } else {
+                               std::cerr << "warning: unknown block type property " << name << std::endl;
+                               while (in.Peek().type != Token::SEMICOLON) {
+                                       in.Next();
+                               }
+                       }
+                       in.Skip(Token::SEMICOLON);
+               }
+               in.Skip(Token::ANGLE_BRACKET_CLOSE);
+               in.Skip(Token::SEMICOLON);
 
+               reg.Add(type);
+       }
 }
 
-Font Assets::LoadFont(const string &name, int size) const {
+CubeMap AssetLoader::LoadCubeMap(const string &name) const {
+       string full = textures + name;
+       string right = full + "-right.png";
+       string left = full + "-left.png";
+       string top = full + "-top.png";
+       string bottom = full + "-bottom.png";
+       string back = full + "-back.png";
+       string front = full + "-front.png";
+
+       CubeMap cm;
+       cm.Bind();
+       SDL_Surface *srf;
+
+       if (!(srf = IMG_Load(right.c_str()))) throw SDLError("IMG_Load");
+       try {
+               cm.Data(CubeMap::RIGHT, *srf);
+       } catch (...) {
+               SDL_FreeSurface(srf);
+               throw;
+       }
+       SDL_FreeSurface(srf);
+
+       if (!(srf = IMG_Load(left.c_str()))) throw SDLError("IMG_Load");
+       try {
+               cm.Data(CubeMap::LEFT, *srf);
+       } catch (...) {
+               SDL_FreeSurface(srf);
+               throw;
+       }
+       SDL_FreeSurface(srf);
+
+       if (!(srf = IMG_Load(top.c_str()))) throw SDLError("IMG_Load");
+       try {
+               cm.Data(CubeMap::TOP, *srf);
+       } catch (...) {
+               SDL_FreeSurface(srf);
+               throw;
+       }
+       SDL_FreeSurface(srf);
+
+       if (!(srf = IMG_Load(bottom.c_str()))) throw SDLError("IMG_Load");
+       try {
+               cm.Data(CubeMap::BOTTOM, *srf);
+       } catch (...) {
+               SDL_FreeSurface(srf);
+               throw;
+       }
+       SDL_FreeSurface(srf);
+
+       if (!(srf = IMG_Load(back.c_str()))) throw SDLError("IMG_Load");
+       try {
+               cm.Data(CubeMap::BACK, *srf);
+       } catch (...) {
+               SDL_FreeSurface(srf);
+               throw;
+       }
+       SDL_FreeSurface(srf);
+
+       if (!(srf = IMG_Load(front.c_str()))) throw SDLError("IMG_Load");
+       try {
+               cm.Data(CubeMap::FRONT, *srf);
+       } catch (...) {
+               SDL_FreeSurface(srf);
+               throw;
+       }
+       SDL_FreeSurface(srf);
+
+       cm.FilterNearest();
+       cm.WrapEdge();
+
+       return cm;
+}
+
+Font AssetLoader::LoadFont(const string &name, int size) const {
        string full = fonts + name + ".ttf";
        return Font(full.c_str(), size);
 }
 
-Sound Assets::LoadSound(const string &name) const {
+void AssetLoader::LoadModels(
+       const string &set_name,
+       ModelRegistry &models,
+       ResourceIndex &tex_index,
+       const ShapeRegistry &shapes
+) const {
+       string full = data + set_name + ".models";
+       std::ifstream file(full);
+       if (!file) {
+               throw std::runtime_error("failed to open model file " + full);
+       }
+       TokenStreamReader in(file);
+       string model_name;
+       string prop_name;
+       while (in.HasMore()) {
+               in.ReadIdentifier(model_name);
+               in.Skip(Token::EQUALS);
+               in.Skip(Token::ANGLE_BRACKET_OPEN);
+               Model &model = models.Add(model_name);
+               while (in.HasMore() && in.Peek().type != Token::ANGLE_BRACKET_CLOSE) {
+                       in.ReadIdentifier(prop_name);
+                       in.Skip(Token::EQUALS);
+                       if (prop_name == "root") {
+                               model.RootPart().Read(in, tex_index, shapes);
+                       } else if (prop_name == "body") {
+                               model.SetBody(in.GetULong());
+                       } else if (prop_name == "eyes") {
+                               model.SetEyes(in.GetULong());
+                       } else {
+                               while (in.HasMore() && in.Peek().type != Token::SEMICOLON) {
+                                       in.Next();
+                               }
+                       }
+                       in.Skip(Token::SEMICOLON);
+               }
+               model.Enumerate();
+               in.Skip(Token::ANGLE_BRACKET_CLOSE);
+               in.Skip(Token::SEMICOLON);
+       }
+}
+
+void AssetLoader::LoadShapes(const string &set_name, ShapeRegistry &shapes) const {
+       string full = data + set_name + ".shapes";
+       std::ifstream file(full);
+       if (!file) {
+               throw std::runtime_error("failed to open shape file " + full);
+       }
+       TokenStreamReader in(file);
+       string shape_name;
+       while (in.HasMore()) {
+               in.ReadIdentifier(shape_name);
+               in.Skip(Token::EQUALS);
+               Shape &shape = shapes.Add(shape_name);
+               shape.Read(in);
+               in.Skip(Token::SEMICOLON);
+       }
+}
+
+Sound AssetLoader::LoadSound(const string &name) const {
        string full = sounds + name + ".wav";
        return Sound(full.c_str());
 }
 
-Texture Assets::LoadTexture(const string &name) const {
+Texture AssetLoader::LoadTexture(const string &name) const {
        string full = textures + name + ".png";
        Texture tex;
        SDL_Surface *srf = IMG_Load(full.c_str());
@@ -226,7 +580,7 @@ Texture Assets::LoadTexture(const string &name) const {
        return tex;
 }
 
-void Assets::LoadTexture(const string &name, ArrayTexture &tex, int layer) const {
+void AssetLoader::LoadTexture(const string &name, ArrayTexture &tex, int layer) const {
        string full = textures + name + ".png";
        SDL_Surface *srf = IMG_Load(full.c_str());
        if (!srf) {
@@ -242,6 +596,14 @@ void Assets::LoadTexture(const string &name, ArrayTexture &tex, int layer) const
        SDL_FreeSurface(srf);
 }
 
+void AssetLoader::LoadTextures(const ResourceIndex &index, ArrayTexture &tex) const {
+       // TODO: where the hell should that size come from?
+       tex.Reserve(16, 16, index.Size(), Format());
+       for (const auto &entry : index.Entries()) {
+               LoadTexture(entry.first, tex, entry.second);
+       }
+}
+
 
 void FrameCounter::EnterFrame() noexcept {
        last_enter = SDL_GetTicks();