summaryrefslogtreecommitdiff
path: root/src/candy_gear/static_model.cpp
diff options
context:
space:
mode:
authorFrederico Linhares <fred@linhares.blue>2024-12-31 12:32:36 -0300
committerFrederico Linhares <fred@linhares.blue>2024-12-31 19:03:51 -0300
commit736637680ac7b2cd0d0b878401a7e044fde0ee6a (patch)
treebf4feaf3f3f0e48207bf7a31ad8bcbff0f244091 /src/candy_gear/static_model.cpp
parent083e64da1d4b5b68579288bc1690ca90d3f0a2c0 (diff)
refa Split BluCat into several namespacesHEADmaster
Diffstat (limited to 'src/candy_gear/static_model.cpp')
-rw-r--r--src/candy_gear/static_model.cpp134
1 files changed, 134 insertions, 0 deletions
diff --git a/src/candy_gear/static_model.cpp b/src/candy_gear/static_model.cpp
new file mode 100644
index 0000000..1a6eabe
--- /dev/null
+++ b/src/candy_gear/static_model.cpp
@@ -0,0 +1,134 @@
+/*
+ * Copyright 2022-2024 Frederico de Oliveira Linhares
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "static_model.hpp"
+
+#include "orientation_3d.hpp"
+#include "static_mesh.hpp"
+#include "texture.hpp"
+#include "vector_3d.hpp"
+#include "../blu_cat/gra/static_model.hpp"
+
+void
+cg_free_static_model(mrb_state *mrb, void *obj)
+{
+ auto ptr = static_cast<std::shared_ptr<BluCat::GRA::StaticModel>*>(obj);
+
+ ptr->~shared_ptr();
+ mrb_free(mrb, ptr);
+}
+
+const struct mrb_data_type cg_static_model_type = {
+ "CG_StaticModel", cg_free_static_model };
+
+static mrb_value
+cg_cStaticModel_initialize(mrb_state *mrb, mrb_value self)
+{
+ std::shared_ptr<BluCat::GRA::StaticMesh> *static_mesh;
+ std::shared_ptr<BluCat::GRA::Texture> *texture;
+ std::shared_ptr<glm::vec3> *position;
+ std::shared_ptr<glm::quat> *orientation;
+ std::shared_ptr<BluCat::GRA::StaticModel> *ptr;
+
+ mrb_get_args(
+ mrb, "dddd", &static_mesh, &cg_static_mesh_type, &texture,
+ &cg_texture_type, &position, &cg_vector_3d_type, &orientation,
+ &cg_orientation_3d_type);
+ ptr = (std::shared_ptr<BluCat::GRA::StaticModel>*)DATA_PTR(self);
+ if(ptr) mrb_free(mrb, ptr);
+ ptr = (std::shared_ptr<BluCat::GRA::StaticModel>*)mrb_malloc(
+ mrb, sizeof(std::shared_ptr<BluCat::GRA::StaticModel>));
+
+ new(ptr)std::shared_ptr<BluCat::GRA::StaticModel>(
+ std::make_shared<BluCat::GRA::StaticModel>(
+ *static_mesh, *texture, *position, *orientation));
+
+ mrb_data_init(self, ptr, &cg_static_model_type);
+ return self;
+}
+
+static mrb_value
+cg_cStaticModel_set_orientation(mrb_state *mrb, mrb_value self)
+{
+ auto ptr = (std::shared_ptr<BluCat::GRA::StaticModel>*)DATA_PTR(self);
+ std::shared_ptr<glm::quat> *orientation;
+
+ mrb_get_args(mrb, "d", &orientation, &cg_orientation_3d_type);
+ (*ptr)->orientation = *orientation;
+
+ return self;
+}
+
+static mrb_value
+cg_cStaticModel_set_position(mrb_state *mrb, mrb_value self)
+{
+ auto ptr = (std::shared_ptr<BluCat::GRA::StaticModel>*)DATA_PTR(self);
+ std::shared_ptr<glm::vec3> *position;
+
+ mrb_get_args(mrb, "d", &position, &cg_vector_3d_type);
+ (*ptr)->position = *position;
+
+ return self;
+}
+
+static mrb_value
+cg_cStaticModel_set_texture(mrb_state *mrb, mrb_value self)
+{
+ auto ptr = (std::shared_ptr<BluCat::GRA::StaticModel>*)DATA_PTR(self);
+ std::shared_ptr<BluCat::GRA::Texture> *texture;
+
+ mrb_get_args(mrb, "d", &texture, &cg_texture_type);
+ (*ptr)->texture = *texture;
+
+ return self;
+}
+
+static mrb_value
+cg_cStaticModel_draw(mrb_state *mrb, mrb_value self)
+{
+ auto ptr = (std::shared_ptr<BluCat::GRA::StaticModel>*)DATA_PTR(self);
+
+ auto &instances = BluCat::INT::core.vk_renderer->static_models_to_draw[
+ BluCat::INT::core.vk_swapchain->current_frame][(*ptr)->static_mesh];
+ instances.push_back(*ptr);
+
+ return self;
+}
+
+void
+cg_static_model_init(mrb_state *mrb)
+{
+ struct RClass *cg_m, *cg_cStaticModel;
+
+ cg_m = mrb_module_get(mrb, "CandyGear");
+ cg_cStaticModel = mrb_define_class_under(
+ mrb, cg_m, "StaticModel", mrb->object_class);
+ MRB_SET_INSTANCE_TT(cg_cStaticModel, MRB_TT_DATA);
+ mrb_define_method(
+ mrb, cg_cStaticModel, "initialize", cg_cStaticModel_initialize,
+ MRB_ARGS_REQ(4));
+ mrb_define_method(
+ mrb, cg_cStaticModel, "position=", cg_cStaticModel_set_position,
+ MRB_ARGS_REQ(1));
+ mrb_define_method(
+ mrb, cg_cStaticModel, "orientation=", cg_cStaticModel_set_orientation,
+ MRB_ARGS_REQ(1));
+ mrb_define_method(
+ mrb, cg_cStaticModel, "texture=", cg_cStaticModel_set_texture,
+ MRB_ARGS_REQ(1));
+ mrb_define_method(
+ mrb, cg_cStaticModel, "draw", cg_cStaticModel_draw, MRB_ARGS_NONE());
+}