Files
Owen/docs/module-factories.OwenSystemFactory.html
Kaj Kowalski f4e3d318ee
Some checks failed
CI/CD Pipeline / Test & Lint (16.x) (push) Has been cancelled
CI/CD Pipeline / Test & Lint (18.x) (push) Has been cancelled
CI/CD Pipeline / Test & Lint (20.x) (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Release (push) Has been cancelled
Add state handler implementations and documentation
- Implemented StateHandler class with methods for entering, exiting, and updating states.
- Created TypeStateHandler for handling typing state with appropriate animations and transitions.
- Developed WaitStateHandler for managing idle state with quirk animations.
- Added JSDoc documentation for all new classes and methods.
- Included CSS styles for documentation formatting and syntax highlighting.
2025-05-24 12:31:01 +02:00

456 lines
13 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>JSDoc: Class: OwenSystemFactory</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link
type="text/css"
rel="stylesheet"
href="styles/prettify-tomorrow.css"
/>
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css" />
</head>
<body>
<div id="main">
<h1 class="page-title">Class: OwenSystemFactory</h1>
<section>
<header>
<h2>
<span class="attribs"><span class="type-signature"></span></span>
<span class="ancestors"
><a href="module-factories.html">factories</a>.</span
>OwenSystemFactory<span class="signature">()</span
><span class="type-signature"></span>
</h2>
<div class="class-description">
<p>Main factory for creating the complete Owen animation system</p>
</div>
</header>
<article>
<div class="container-overview">
<h2>Constructor</h2>
<h4 class="name" id="OwenSystemFactory">
<span class="type-signature"></span>new OwenSystemFactory<span
class="signature"
>()</span
><span class="type-signature"></span>
</h4>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source">
<ul class="dummy">
<li>
<a href="factories_OwenSystemFactory.js.html"
>factories/OwenSystemFactory.js</a
>,
<a href="factories_OwenSystemFactory.js.html#line16"
>line 16</a
>
</li>
</ul>
</dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".createBasicOwenSystem">
<span class="type-signature">(async, static) </span
>createBasicOwenSystem<span class="signature">(model)</span
><span class="type-signature">
&rarr; {Promise.&lt;OwenAnimationContext>}</span
>
</h4>
<div class="description">
<p>Create a basic Owen system with minimal configuration</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>model</code></td>
<td class="type">
<span class="param-type">THREE.Object3D</span>
</td>
<td class="description last"><p>The 3D model</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source">
<ul class="dummy">
<li>
<a href="factories_OwenSystemFactory.js.html"
>factories/OwenSystemFactory.js</a
>,
<a href="factories_OwenSystemFactory.js.html#line63"
>line 63</a
>
</li>
</ul>
</dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>The configured Owen system</p>
</div>
<dl>
<dt>Type</dt>
<dd>
<span class="param-type">Promise.&lt;OwenAnimationContext></span>
</dd>
</dl>
<h4 class="name" id=".createCustomOwenSystem">
<span class="type-signature">(async, static) </span
>createCustomOwenSystem<span class="signature"
>(gltfModel, scene, customStates)</span
><span class="type-signature">
&rarr; {Promise.&lt;OwenAnimationContext>}</span
>
</h4>
<div class="description">
<p>Create an Owen system with custom state handlers</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>gltfModel</code></td>
<td class="type">
<span class="param-type">THREE.Object3D</span>
</td>
<td class="description last"><p>The loaded GLTF model</p></td>
</tr>
<tr>
<td class="name"><code>scene</code></td>
<td class="type">
<span class="param-type">THREE.Scene</span>
</td>
<td class="description last"><p>The Three.js scene</p></td>
</tr>
<tr>
<td class="name"><code>customStates</code></td>
<td class="type">
<span class="param-type">Map.&lt;string, function()></span>
</td>
<td class="description last">
<p>Map of state name to handler class</p>
</td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source">
<ul class="dummy">
<li>
<a href="factories_OwenSystemFactory.js.html"
>factories/OwenSystemFactory.js</a
>,
<a href="factories_OwenSystemFactory.js.html#line77"
>line 77</a
>
</li>
</ul>
</dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>The configured Owen system</p>
</div>
<dl>
<dt>Type</dt>
<dd>
<span class="param-type">Promise.&lt;OwenAnimationContext></span>
</dd>
</dl>
<h4 class="name" id=".createOwenSystem">
<span class="type-signature">(async, static) </span
>createOwenSystem<span class="signature"
>(gltfModel, scene, options<span class="signature-attributes"
>opt</span
>)</span
><span class="type-signature">
&rarr; {Promise.&lt;OwenAnimationContext>}</span
>
</h4>
<div class="description">
<p>Create a complete Owen animation system</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Attributes</th>
<th>Default</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>gltfModel</code></td>
<td class="type">
<span class="param-type">THREE.Object3D</span>
</td>
<td class="attributes"></td>
<td class="default"></td>
<td class="description last"><p>The loaded GLTF model</p></td>
</tr>
<tr>
<td class="name"><code>scene</code></td>
<td class="type">
<span class="param-type">THREE.Scene</span>
</td>
<td class="attributes"></td>
<td class="default"></td>
<td class="description last"><p>The Three.js scene</p></td>
</tr>
<tr>
<td class="name"><code>options</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="attributes">&lt;optional><br /></td>
<td class="default">{}</td>
<td class="description last">
<p>Configuration options</p>
<h6>Properties</h6>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Attributes</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>gltfLoader</code></td>
<td class="type">
<span class="param-type">THREE.GLTFLoader</span>
</td>
<td class="attributes">&lt;optional><br /></td>
<td class="description last">
<p>Custom GLTF loader</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source">
<ul class="dummy">
<li>
<a href="factories_OwenSystemFactory.js.html"
>factories/OwenSystemFactory.js</a
>,
<a href="factories_OwenSystemFactory.js.html#line25"
>line 25</a
>
</li>
</ul>
</dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>The configured Owen system</p>
</div>
<dl>
<dt>Type</dt>
<dd>
<span class="param-type">Promise.&lt;OwenAnimationContext></span>
</dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2>
<h3>Modules</h3>
<ul>
<li><a href="module-StateHandler.html">StateHandler</a></li>
<li><a href="module-animation.html">animation</a></li>
<li>
<a href="module-animation_AnimationConstants.html"
>animation/AnimationConstants</a
>
</li>
<li>
<a href="module-animation_AnimationNameMapper.html"
>animation/AnimationNameMapper</a
>
</li>
<li><a href="module-constants.html">constants</a></li>
<li><a href="module-core.html">core</a></li>
<li><a href="module-factories.html">factories</a></li>
<li><a href="module-loaders.html">loaders</a></li>
<li><a href="module-owen.html">owen</a></li>
<li><a href="module-states.html">states</a></li>
</ul>
<h3>Classes</h3>
<ul>
<li>
<a href="module-StateHandler.StateHandler.html">StateHandler</a>
</li>
<li><a href="module-animation.AnimationClip.html">AnimationClip</a></li>
<li>
<a href="module-animation.AnimationClipFactory.html"
>AnimationClipFactory</a
>
</li>
<li>
<a
href="module-animation_AnimationNameMapper.AnimationNameMapper.html"
>AnimationNameMapper</a
>
</li>
<li>
<a href="module-core.OwenAnimationContext.html"
>OwenAnimationContext</a
>
</li>
<li>
<a href="module-factories.OwenSystemFactory.html"
>OwenSystemFactory</a
>
</li>
<li>
<a href="module-loaders.AnimationLoader.html">AnimationLoader</a>
</li>
<li>
<a href="module-loaders.GLTFAnimationLoader.html"
>GLTFAnimationLoader</a
>
</li>
<li>
<a href="module-states.ReactStateHandler.html">ReactStateHandler</a>
</li>
<li>
<a href="module-states.SleepStateHandler.html">SleepStateHandler</a>
</li>
<li><a href="module-states.StateFactory.html">StateFactory</a></li>
<li>
<a href="module-states.TypeStateHandler.html">TypeStateHandler</a>
</li>
<li>
<a href="module-states.WaitStateHandler.html">WaitStateHandler</a>
</li>
</ul>
</nav>
<br class="clear" />
<footer>
Documentation generated by
<a href="https://github.com/jsdoc/jsdoc">JSDoc 4.0.4</a> on Sat May 24
2025 12:29:38 GMT+0200 (Midden-Europese zomertijd)
</footer>
<script>
prettyPrint();
</script>
<script src="scripts/linenumber.js"></script>
</body>
</html>