82 lines
3.0 KiB
C++
82 lines
3.0 KiB
C++
#include "behavior.h"
|
|
|
|
#include <uf/utils/hook/hook.h>
|
|
#include <uf/utils/time/time.h>
|
|
#include <uf/utils/serialize/serializer.h>
|
|
#include <uf/utils/userdata/userdata.h>
|
|
#include <uf/utils/window/window.h>
|
|
#include <uf/utils/window/payloads.h>
|
|
#include <uf/utils/camera/camera.h>
|
|
#include <uf/utils/audio/audio.h>
|
|
#include <uf/ext/openvr/openvr.h>
|
|
#include <uf/engine/graph/graph.h>
|
|
#include <uf/engine/asset/asset.h>
|
|
#include <uf/utils/math/physics.h>
|
|
#include <uf/spec/controller/controller.h>
|
|
#include <uf/utils/graphic/graphic.h>
|
|
#include <uf/utils/io/inputs.h>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
UF_BEHAVIOR_REGISTER_CPP(ext::CraetureBehavior)
|
|
UF_BEHAVIOR_TRAITS_CPP(ext::CraetureBehavior, ticks = true, renders = false, multithread = false)
|
|
#define this (&self)
|
|
namespace {
|
|
void load( uf::Object& self, const uf::Image& image ) {
|
|
auto& graphic = self.getComponent<uf::Graphic>();
|
|
auto& texture = graphic.material.textures.emplace_back();
|
|
texture.loadFromImage( image );
|
|
|
|
auto& mesh = self.getComponent<uf::Mesh>();
|
|
mesh.bindIndirect<pod::DrawCommand>();
|
|
mesh.bind<uf::graph::mesh::Base, uint16_t>();
|
|
|
|
float scaleX = 1;
|
|
float scaleY = 1;
|
|
|
|
mesh.insertVertices<uf::graph::mesh::Base>({
|
|
{ {-1.0f * scaleX, 1.0f * scaleY, 0.0f}, {0.0f, 1.0f}, {}, {0.0f, 1.0f}, {0.0f, 0.0f, -1.0f} },
|
|
{ {-1.0f * scaleX, -1.0f * scaleY, 0.0f}, {0.0f, 0.0f}, {}, {0.0f, 0.0f}, {0.0f, 0.0f, -1.0f} },
|
|
{ {1.0f * scaleX, -1.0f * scaleY, 0.0f}, {1.0f, 0.0f}, {}, {1.0f, 0.0f}, {0.0f, 0.0f, -1.0f} },
|
|
{ {1.0f * scaleX, 1.0f * scaleY, 0.0f}, {1.0f, 1.0f}, {}, {1.0f, 1.0f}, {0.0f, 0.0f, -1.0f}, }
|
|
});
|
|
mesh.insertIndices<uint16_t>({
|
|
0, 1, 2, 2, 3, 0
|
|
});
|
|
|
|
uf::graph::convert( self );
|
|
}
|
|
}
|
|
void ext::CraetureBehavior::initialize( uf::Object& self ) {
|
|
/*
|
|
this->addHook( "asset:Load.%UID%", [&](pod::payloads::assetLoad& payload){
|
|
if ( !uf::asset::isExpected( payload, uf::asset::Type::IMAGE ) ) return;
|
|
if ( !uf::asset::has( payload ) ) uf::asset::load( payload );
|
|
const auto& image = uf::asset::get<uf::Image>( payload );
|
|
|
|
::load( self, image );
|
|
});
|
|
*/
|
|
|
|
auto& metadata = this->getComponent<ext::CraetureBehavior::Metadata>();
|
|
auto& metadataJson = this->getComponent<uf::Serializer>();
|
|
|
|
UF_BEHAVIOR_METADATA_BIND_SERIALIZER_HOOKS(metadata, metadataJson);
|
|
}
|
|
void ext::CraetureBehavior::tick( uf::Object& self ) {
|
|
auto& metadata = this->getComponent<ext::CraetureBehavior::Metadata>();
|
|
|
|
if ( this->hasComponent<pod::Graph>() ) {
|
|
auto& graph = this->getComponent<pod::Graph>();
|
|
pod::payloads::QueueAnimationPayload payload;
|
|
payload.name = metadata.animation;
|
|
this->queueHook("animation:Set.%UID%", payload);
|
|
metadata.animation = "";
|
|
}
|
|
}
|
|
void ext::CraetureBehavior::render( uf::Object& self ){}
|
|
void ext::CraetureBehavior::destroy( uf::Object& self ){}
|
|
void ext::CraetureBehavior::Metadata::serialize( uf::Object& self, uf::Serializer& serializer ){}
|
|
void ext::CraetureBehavior::Metadata::deserialize( uf::Object& self, uf::Serializer& serializer ){}
|
|
#undef this |