gunkiss/src/Pudding.hpp

97 lines
3.7 KiB
C++
Raw Normal View History

2021-05-07 21:26:44 -04:00
#ifndef Pudding_h_
#define Pudding_h_
#include <stdlib.h>
2021-05-07 21:26:44 -04:00
#include <string>
#include <iostream>
2021-08-02 20:15:30 -04:00
#include <algorithm>
#include <thread>
#include <memory>
#include <type_traits>
2021-05-07 21:26:44 -04:00
#include <filesystem>
#include <curl/curl.h>
#include "SDL.h"
2021-05-07 21:26:44 -04:00
#include "json/json.hpp"
#include "glm/vec2.hpp"
#include "opencv2/core.hpp"
#include "opencv2/videoio.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
#include "zbar.h"
2021-05-07 21:26:44 -04:00
#include "Game.hpp"
#include "Color.hpp"
#include "extension.hpp"
#include "Item.hpp"
#include "Animation.hpp"
2021-05-07 21:26:44 -04:00
class Pudding : public Game
2021-05-07 21:26:44 -04:00
{
private:
/* Defines for effect IDs that will be passed to the shader program. Since COUNT is last and every value
* is the default integer, it will define the number of effects available */
enum Effect
{
NONE,
SNAKE,
WOBBLE,
COUNT
};
typedef Game super;
2021-05-07 21:26:44 -04:00
const std::string OPEN_FOOD_API_URL = "https://world.openfoodfacts.org/api/v0/product/";
const std::string NUTRONIX_API_URL = "https://trackapi.nutritionix.com/v2/search/item?upc=";
const std::string BARCODE_MONSTER_API_URL = "https://barcode.monster/api/";
const std::string BEST_BUY_API_URL_1 = "https://api.bestbuy.com/v1/products(upc=";
const std::string BEST_BUY_API_URL_2 = ")?format=json&apiKey=";
const std::string NUTRONIX_NOT_FOUND = "resource not found";
const std::string GIANTBOMB_API_URL = "https://www.giantbomb.com/api/release/?api_key=";
2021-07-21 02:11:02 -04:00
const glm::vec3 ZERO_VECTOR_3D = glm::vec3(0, 0, 0);
const glm::vec3 Y_UNIT_NORMAL_3D = glm::vec3(0, 1, 0);
2021-08-07 01:05:55 -04:00
const glm::mat4 VIEW_MATRIX = glm::lookAt(glm::vec3(4, 2, 1), glm::vec3(0, -0.325, 0), Y_UNIT_NORMAL_3D);
2021-08-02 20:15:30 -04:00
const glm::vec3 PUDDING_BROWN = glm::vec3(0.713f, 0.359f, 0.224f);
const glm::vec3 PUDDING_YELLOW = glm::vec3(0.878f, 0.859f, 0.122f);
std::string current_barcode, previous_barcode, current_config_barcode, current_camera_barcode;
std::vector<Item> items;
int current_item_index = 0, effect_id = Effect::NONE, pudding_triangle_vertex_count = 0, pudding_fan_vertex_count = 0;
cv::VideoCapture capture;
zbar::ImageScanner image_scanner;
GLuint flat_program, mvp_program, capture_texture_front_buffer_id, capture_texture_back_buffer_id, capture_texture_id,
mvp_uniform_location, background_texture_id, time_uniform_location, effect_uniform_location;
2021-07-21 02:11:02 -04:00
glm::mat4 projection, model = glm::mat4(1.0f), mvp;
2021-08-07 01:05:55 -04:00
std::vector<glm::vec3> pudding_vertices, pudding_colors;
2021-09-01 00:08:45 -04:00
std::vector<glm::vec2> pudding_uv;
bool show_item = false, reading_capture_frame = false;
SDL_GLContext capture_frame_thread_context = nullptr;
2021-05-07 21:26:44 -04:00
2021-08-07 01:05:55 -04:00
void set_pudding_model(float, float, int, int = 1, float = -1, float = 1, float = 0.3f);
2021-07-02 22:51:59 -04:00
void load_gl_context();
2021-07-07 21:56:04 -04:00
void initialize_camera();
void incorporate_open_food_api(Item&);
void incorporate_nutronix_api(Item&);
2021-05-11 23:51:33 -04:00
void incorporate_edamam_api(Item&);
void incorporate_best_buy_api(Item&);
void save_item_json(const nlohmann::json&, const Item&, const std::string&) const;
nlohmann::json json_from_url(const std::string&, const std::vector<std::string>& = {});
void curl_get_bytes(const std::string& url, std::vector<std::uint8_t>&, const std::vector<std::string>& = {});
static size_t curl_write_response(std::uint8_t*, size_t, size_t, std::vector<std::uint8_t>*);
2021-07-07 20:16:58 -04:00
std::shared_ptr<GLuint> texture_from_image_url(const std::string&);
static void destroy_texture(GLuint*);
2021-09-06 22:12:23 -04:00
bool item_display_active() const;
static int capture_frame(void*);
public:
Pudding();
void respond(SDL_Event&);
void add_item(const std::string&);
2021-05-12 02:09:22 -04:00
void increment_item_index(int = 1);
Item& get_current_item();
2021-05-07 21:26:44 -04:00
void update();
2021-09-01 00:08:45 -04:00
virtual std::string class_name() const { return "Pudding"; }
2021-05-07 21:26:44 -04:00
};
#endif