#include "core/log.h" #include "client_file/api.h" #include "network/api.h" #include "replicate/api.h" #include "interface/module.h" #include "interface/server.h" #include "interface/event.h" #include "interface/mesh.h" #include "interface/voxel.h" #include #include #include #include #include #include #include #include #include #include #include #include #include namespace geometry { using interface::Event; using namespace Urho3D; namespace magic = Urho3D; struct Module: public interface::Module { interface::Server *m_server; uint m_slow_count = 0; sp_ m_atlas_reg; sp_ m_voxel_reg; Module(interface::Server *server): interface::Module("geometry"), m_server(server) { } ~Module() {} void init() { m_server->sub_event(this, Event::t("core:start")); m_server->sub_event(this, Event::t("core:continue")); m_server->sub_event(this, Event::t("core:tick")); m_server->sub_event(this, Event::t("client_file:files_transmitted")); m_server->access_scene([&](Scene *scene) { Context *context = scene->GetContext(); m_atlas_reg.reset(interface::createTextureAtlasRegistry(context)); m_voxel_reg.reset(interface::createVoxelRegistry(m_atlas_reg.get())); { interface::VoxelDefinition vdef; vdef.name.block_name = "air"; vdef.name.segment_x = 0; vdef.name.segment_y = 0; vdef.name.segment_z = 0; vdef.name.rotation_primary = 0; vdef.name.rotation_secondary = 0; vdef.handler_module = ""; for(size_t i = 0; i < 6; i++){ interface::AtlasSegmentDefinition &seg = vdef.textures[i]; seg.resource_name = ""; seg.total_segments = magic::IntVector2(0, 0); seg.select_segment = magic::IntVector2(0, 0); } vdef.edge_material_id = interface::EDGEMATERIALID_EMPTY; m_voxel_reg->add_voxel(vdef); // id 1 } { interface::VoxelDefinition vdef; vdef.name.block_name = "ground"; vdef.name.segment_x = 0; vdef.name.segment_y = 0; vdef.name.segment_z = 0; vdef.name.rotation_primary = 0; vdef.name.rotation_secondary = 0; vdef.handler_module = ""; for(size_t i = 0; i < 6; i++){ interface::AtlasSegmentDefinition &seg = vdef.textures[i]; seg.resource_name = "main/green_texture.png"; seg.total_segments = magic::IntVector2(1, 1); seg.select_segment = magic::IntVector2(0, 0); } vdef.edge_material_id = interface::EDGEMATERIALID_GROUND; vdef.physically_solid = true; m_voxel_reg->add_voxel(vdef); // id 2 } { interface::VoxelDefinition vdef; vdef.name.block_name = "testblock"; vdef.name.segment_x = 0; vdef.name.segment_y = 0; vdef.name.segment_z = 0; vdef.name.rotation_primary = 0; vdef.name.rotation_secondary = 0; vdef.handler_module = ""; for(size_t i = 0; i < 6; i++){ interface::AtlasSegmentDefinition &seg = vdef.textures[i]; seg.resource_name = "main/pink_texture.png"; seg.total_segments = magic::IntVector2(1, 1); seg.select_segment = magic::IntVector2(0, 0); } vdef.edge_material_id = interface::EDGEMATERIALID_GROUND; vdef.physically_solid = true; m_voxel_reg->add_voxel(vdef); // id 3 } }); } void event(const Event::Type &type, const Event::Private *p) { EVENT_VOIDN("core:start", on_start) EVENT_VOIDN("core:continue", on_continue) EVENT_TYPEN("core:tick", on_tick, interface::TickEvent) EVENT_TYPEN("client_file:files_transmitted", on_files_transmitted, client_file::FilesTransmitted) } void on_start() { m_server->access_scene([&](Scene *scene) { Context *context = scene->GetContext(); ResourceCache *cache = context->GetSubsystem(); { Node *node = scene->CreateChild("DirectionalLight"); node->SetDirection(Vector3(-0.6f, -1.0f, 0.8f)); Light *light = node->CreateComponent(); light->SetLightType(LIGHT_DIRECTIONAL); light->SetCastShadows(true); } { Node *n = scene->CreateChild("Base"); } { Node *n = scene->CreateChild("Testbox"); n->SetPosition(Vector3(0.0f, 6.0f, 0.0f)); n->SetScale(Vector3(1.0f, 1.0f, 1.0f)); /*int w = 1, h = 1, d = 1; ss_ data = "1";*/ int w = 2, h = 2, d = 1; ss_ data = "1333"; // Convert data to the actually usable voxel type id namespace // starting from VOXELTYPEID_UNDEFINED=0 for(size_t i = 0; i < data.size(); i++){ data[i] = data[i] - '0'; } // Crude way of dynamically defining a voxel model n->SetVar(StringHash("simple_voxel_data"), Variant( magic::String(data.c_str(), data.size()))); n->SetVar(StringHash("simple_voxel_w"), Variant(w)); n->SetVar(StringHash("simple_voxel_h"), Variant(h)); n->SetVar(StringHash("simple_voxel_d"), Variant(d)); // Load the same model in here and give it to the physics // subsystem so that it can be collided to SharedPtr model(interface:: create_8bit_voxel_physics_model(context, w, h, d, data, m_voxel_reg.get())); RigidBody *body = n->CreateComponent(); body->SetFriction(0.75f); body->SetMass(1.0); CollisionShape *shape = n->CreateComponent(); shape->SetConvexHull(model, 0, Vector3::ONE); //shape->SetTriangleMesh(model, 0, Vector3::ONE); //shape->SetBox(Vector3::ONE); } }); update_scene(); } void on_continue() { update_scene(); } void update_scene() { m_server->access_scene([&](Scene *scene) { Context *context = scene->GetContext(); ResourceCache *cache = context->GetSubsystem(); { Node *n = scene->GetChild("Base"); n->SetScale(Vector3(1.0f, 1.0f, 1.0f)); //n->SetPosition(Vector3(0.0f, 0.5f, 0.0f)); n->SetPosition(Vector3(0.0f, 0.5f, 0.0f)); //n->SetRotation(Quaternion(0, 90, 0)); int w = 10, h = 3, d = 10; ss_ data = "222222222211211111211111111111" "222222222211111111111111111111" "222222222211111111111111111111" "222222222211111111111111111111" "222222222211122111111112111111" "222233222211123111111112111111" "222233222211111111111111111111" "222222222211111111111111111111" "222222222211111111111111111111" "222222222211111111111111111111" ; // Convert data to the actually usable voxel type id namespace // starting from VOXELTYPEID_UNDEFINED=0 for(size_t i = 0; i < data.size(); i++){ data[i] = data[i] - '0'; } // Crude way of dynamically defining a voxel model n->SetVar(StringHash("simple_voxel_data"), Variant( magic::String(data.c_str(), data.size()))); n->SetVar(StringHash("simple_voxel_w"), Variant(w)); n->SetVar(StringHash("simple_voxel_h"), Variant(h)); n->SetVar(StringHash("simple_voxel_d"), Variant(d)); // Load the same model in here and give it to the physics // subsystem so that it can be collided to SharedPtr model(interface:: create_8bit_voxel_physics_model(context, w, h, d, data, m_voxel_reg.get())); RigidBody *body = n->CreateComponent(); body->SetFriction(0.75f); CollisionShape *shape = n->CreateComponent(); shape->SetTriangleMesh(model, 0, Vector3::ONE); } }); } void on_tick(const interface::TickEvent &event) { static uint a = 0; if(((a++) % 50) == 0){ m_server->access_scene([&](Scene *scene){ Node *n = scene->GetChild("Testbox"); //n->SetPosition(Vector3(0.0f, 8.0f, 0.0f)); n->SetRotation(Quaternion(30, 60, 90)); //n->SetPosition(Vector3(0.0f, 6.0f, 0.0f)); //n->SetPosition(Vector3(0.0f, 4.0f, 0.0f)); n->SetPosition(Vector3(-0.5f, 8.0f, 0.0f)); }); return; } } void on_files_transmitted(const client_file::FilesTransmitted &event) { network::access(m_server, [&](network::Interface *inetwork){ inetwork->send(event.recipient, "core:run_script", "buildat.run_script_file(\"main/init.lua\")"); }); } }; extern "C" { BUILDAT_EXPORT void* createModule_main(interface::Server *server){ return (void*)(new Module(server)); } } } // vim: set noet ts=4 sw=4: