Button test
This commit is contained in:
@ -16,7 +16,7 @@ namespace Dawn {
|
|||||||
*
|
*
|
||||||
* @param val Value that is to be used for this property.
|
* @param val Value that is to be used for this property.
|
||||||
*/
|
*/
|
||||||
void setInternal(V val) {
|
void setInternal(const V val) {
|
||||||
if(val == this->_realValue) return;// TODO: can I omit this? kinda bad tbh.
|
if(val == this->_realValue) return;// TODO: can I omit this? kinda bad tbh.
|
||||||
|
|
||||||
// Run the teardowns
|
// Run the teardowns
|
||||||
|
@ -22,9 +22,16 @@ namespace Dawn {
|
|||||||
*/
|
*/
|
||||||
static struct Color fromString(std::string str);
|
static struct Color fromString(std::string str);
|
||||||
|
|
||||||
|
|
||||||
float_t r, g, b, a;
|
float_t r, g, b, a;
|
||||||
|
|
||||||
|
const struct Color& operator = (const struct Color &val) {
|
||||||
|
this->r = val.r;
|
||||||
|
this->g = val.g;
|
||||||
|
this->b = val.b;
|
||||||
|
this->a = val.a;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
struct Color operator * (const float_t &x) {
|
struct Color operator * (const float_t &x) {
|
||||||
return {
|
return {
|
||||||
r * x,
|
r * x,
|
||||||
@ -52,6 +59,10 @@ namespace Dawn {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const bool_t operator == (const struct Color &other) {
|
||||||
|
return r == other.r && g == other.g && b == other.b && a == other.a;
|
||||||
|
}
|
||||||
|
|
||||||
operator struct ColorU8() const {
|
operator struct ColorU8() const {
|
||||||
return {
|
return {
|
||||||
(uint8_t)(r * 255),
|
(uint8_t)(r * 255),
|
||||||
|
@ -23,7 +23,6 @@ include(util/generator/CMakeLists.txt)
|
|||||||
|
|
||||||
# Tools
|
# Tools
|
||||||
add_subdirectory(prefabtool)
|
add_subdirectory(prefabtool)
|
||||||
add_subdirectory(propertytool)
|
|
||||||
add_subdirectory(scenetool)
|
add_subdirectory(scenetool)
|
||||||
add_subdirectory(texturetool)
|
add_subdirectory(texturetool)
|
||||||
add_subdirectory(truetypetool)
|
add_subdirectory(truetypetool)
|
||||||
|
@ -135,6 +135,18 @@ void SceneItemGenerator::generate(
|
|||||||
line(initBody, name + "->transform.setLocalPosition(" + item->position + ");", "");
|
line(initBody, name + "->transform.setLocalPosition(" + item->position + ");", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(item->alignment.size() > 0) {
|
||||||
|
line(initBody, name + "->uiItem->alignment = " + item->alignment + ";", "");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(item->menuX.size() > 0) {
|
||||||
|
line(initBody, name + "->menuItem->menuX = " + item->menuX + ";", "");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(item->menuY.size() > 0) {
|
||||||
|
line(initBody, name + "->menuItem->menuY = " + item->menuY + ";", "");
|
||||||
|
}
|
||||||
|
|
||||||
if(item->scale.size() > 0) {
|
if(item->scale.size() > 0) {
|
||||||
line(initBody, name + "->transform.setLocalScale(" + item->scale + ");", "");
|
line(initBody, name + "->transform.setLocalScale(" + item->scale + ");", "");
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,6 @@ set(
|
|||||||
${D}/SceneCodeParser.cpp
|
${D}/SceneCodeParser.cpp
|
||||||
${D}/SceneItemComponentParser.cpp
|
${D}/SceneItemComponentParser.cpp
|
||||||
${D}/SceneItemComponentRegistry.cpp
|
${D}/SceneItemComponentRegistry.cpp
|
||||||
${D}/ScenePropertyParser.cpp
|
|
||||||
|
|
||||||
CACHE INTERNAL
|
CACHE INTERNAL
|
||||||
${DAWN_CACHE_TARGET}
|
${DAWN_CACHE_TARGET}
|
||||||
|
@ -17,7 +17,10 @@ std::map<std::string, std::string> SceneItemParser::getOptionalAttributes() {
|
|||||||
{ "position", "" },
|
{ "position", "" },
|
||||||
{ "lookAt", "" },
|
{ "lookAt", "" },
|
||||||
{ "scale", "" },
|
{ "scale", "" },
|
||||||
{ "prefab", "" }
|
{ "prefab", "" },
|
||||||
|
{ "alignment", "" },
|
||||||
|
{ "menuX", "" },
|
||||||
|
{ "menuY", "" }
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -34,6 +37,21 @@ int32_t SceneItemParser::onParse(
|
|||||||
if(error->size() > 0) return 1;
|
if(error->size() > 0) return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(values["alignment"].size() > 0) {
|
||||||
|
out->alignment = vec4Parser(values["alignment"], error);
|
||||||
|
if(error->size() > 0) return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(values["menuX"].size() > 0) {
|
||||||
|
out->menuX = intParser(values["menuX"], error);
|
||||||
|
if(error->size() > 0) return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(values["menuY"].size() > 0) {
|
||||||
|
out->menuY = intParser(values["menuY"], error);
|
||||||
|
if(error->size() > 0) return 1;
|
||||||
|
}
|
||||||
|
|
||||||
if(values["scale"].size() > 0) {
|
if(values["scale"].size() > 0) {
|
||||||
out->scale = vec3Parser(values["scale"], error);
|
out->scale = vec3Parser(values["scale"], error);
|
||||||
if(error->size() > 0) return 1;
|
if(error->size() > 0) return 1;
|
||||||
|
@ -24,10 +24,13 @@ namespace Dawn {
|
|||||||
struct SceneItemComponentRegistry *registry;
|
struct SceneItemComponentRegistry *registry;
|
||||||
std::string ref;
|
std::string ref;
|
||||||
std::string position;
|
std::string position;
|
||||||
|
std::string alignment;
|
||||||
std::string lookAtPosition;
|
std::string lookAtPosition;
|
||||||
std::string lookAtTarget;
|
std::string lookAtTarget;
|
||||||
std::string scale;
|
std::string scale;
|
||||||
std::string prefab;
|
std::string prefab;
|
||||||
|
std::string menuX;
|
||||||
|
std::string menuY;
|
||||||
std::vector<struct SceneItemComponent> components;
|
std::vector<struct SceneItemComponent> components;
|
||||||
std::vector<struct SceneItem> children;
|
std::vector<struct SceneItem> children;
|
||||||
std::vector<struct SceneAsset> assets;
|
std::vector<struct SceneAsset> assets;
|
||||||
|
Reference in New Issue
Block a user