Compare commits

..

No commits in common. "master" and "v1.0.4" have entirely different histories.

4 changed files with 12 additions and 37 deletions

View File

@ -5,10 +5,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [1.0.5] - 2023-02-03
### Added
- Meta deterministic generation for authoring components
## [1.0.4] - 2023-01-27
### Added
- Support for `bhl_native_class` token

View File

@ -7,8 +7,7 @@
"twig/twig" : "v3.4.3",
"bit/metagen" : "^v2.0.2",
"bit/metagen_cs" : "^v1.0.5",
"bit/taskman_helpers" : "^v1.0.6",
"ramsey/uuid" : "^v3"
"bit/taskman_helpers" : "^v1.0.6"
},
"autoload": {
"files": [

View File

@ -1,8 +1,6 @@
<?php
namespace metagen_cs_ecs;
use Ramsey\Uuid\Uuid;
function supported_tokens()
{
return [
@ -96,7 +94,6 @@ function generate_ecs_components(\mtgMetaInfo $meta)
$unit_name = $unit->object->getName();
$filePath = str_replace(".", "/", $unit_name);
$file = "$gen_root/{$filePath}AuthoringComponent.cs";
$fileMeta = "$gen_root/{$filePath}AuthoringComponent.cs.meta";
$name_components = explode('.', $unit_name);
$class_name = end($name_components);
if($class_name != $unit_name)
@ -108,23 +105,17 @@ function generate_ecs_components(\mtgMetaInfo $meta)
if(empty($namespace))
$namespace = "ecs";
\taskman\ensure_write_if_differs(
$file,
$twig->render('codegen_ecs_authoring.twig', [
'namespace' => $namespace,
'class_name' => $class_name,
'obj' => $unit->object
])
);
$uuid = Uuid::uuid3(Uuid::NAMESPACE_URL, $file);
$guid = bin2hex($uuid->getBytes());
\taskman\ensure_write_if_differs(
$fileMeta,
$twig->render('codegen_ecs_authoring_meta.twig', [
'guid' => $guid,
])
);
if($unit->object->hasToken('ecs_gen_authoring'))
{
\taskman\ensure_write_if_differs(
$file,
$twig->render('codegen_ecs_authoring.twig', [
'namespace' => $namespace,
'class_name' => $class_name,
'obj' => $unit->object
])
);
}
}
}

View File

@ -1,11 +0,0 @@
fileFormatVersion: 2
guid: {{guid}}
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: