felflame 1.0.1 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -2
- data/.ruby-version +1 -0
- data/CHANGELOG.mdown +60 -5
- data/Gemfile +2 -3
- data/Gemfile.lock +4 -4
- data/README.mdown +127 -74
- data/Rakefile +30 -10
- data/bin/console +3 -3
- data/docs/FelFlame/ComponentManager.html +131 -519
- data/docs/FelFlame/Components.html +29 -119
- data/docs/FelFlame/Entities.html +125 -387
- data/docs/FelFlame/Order.html +251 -0
- data/docs/FelFlame/Scenes.html +72 -68
- data/docs/FelFlame/Stage.html +30 -56
- data/docs/FelFlame/Systems.html +208 -244
- data/docs/FelFlame.html +34 -32
- data/docs/Felflame_.html +143 -0
- data/docs/_index.html +24 -4
- data/docs/class_list.html +1 -1
- data/docs/file.README.html +145 -83
- data/docs/file.version.html +74 -0
- data/docs/index.html +145 -83
- data/docs/method_list.html +52 -108
- data/docs/top-level-namespace.html +5 -5
- data/felflame.gemspec +22 -22
- data/lib/felflame/component_manager.rb +99 -71
- data/lib/felflame/entity_manager.rb +84 -59
- data/lib/felflame/order.rb +24 -0
- data/lib/felflame/scene_manager.rb +23 -12
- data/lib/felflame/stage_manager.rb +10 -33
- data/lib/felflame/system_manager.rb +92 -47
- data/lib/felflame/version.rb +5 -1
- data/lib/felflame.rb +23 -15
- metadata +34 -53
- data/.yardopts +0 -13
- data/codeclimate/env.rb +0 -1
- data/codeclimate/export-coverage.rb +0 -16
- data/codeclimate/test-reporter-latest-linux-amd64 +0 -0
- data/deprecated/components/00_renderable.rb +0 -19
- data/deprecated/components/01_sprite.rb +0 -57
- data/deprecated/components/02_label.rb +0 -32
- data/deprecated/components/03_player_control.rb +0 -26
- data/deprecated/components/04_map.rb +0 -21
- data/deprecated/components/05_interactable.rb +0 -16
- data/deprecated/components/06_collidable.rb +0 -22
- data/deprecated/components/07_battle.rb +0 -4
- data/deprecated/components/07_indoor.rb +0 -4
- data/deprecated/components/07_overworld.rb +0 -16
- data/deprecated/components/debug_singleton.rb +0 -13
- data/deprecated/helpers/00_tileset.rb +0 -56
- data/deprecated/helpers/01_component.rb +0 -74
- data/deprecated/systems/00_update_levels.rb +0 -34
- data/deprecated/systems/10_player.rb +0 -41
- data/deprecated/systems/99_render.rb +0 -37
- data/logos/felflame-logo-text.png +0 -0
- data/logos/felflame-logo-text.svg +0 -172
- data/logos/felflame-logo.png +0 -0
- data/logos/felflame-logo.svg +0 -97
@@ -37,7 +37,7 @@
|
|
37
37
|
<div id="menu">
|
38
38
|
|
39
39
|
<a href="../_index.html">Index (C)</a> »
|
40
|
-
<span class='title'><span class='object_link'><a href="../FelFlame.html" title="FelFlame (
|
40
|
+
<span class='title'><span class='object_link'><a href="../FelFlame.html" title="FelFlame (module)">FelFlame</a></span></span>
|
41
41
|
»
|
42
42
|
<span class="title">ComponentManager</span>
|
43
43
|
|
@@ -94,7 +94,7 @@
|
|
94
94
|
|
95
95
|
<dl>
|
96
96
|
<dt>Defined in:</dt>
|
97
|
-
<dd>component_manager.rb</dd>
|
97
|
+
<dd>lib/felflame/component_manager.rb</dd>
|
98
98
|
</dl>
|
99
99
|
|
100
100
|
</div>
|
@@ -102,7 +102,7 @@
|
|
102
102
|
<h2>Overview</h2><div class="docstring">
|
103
103
|
<div class="discussion">
|
104
104
|
|
105
|
-
<p>Component Managers are what is used to create individual components which can be attached to entities. When a Component is created from a Component Manager that has accessors given to it, you can set or get the values of those accessors using standard ruby message sending (e.g <tt>@component.var = 5</tt>), or by using the <span class='object_link'><a href="#
|
105
|
+
<p>Component Managers are what is used to create individual components which can be attached to entities. When a Component is created from a Component Manager that has accessors given to it, you can set or get the values of those accessors using standard ruby message sending (e.g <tt>@component.var = 5</tt>), or by using the <span class='object_link'><a href="#to_h-instance_method" title="FelFlame::ComponentManager#to_h (method)">#to_h</a></span> and <span class='object_link'><a href="#update_attrs-instance_method" title="FelFlame::ComponentManager#update_attrs (method)">#update_attrs</a></span> methods instead.</p>
|
106
106
|
|
107
107
|
|
108
108
|
</div>
|
@@ -264,35 +264,6 @@
|
|
264
264
|
<p>Stores references to systems that should be triggered when an attribute from this manager is changed.</p>
|
265
265
|
</div></span>
|
266
266
|
|
267
|
-
</li>
|
268
|
-
|
269
|
-
|
270
|
-
<li class="public ">
|
271
|
-
<span class="summary_signature">
|
272
|
-
|
273
|
-
<a href="#id-instance_method" title="#id (instance method)">#<strong>id</strong> ⇒ Integer </a>
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
</span>
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
<span class="note title readonly">readonly</span>
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
<span class="summary_desc"><div class='inline'>
|
293
|
-
<p>Holds the <span class='object_link'><a href="#id-instance_method" title="FelFlame::ComponentManager#id (method)">unique ID</a></span> of a component.</p>
|
294
|
-
</div></span>
|
295
|
-
|
296
267
|
</li>
|
297
268
|
|
298
269
|
|
@@ -331,63 +302,6 @@
|
|
331
302
|
|
332
303
|
|
333
304
|
|
334
|
-
<h2>
|
335
|
-
Class Method Summary
|
336
|
-
<small><a href="#" class="summary_toggle">collapse</a></small>
|
337
|
-
</h2>
|
338
|
-
|
339
|
-
<ul class="summary">
|
340
|
-
|
341
|
-
<li class="public ">
|
342
|
-
<span class="summary_signature">
|
343
|
-
|
344
|
-
<a href="#[]-class_method" title="[] (class method)">.<strong>[]</strong>(component_id) ⇒ Component </a>
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
</span>
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
<span class="summary_desc"><div class='inline'>
|
359
|
-
<p>Gets a Component from the given <span class='object_link'><a href="#id-instance_method" title="FelFlame::ComponentManager#id (method)">unique ID</a></span>.</p>
|
360
|
-
</div></span>
|
361
|
-
|
362
|
-
</li>
|
363
|
-
|
364
|
-
|
365
|
-
<li class="public ">
|
366
|
-
<span class="summary_signature">
|
367
|
-
|
368
|
-
<a href="#each-class_method" title="each (class method)">.<strong>each</strong>(&block) ⇒ Enumerator </a>
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
</span>
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
<span class="summary_desc"><div class='inline'>
|
383
|
-
<p>Iterates over all components within the component manager.</p>
|
384
|
-
</div></span>
|
385
|
-
|
386
|
-
</li>
|
387
|
-
|
388
|
-
|
389
|
-
</ul>
|
390
|
-
|
391
305
|
<h2>
|
392
306
|
Instance Method Summary
|
393
307
|
<small><a href="#" class="summary_toggle">collapse</a></small>
|
@@ -398,31 +312,7 @@
|
|
398
312
|
<li class="public ">
|
399
313
|
<span class="summary_signature">
|
400
314
|
|
401
|
-
<a href="#
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
</span>
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
<span class="summary_desc"><div class='inline'>
|
416
|
-
<p>Execute systems that have been added to execute on variable change.</p>
|
417
|
-
</div></span>
|
418
|
-
|
419
|
-
</li>
|
420
|
-
|
421
|
-
|
422
|
-
<li class="public ">
|
423
|
-
<span class="summary_signature">
|
424
|
-
|
425
|
-
<a href="#attrs-instance_method" title="#attrs (instance method)">#<strong>attrs</strong> ⇒ Hash<Symbol, Value> </a>
|
315
|
+
<a href="#delete-instance_method" title="#delete (instance method)">#<strong>delete</strong> ⇒ Boolean </a>
|
426
316
|
|
427
317
|
|
428
318
|
|
@@ -437,7 +327,7 @@
|
|
437
327
|
|
438
328
|
|
439
329
|
<span class="summary_desc"><div class='inline'>
|
440
|
-
<p>
|
330
|
+
<p>Removes this component from the list and purges all references to this Component from other Entities, as well as its data.</p>
|
441
331
|
</div></span>
|
442
332
|
|
443
333
|
</li>
|
@@ -446,7 +336,7 @@
|
|
446
336
|
<li class="public ">
|
447
337
|
<span class="summary_signature">
|
448
338
|
|
449
|
-
<a href="#
|
339
|
+
<a href="#entities-instance_method" title="#entities (instance method)">#<strong>entities</strong> ⇒ Array<Component> </a>
|
450
340
|
|
451
341
|
|
452
342
|
|
@@ -461,7 +351,7 @@
|
|
461
351
|
|
462
352
|
|
463
353
|
<span class="summary_desc"><div class='inline'>
|
464
|
-
<p>
|
354
|
+
<p>Entities that have this component.</p>
|
465
355
|
</div></span>
|
466
356
|
|
467
357
|
</li>
|
@@ -470,7 +360,7 @@
|
|
470
360
|
<li class="public ">
|
471
361
|
<span class="summary_signature">
|
472
362
|
|
473
|
-
<a href="#
|
363
|
+
<a href="#entity-instance_method" title="#entity (instance method)">#<strong>entity</strong> ⇒ Component </a>
|
474
364
|
|
475
365
|
|
476
366
|
|
@@ -485,7 +375,7 @@
|
|
485
375
|
|
486
376
|
|
487
377
|
<span class="summary_desc"><div class='inline'>
|
488
|
-
<p>A
|
378
|
+
<p>A single entity.</p>
|
489
379
|
</div></span>
|
490
380
|
|
491
381
|
</li>
|
@@ -520,7 +410,7 @@
|
|
520
410
|
<li class="public ">
|
521
411
|
<span class="summary_signature">
|
522
412
|
|
523
|
-
<a href="#
|
413
|
+
<a href="#to_h-instance_method" title="#to_h (instance method)">#<strong>to_h</strong> ⇒ Hash<Symbol, Value> </a>
|
524
414
|
|
525
415
|
|
526
416
|
|
@@ -535,7 +425,7 @@
|
|
535
425
|
|
536
426
|
|
537
427
|
<span class="summary_desc"><div class='inline'>
|
538
|
-
<p>
|
428
|
+
<p>A hash, where all the keys are attributes storing their respective values.</p>
|
539
429
|
</div></span>
|
540
430
|
|
541
431
|
</li>
|
@@ -617,47 +507,37 @@
|
|
617
507
|
<pre class="lines">
|
618
508
|
|
619
509
|
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
114
|
635
|
-
115
|
636
|
-
116
|
637
|
-
117
|
638
|
-
118</pre>
|
510
|
+
132
|
511
|
+
133
|
512
|
+
134
|
513
|
+
135
|
514
|
+
136
|
515
|
+
137
|
516
|
+
138
|
517
|
+
139
|
518
|
+
140
|
519
|
+
141
|
520
|
+
142
|
521
|
+
143
|
522
|
+
144
|
523
|
+
145</pre>
|
639
524
|
</td>
|
640
525
|
<td>
|
641
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
526
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 132</span>
|
642
527
|
|
643
528
|
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='op'>**</span><span class='id identifier rubyid_attrs'>attrs</span><span class='rparen'>)</span>
|
644
529
|
<span class='comment'># Prepare the object
|
645
530
|
</span> <span class='comment'># (this is a function created with metaprogramming
|
646
|
-
</span> <span class='comment'># in FelFlame::Components
|
531
|
+
</span> <span class='comment'># in FelFlame::Components)
|
647
532
|
</span> <span class='id identifier rubyid_set_defaults'>set_defaults</span>
|
648
533
|
|
649
|
-
<span class='comment'># Generate ID
|
650
|
-
</span> <span class='id identifier rubyid_new_id'>new_id</span> <span class='op'>=</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='period'>.</span><span class='id identifier rubyid_data'>data</span><span class='period'>.</span><span class='id identifier rubyid_find_index'>find_index</span> <span class='lbrace'>{</span> <span class='op'>|</span><span class='id identifier rubyid_i'>i</span><span class='op'>|</span> <span class='id identifier rubyid_i'>i</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span> <span class='rbrace'>}</span>
|
651
|
-
<span class='id identifier rubyid_new_id'>new_id</span> <span class='op'>=</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='period'>.</span><span class='id identifier rubyid_data'>data</span><span class='period'>.</span><span class='id identifier rubyid_size'>size</span> <span class='kw'>if</span> <span class='id identifier rubyid_new_id'>new_id</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span>
|
652
|
-
<span class='ivar'>@id</span> <span class='op'>=</span> <span class='id identifier rubyid_new_id'>new_id</span>
|
653
|
-
|
654
534
|
<span class='comment'># Fill params
|
655
535
|
</span> <span class='id identifier rubyid_attrs'>attrs</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_key'>key</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span><span class='op'>|</span>
|
656
536
|
<span class='id identifier rubyid_send'>send</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_key'>key</span><span class='embexpr_end'>}</span><span class='tstring_content'>=</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span>
|
657
537
|
<span class='kw'>end</span>
|
658
538
|
|
659
539
|
<span class='comment'># Save Component
|
660
|
-
</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='period'>.</span><span class='id identifier
|
540
|
+
</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='period'>.</span><span class='id identifier rubyid_push'>push</span> <span class='kw'>self</span>
|
661
541
|
<span class='kw'>end</span></pre>
|
662
542
|
</td>
|
663
543
|
</tr>
|
@@ -710,12 +590,12 @@
|
|
710
590
|
<pre class="lines">
|
711
591
|
|
712
592
|
|
713
|
-
|
714
|
-
|
715
|
-
|
593
|
+
180
|
594
|
+
181
|
595
|
+
182</pre>
|
716
596
|
</td>
|
717
597
|
<td>
|
718
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
598
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 180</span>
|
719
599
|
|
720
600
|
<span class='kw'>def</span> <span class='id identifier rubyid_addition_triggers'>addition_triggers</span>
|
721
601
|
<span class='ivar'>@addition_triggers</span> <span class='op'>||=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
|
@@ -766,12 +646,12 @@
|
|
766
646
|
<pre class="lines">
|
767
647
|
|
768
648
|
|
769
|
-
|
770
|
-
|
771
|
-
|
649
|
+
196
|
650
|
+
197
|
651
|
+
198</pre>
|
772
652
|
</td>
|
773
653
|
<td>
|
774
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
654
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 196</span>
|
775
655
|
|
776
656
|
<span class='kw'>def</span> <span class='id identifier rubyid_attr_triggers'>attr_triggers</span>
|
777
657
|
<span class='ivar'>@attr_triggers</span> <span class='op'>||=</span> <span class='lbrace'>{</span><span class='rbrace'>}</span>
|
@@ -822,12 +702,12 @@
|
|
822
702
|
<pre class="lines">
|
823
703
|
|
824
704
|
|
825
|
-
|
826
|
-
|
827
|
-
|
705
|
+
188
|
706
|
+
189
|
707
|
+
190</pre>
|
828
708
|
</td>
|
829
709
|
<td>
|
830
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
710
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 188</span>
|
831
711
|
|
832
712
|
<span class='kw'>def</span> <span class='id identifier rubyid_removal_triggers'>removal_triggers</span>
|
833
713
|
<span class='ivar'>@removal_triggers</span> <span class='op'>||=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
|
@@ -883,12 +763,12 @@
|
|
883
763
|
<pre class="lines">
|
884
764
|
|
885
765
|
|
886
|
-
|
887
|
-
|
888
|
-
|
766
|
+
109
|
767
|
+
110
|
768
|
+
111</pre>
|
889
769
|
</td>
|
890
770
|
<td>
|
891
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
771
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 109</span>
|
892
772
|
|
893
773
|
<span class='kw'>def</span> <span class='id identifier rubyid_addition_triggers'>addition_triggers</span>
|
894
774
|
<span class='ivar'>@addition_triggers</span> <span class='op'>||=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
|
@@ -939,12 +819,12 @@
|
|
939
819
|
<pre class="lines">
|
940
820
|
|
941
821
|
|
942
|
-
|
943
|
-
|
944
|
-
|
822
|
+
125
|
823
|
+
126
|
824
|
+
127</pre>
|
945
825
|
</td>
|
946
826
|
<td>
|
947
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
827
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 125</span>
|
948
828
|
|
949
829
|
<span class='kw'>def</span> <span class='id identifier rubyid_attr_triggers'>attr_triggers</span>
|
950
830
|
<span class='ivar'>@attr_triggers</span> <span class='op'>||=</span> <span class='lbrace'>{</span><span class='rbrace'>}</span>
|
@@ -955,62 +835,6 @@
|
|
955
835
|
</div>
|
956
836
|
|
957
837
|
|
958
|
-
<span id="id=-instance_method"></span>
|
959
|
-
<div class="method_details ">
|
960
|
-
<h3 class="signature " id="id-instance_method">
|
961
|
-
|
962
|
-
#<strong>id</strong> ⇒ <tt>Integer</tt>
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
</h3><div class="docstring">
|
969
|
-
<div class="discussion">
|
970
|
-
|
971
|
-
<p>Holds the <span class='object_link'><a href="#id-instance_method" title="FelFlame::ComponentManager#id (method)">unique ID</a></span> of a component. The <span class='object_link'><a href="#id-instance_method" title="FelFlame::ComponentManager#id (method)">ID</a></span> is only unique within the scope of the component manager it was created from.</p>
|
972
|
-
|
973
|
-
|
974
|
-
</div>
|
975
|
-
</div>
|
976
|
-
<div class="tags">
|
977
|
-
|
978
|
-
<p class="tag_title">Returns:</p>
|
979
|
-
<ul class="return">
|
980
|
-
|
981
|
-
<li>
|
982
|
-
|
983
|
-
|
984
|
-
<span class='type'>(<tt>Integer</tt>)</span>
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
</li>
|
989
|
-
|
990
|
-
</ul>
|
991
|
-
|
992
|
-
</div><table class="source_code">
|
993
|
-
<tr>
|
994
|
-
<td>
|
995
|
-
<pre class="lines">
|
996
|
-
|
997
|
-
|
998
|
-
59
|
999
|
-
60
|
1000
|
-
61</pre>
|
1001
|
-
</td>
|
1002
|
-
<td>
|
1003
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line 59</span>
|
1004
|
-
|
1005
|
-
<span class='kw'>def</span> <span class='id identifier rubyid_id'>id</span>
|
1006
|
-
<span class='ivar'>@id</span>
|
1007
|
-
<span class='kw'>end</span></pre>
|
1008
|
-
</td>
|
1009
|
-
</tr>
|
1010
|
-
</table>
|
1011
|
-
</div>
|
1012
|
-
|
1013
|
-
|
1014
838
|
<span id="removal_triggers=-instance_method"></span>
|
1015
839
|
<div class="method_details ">
|
1016
840
|
<h3 class="signature " id="removal_triggers-instance_method">
|
@@ -1051,12 +875,12 @@
|
|
1051
875
|
<pre class="lines">
|
1052
876
|
|
1053
877
|
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
878
|
+
117
|
879
|
+
118
|
880
|
+
119</pre>
|
1057
881
|
</td>
|
1058
882
|
<td>
|
1059
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
883
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 117</span>
|
1060
884
|
|
1061
885
|
<span class='kw'>def</span> <span class='id identifier rubyid_removal_triggers'>removal_triggers</span>
|
1062
886
|
<span class='ivar'>@removal_triggers</span> <span class='op'>||=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
|
@@ -1069,157 +893,14 @@
|
|
1069
893
|
</div>
|
1070
894
|
|
1071
895
|
|
1072
|
-
<div id="class_method_details" class="method_details_list">
|
1073
|
-
<h2>Class Method Details</h2>
|
1074
|
-
|
1075
|
-
|
1076
|
-
<div class="method_details first">
|
1077
|
-
<h3 class="signature first" id="[]-class_method">
|
1078
|
-
|
1079
|
-
.<strong>[]</strong>(component_id) ⇒ <tt>Component</tt>
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
</h3><div class="docstring">
|
1086
|
-
<div class="discussion">
|
1087
|
-
|
1088
|
-
<p>Gets a Component from the given <span class='object_link'><a href="#id-instance_method" title="FelFlame::ComponentManager#id (method)">unique ID</a></span>. Usage is simular to how an Array lookup works.</p>
|
1089
|
-
|
1090
|
-
|
1091
|
-
</div>
|
1092
|
-
</div>
|
1093
|
-
<div class="tags">
|
1094
|
-
|
1095
|
-
<div class="examples">
|
1096
|
-
<p class="tag_title">Examples:</p>
|
1097
|
-
|
1098
|
-
|
1099
|
-
<pre class="example code"><code><span class='comment'># this gets the 'Health' Component with ID 7
|
1100
|
-
</span><span class='const'><span class='object_link'><a href="../FelFlame.html" title="FelFlame (class)">FelFlame</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Components.html" title="FelFlame::Components (class)">Components</a></span></span><span class='op'>::</span><span class='const'>Health</span><span class='lbracket'>[</span><span class='int'>7</span><span class='rbracket'>]</span></code></pre>
|
1101
|
-
|
1102
|
-
</div>
|
1103
|
-
<p class="tag_title">Parameters:</p>
|
1104
|
-
<ul class="param">
|
1105
|
-
|
1106
|
-
<li>
|
1107
|
-
|
1108
|
-
<span class='name'>component_id</span>
|
1109
|
-
|
1110
|
-
|
1111
|
-
<span class='type'>(<tt>Integer</tt>)</span>
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
</li>
|
1116
|
-
|
1117
|
-
</ul>
|
1118
|
-
|
1119
|
-
<p class="tag_title">Returns:</p>
|
1120
|
-
<ul class="return">
|
1121
|
-
|
1122
|
-
<li>
|
1123
|
-
|
1124
|
-
|
1125
|
-
<span class='type'>(<tt>Component</tt>)</span>
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
—
|
1130
|
-
<div class='inline'>
|
1131
|
-
<p>Returns the Component that uses the given unique <span class='object_link'><a href="#id-instance_method" title="FelFlame::ComponentManager#id (method)">ID</a></span>, nil if there is no Component associated with the given <span class='object_link'><a href="#id-instance_method" title="FelFlame::ComponentManager#id (method)">ID</a></span></p>
|
1132
|
-
</div>
|
1133
|
-
|
1134
|
-
</li>
|
1135
|
-
|
1136
|
-
</ul>
|
1137
|
-
|
1138
|
-
</div><table class="source_code">
|
1139
|
-
<tr>
|
1140
|
-
<td>
|
1141
|
-
<pre class="lines">
|
1142
|
-
|
1143
|
-
|
1144
|
-
165
|
1145
|
-
166
|
1146
|
-
167</pre>
|
1147
|
-
</td>
|
1148
|
-
<td>
|
1149
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line 165</span>
|
1150
|
-
|
1151
|
-
<span class='kw'>def</span> <span class='op'>[]</span><span class='lparen'>(</span><span class='id identifier rubyid_component_id'>component_id</span><span class='rparen'>)</span>
|
1152
|
-
<span class='id identifier rubyid_data'>data</span><span class='lbracket'>[</span><span class='id identifier rubyid_component_id'>component_id</span><span class='rbracket'>]</span>
|
1153
|
-
<span class='kw'>end</span></pre>
|
1154
|
-
</td>
|
1155
|
-
</tr>
|
1156
|
-
</table>
|
1157
|
-
</div>
|
1158
|
-
|
1159
|
-
<div class="method_details ">
|
1160
|
-
<h3 class="signature " id="each-class_method">
|
1161
|
-
|
1162
|
-
.<strong>each</strong>(&block) ⇒ <tt>Enumerator</tt>
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
</h3><div class="docstring">
|
1169
|
-
<div class="discussion">
|
1170
|
-
|
1171
|
-
<p>Iterates over all components within the component manager. Special Enumerable methods like <code>map</code> or <code>each_with_index</code> are not implemented</p>
|
1172
|
-
|
1173
|
-
|
1174
|
-
</div>
|
1175
|
-
</div>
|
1176
|
-
<div class="tags">
|
1177
|
-
|
1178
|
-
<p class="tag_title">Returns:</p>
|
1179
|
-
<ul class="return">
|
1180
|
-
|
1181
|
-
<li>
|
1182
|
-
|
1183
|
-
|
1184
|
-
<span class='type'>(<tt>Enumerator</tt>)</span>
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
</li>
|
1189
|
-
|
1190
|
-
</ul>
|
1191
|
-
|
1192
|
-
</div><table class="source_code">
|
1193
|
-
<tr>
|
1194
|
-
<td>
|
1195
|
-
<pre class="lines">
|
1196
|
-
|
1197
|
-
|
1198
|
-
172
|
1199
|
-
173
|
1200
|
-
174</pre>
|
1201
|
-
</td>
|
1202
|
-
<td>
|
1203
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line 172</span>
|
1204
|
-
|
1205
|
-
<span class='kw'>def</span> <span class='id identifier rubyid_each'>each</span><span class='lparen'>(</span><span class='op'>&</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
|
1206
|
-
<span class='id identifier rubyid_data'>data</span><span class='period'>.</span><span class='id identifier rubyid_compact'>compact</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span><span class='lparen'>(</span><span class='op'>&</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
|
1207
|
-
<span class='kw'>end</span></pre>
|
1208
|
-
</td>
|
1209
|
-
</tr>
|
1210
|
-
</table>
|
1211
|
-
</div>
|
1212
|
-
|
1213
|
-
</div>
|
1214
|
-
|
1215
896
|
<div id="instance_method_details" class="method_details_list">
|
1216
897
|
<h2>Instance Method Details</h2>
|
1217
898
|
|
1218
899
|
|
1219
900
|
<div class="method_details first">
|
1220
|
-
<h3 class="signature first" id="
|
901
|
+
<h3 class="signature first" id="delete-instance_method">
|
1221
902
|
|
1222
|
-
#<strong>
|
903
|
+
#<strong>delete</strong> ⇒ <tt>Boolean</tt>
|
1223
904
|
|
1224
905
|
|
1225
906
|
|
@@ -1228,7 +909,7 @@
|
|
1228
909
|
</h3><div class="docstring">
|
1229
910
|
<div class="discussion">
|
1230
911
|
|
1231
|
-
<p>
|
912
|
+
<p>Removes this component from the list and purges all references to this Component from other Entities, as well as its data.</p>
|
1232
913
|
|
1233
914
|
|
1234
915
|
</div>
|
@@ -1247,7 +928,7 @@
|
|
1247
928
|
|
1248
929
|
—
|
1249
930
|
<div class='inline'>
|
1250
|
-
<p><code>true</code
|
931
|
+
<p><code>true</code>.</p>
|
1251
932
|
</div>
|
1252
933
|
|
1253
934
|
</li>
|
@@ -1260,26 +941,34 @@
|
|
1260
941
|
<pre class="lines">
|
1261
942
|
|
1262
943
|
|
1263
|
-
|
1264
|
-
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
944
|
+
247
|
945
|
+
248
|
946
|
+
249
|
947
|
+
250
|
948
|
+
251
|
949
|
+
252
|
950
|
+
253
|
951
|
+
254
|
952
|
+
255
|
953
|
+
256
|
954
|
+
257
|
955
|
+
258
|
956
|
+
259</pre>
|
1272
957
|
</td>
|
1273
958
|
<td>
|
1274
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
1275
|
-
|
1276
|
-
<span class='kw'>def</span> <span class='id identifier rubyid_attr_changed_trigger_systems'>attr_changed_trigger_systems</span><span class='lparen'>(</span><span class='id identifier rubyid_attr'>attr</span><span class='rparen'>)</span>
|
1277
|
-
<span class='id identifier rubyid_systems_to_execute'>systems_to_execute</span> <span class='op'>=</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='period'>.</span><span class='id identifier rubyid_attr_triggers'>attr_triggers</span><span class='lbracket'>[</span><span class='id identifier rubyid_attr'>attr</span><span class='rbracket'>]</span>
|
1278
|
-
<span class='id identifier rubyid_systems_to_execute'>systems_to_execute</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span> <span class='kw'>if</span> <span class='id identifier rubyid_systems_to_execute'>systems_to_execute</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span>
|
959
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 247</span>
|
1279
960
|
|
1280
|
-
|
1281
|
-
|
1282
|
-
|
961
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_delete'>delete</span>
|
962
|
+
<span class='id identifier rubyid_addition_triggers'>addition_triggers</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_system'>system</span><span class='op'>|</span>
|
963
|
+
<span class='id identifier rubyid_system'>system</span><span class='period'>.</span><span class='id identifier rubyid_clear_triggers'>clear_triggers</span> <span class='label'>component_or_manager:</span> <span class='kw'>self</span>
|
964
|
+
<span class='kw'>end</span>
|
965
|
+
<span class='id identifier rubyid_entities'>entities</span><span class='period'>.</span><span class='id identifier rubyid_reverse_each'>reverse_each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_entity'>entity</span><span class='op'>|</span>
|
966
|
+
<span class='id identifier rubyid_entity'>entity</span><span class='period'>.</span><span class='id identifier rubyid_remove'>remove</span> <span class='kw'>self</span>
|
967
|
+
<span class='kw'>end</span>
|
968
|
+
<span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='period'>.</span><span class='id identifier rubyid__data'>_data</span><span class='period'>.</span><span class='id identifier rubyid_delete'>delete</span> <span class='kw'>self</span>
|
969
|
+
<span class='id identifier rubyid_instance_variables'>instance_variables</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_var'>var</span><span class='op'>|</span>
|
970
|
+
<span class='id identifier rubyid_instance_variable_set'>instance_variable_set</span><span class='lparen'>(</span><span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='kw'>nil</span><span class='rparen'>)</span>
|
971
|
+
<span class='kw'>end</span>
|
1283
972
|
<span class='kw'>true</span>
|
1284
973
|
<span class='kw'>end</span></pre>
|
1285
974
|
</td>
|
@@ -1288,9 +977,9 @@
|
|
1288
977
|
</div>
|
1289
978
|
|
1290
979
|
<div class="method_details ">
|
1291
|
-
<h3 class="signature " id="
|
980
|
+
<h3 class="signature " id="entities-instance_method">
|
1292
981
|
|
1293
|
-
#<strong>
|
982
|
+
#<strong>entities</strong> ⇒ <tt>Array<Component></tt>
|
1294
983
|
|
1295
984
|
|
1296
985
|
|
@@ -1299,7 +988,7 @@
|
|
1299
988
|
</h3><div class="docstring">
|
1300
989
|
<div class="discussion">
|
1301
990
|
|
1302
|
-
<p>
|
991
|
+
<p>Entities that have this component</p>
|
1303
992
|
|
1304
993
|
|
1305
994
|
</div>
|
@@ -1312,14 +1001,9 @@
|
|
1312
1001
|
<li>
|
1313
1002
|
|
1314
1003
|
|
1315
|
-
<span class='type'>(<tt>
|
1316
|
-
|
1004
|
+
<span class='type'>(<tt>Array<Component></tt>)</span>
|
1317
1005
|
|
1318
1006
|
|
1319
|
-
—
|
1320
|
-
<div class='inline'>
|
1321
|
-
<p>A hash, where all the keys are attributes linked to their respective values.</p>
|
1322
|
-
</div>
|
1323
1007
|
|
1324
1008
|
</li>
|
1325
1009
|
|
@@ -1331,23 +1015,15 @@
|
|
1331
1015
|
<pre class="lines">
|
1332
1016
|
|
1333
1017
|
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
233
|
1338
|
-
234
|
1339
|
-
235
|
1340
|
-
236</pre>
|
1018
|
+
209
|
1019
|
+
210
|
1020
|
+
211</pre>
|
1341
1021
|
</td>
|
1342
1022
|
<td>
|
1343
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
1023
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 209</span>
|
1344
1024
|
|
1345
|
-
<span class='kw'>def</span> <span class='id identifier
|
1346
|
-
<span class='
|
1347
|
-
<span class='id identifier rubyid_final'>final</span><span class='lbracket'>[</span><span class='id identifier rubyid_key'>key</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span><span class='period'>.</span><span class='id identifier rubyid_delete_prefix'>delete_prefix</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>@</span><span class='tstring_end'>'</span></span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_to_sym'>to_sym</span><span class='rbracket'>]</span> <span class='op'>=</span> <span class='id identifier rubyid_instance_variable_get'>instance_variable_get</span><span class='lparen'>(</span><span class='id identifier rubyid_key'>key</span><span class='rparen'>)</span>
|
1348
|
-
<span class='kw'>end</span>
|
1349
|
-
<span class='id identifier rubyid_return_hash'>return_hash</span><span class='period'>.</span><span class='id identifier rubyid_delete'>delete</span><span class='lparen'>(</span><span class='symbol'>:attr_triggers</span><span class='rparen'>)</span>
|
1350
|
-
<span class='id identifier rubyid_return_hash'>return_hash</span>
|
1025
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_entities'>entities</span>
|
1026
|
+
<span class='ivar'>@entities</span> <span class='op'>||=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
|
1351
1027
|
<span class='kw'>end</span></pre>
|
1352
1028
|
</td>
|
1353
1029
|
</tr>
|
@@ -1355,9 +1031,9 @@
|
|
1355
1031
|
</div>
|
1356
1032
|
|
1357
1033
|
<div class="method_details ">
|
1358
|
-
<h3 class="signature " id="
|
1034
|
+
<h3 class="signature " id="entity-instance_method">
|
1359
1035
|
|
1360
|
-
#<strong>
|
1036
|
+
#<strong>entity</strong> ⇒ <tt>Component</tt>
|
1361
1037
|
|
1362
1038
|
|
1363
1039
|
|
@@ -1366,7 +1042,7 @@
|
|
1366
1042
|
</h3><div class="docstring">
|
1367
1043
|
<div class="discussion">
|
1368
1044
|
|
1369
|
-
<p>
|
1045
|
+
<p>A single entity. Use this if you expect the component to only belong to one entity and you want to access it.</p>
|
1370
1046
|
|
1371
1047
|
|
1372
1048
|
</div>
|
@@ -1379,14 +1055,9 @@
|
|
1379
1055
|
<li>
|
1380
1056
|
|
1381
1057
|
|
1382
|
-
<span class='type'>(<tt>
|
1383
|
-
|
1058
|
+
<span class='type'>(<tt>Component</tt>)</span>
|
1384
1059
|
|
1385
1060
|
|
1386
|
-
—
|
1387
|
-
<div class='inline'>
|
1388
|
-
<p><code>true</code>.</p>
|
1389
|
-
</div>
|
1390
1061
|
|
1391
1062
|
</li>
|
1392
1063
|
|
@@ -1398,10 +1069,6 @@
|
|
1398
1069
|
<pre class="lines">
|
1399
1070
|
|
1400
1071
|
|
1401
|
-
211
|
1402
|
-
212
|
1403
|
-
213
|
1404
|
-
214
|
1405
1072
|
215
|
1406
1073
|
216
|
1407
1074
|
217
|
@@ -1409,32 +1076,18 @@
|
|
1409
1076
|
219
|
1410
1077
|
220
|
1411
1078
|
221
|
1412
|
-
222
|
1413
|
-
223
|
1414
|
-
224
|
1415
|
-
225
|
1416
|
-
226
|
1417
|
-
227</pre>
|
1079
|
+
222</pre>
|
1418
1080
|
</td>
|
1419
1081
|
<td>
|
1420
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
1082
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 215</span>
|
1421
1083
|
|
1422
|
-
<span class='kw'>def</span> <span class='id identifier
|
1423
|
-
<span class='
|
1424
|
-
<span class='
|
1084
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_entity'>entity</span>
|
1085
|
+
<span class='kw'>if</span> <span class='id identifier rubyid_entities'>entities</span><span class='period'>.</span><span class='id identifier rubyid_empty?'>empty?</span>
|
1086
|
+
<span class='const'>Warning</span><span class='period'>.</span><span class='id identifier rubyid_warn'>warn</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>This component belongs to NO entities but you called the method that is intended for components belonging to a single entity.\nYou may have a bug in your logic.</span><span class='tstring_end'>"</span></span><span class='rparen'>)</span>
|
1087
|
+
<span class='kw'>elsif</span> <span class='id identifier rubyid_entities'>entities</span><span class='period'>.</span><span class='id identifier rubyid_length'>length</span> <span class='op'>></span> <span class='int'>1</span>
|
1088
|
+
<span class='const'>Warning</span><span class='period'>.</span><span class='id identifier rubyid_warn'>warn</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>This component belongs to MANY entities but you called the method that is intended for components belonging to a single entity.\nYou may have a bug in your logic.</span><span class='tstring_end'>"</span></span><span class='rparen'>)</span>
|
1425
1089
|
<span class='kw'>end</span>
|
1426
|
-
<span class='
|
1427
|
-
</span> <span class='comment'># the remove command is called, breaking the loop if it
|
1428
|
-
</span> <span class='comment'># wasn't referencing a clone(will get Nil errors)
|
1429
|
-
</span> <span class='id identifier rubyid_iter'>iter</span> <span class='op'>=</span> <span class='id identifier rubyid_entities'>entities</span><span class='period'>.</span><span class='id identifier rubyid_map'>map</span><span class='lparen'>(</span><span class='op'>&</span><span class='symbol'>:clone</span><span class='rparen'>)</span>
|
1430
|
-
<span class='id identifier rubyid_iter'>iter</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_entity_id'>entity_id</span><span class='op'>|</span>
|
1431
|
-
<span class='const'><span class='object_link'><a href="../FelFlame.html" title="FelFlame (class)">FelFlame</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Entities.html" title="FelFlame::Entities (class)">Entities</a></span></span><span class='lbracket'>[</span><span class='id identifier rubyid_entity_id'>entity_id</span><span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_remove'>remove</span> <span class='kw'>self</span> <span class='comment'>#unless FelFlame::Entities[entity_id].nil?
|
1432
|
-
</span> <span class='kw'>end</span>
|
1433
|
-
<span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='period'>.</span><span class='id identifier rubyid_data'>data</span><span class='lbracket'>[</span><span class='id identifier rubyid_id'>id</span><span class='rbracket'>]</span> <span class='op'>=</span> <span class='kw'>nil</span>
|
1434
|
-
<span class='id identifier rubyid_instance_variables'>instance_variables</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_var'>var</span><span class='op'>|</span>
|
1435
|
-
<span class='id identifier rubyid_instance_variable_set'>instance_variable_set</span><span class='lparen'>(</span><span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='kw'>nil</span><span class='rparen'>)</span>
|
1436
|
-
<span class='kw'>end</span>
|
1437
|
-
<span class='kw'>true</span>
|
1090
|
+
<span class='id identifier rubyid_entities'>entities</span><span class='period'>.</span><span class='id identifier rubyid_first'>first</span>
|
1438
1091
|
<span class='kw'>end</span></pre>
|
1439
1092
|
</td>
|
1440
1093
|
</tr>
|
@@ -1442,9 +1095,9 @@
|
|
1442
1095
|
</div>
|
1443
1096
|
|
1444
1097
|
<div class="method_details ">
|
1445
|
-
<h3 class="signature " id="
|
1098
|
+
<h3 class="signature " id="to_h-instance_method">
|
1446
1099
|
|
1447
|
-
#<strong>
|
1100
|
+
#<strong>to_h</strong> ⇒ <tt>Hash<Symbol, Value></tt>
|
1448
1101
|
|
1449
1102
|
|
1450
1103
|
|
@@ -1453,7 +1106,7 @@
|
|
1453
1106
|
</h3><div class="docstring">
|
1454
1107
|
<div class="discussion">
|
1455
1108
|
|
1456
|
-
<p>A
|
1109
|
+
<p>Returns A hash, where all the keys are attributes storing their respective values.</p>
|
1457
1110
|
|
1458
1111
|
|
1459
1112
|
</div>
|
@@ -1466,63 +1119,14 @@
|
|
1466
1119
|
<li>
|
1467
1120
|
|
1468
1121
|
|
1469
|
-
<span class='type'>(<tt>
|
1122
|
+
<span class='type'>(<tt>Hash<Symbol, Value></tt>)</span>
|
1470
1123
|
|
1471
1124
|
|
1472
1125
|
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
</div><table class="source_code">
|
1478
|
-
<tr>
|
1479
|
-
<td>
|
1480
|
-
<pre class="lines">
|
1481
|
-
|
1482
|
-
|
1483
|
-
185
|
1484
|
-
186
|
1485
|
-
187</pre>
|
1486
|
-
</td>
|
1487
|
-
<td>
|
1488
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line 185</span>
|
1489
|
-
|
1490
|
-
<span class='kw'>def</span> <span class='id identifier rubyid_entities'>entities</span>
|
1491
|
-
<span class='ivar'>@entities</span> <span class='op'>||=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
|
1492
|
-
<span class='kw'>end</span></pre>
|
1493
|
-
</td>
|
1494
|
-
</tr>
|
1495
|
-
</table>
|
1496
|
-
</div>
|
1497
|
-
|
1498
|
-
<div class="method_details ">
|
1499
|
-
<h3 class="signature " id="to_i-instance_method">
|
1500
|
-
|
1501
|
-
#<strong>to_i</strong> ⇒ <tt>Integer</tt>
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1505
|
-
|
1506
|
-
|
1507
|
-
</h3><div class="docstring">
|
1508
|
-
<div class="discussion">
|
1509
|
-
|
1510
|
-
<p>An alias for the <span class='object_link'><a href="#id-instance_method" title="FelFlame::ComponentManager#id (method)">ID Reader</a></span></p>
|
1511
|
-
|
1512
|
-
|
1513
|
-
</div>
|
1126
|
+
—
|
1127
|
+
<div class='inline'>
|
1128
|
+
<p>A hash, where all the keys are attributes storing their respective values.</p>
|
1514
1129
|
</div>
|
1515
|
-
<div class="tags">
|
1516
|
-
|
1517
|
-
<p class="tag_title">Returns:</p>
|
1518
|
-
<ul class="return">
|
1519
|
-
|
1520
|
-
<li>
|
1521
|
-
|
1522
|
-
|
1523
|
-
<span class='type'>(<tt>Integer</tt>)</span>
|
1524
|
-
|
1525
|
-
|
1526
1130
|
|
1527
1131
|
</li>
|
1528
1132
|
|
@@ -1534,15 +1138,23 @@
|
|
1534
1138
|
<pre class="lines">
|
1535
1139
|
|
1536
1140
|
|
1537
|
-
|
1538
|
-
|
1539
|
-
|
1141
|
+
262
|
1142
|
+
263
|
1143
|
+
264
|
1144
|
+
265
|
1145
|
+
266
|
1146
|
+
267
|
1147
|
+
268</pre>
|
1540
1148
|
</td>
|
1541
1149
|
<td>
|
1542
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
1150
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 262</span>
|
1543
1151
|
|
1544
|
-
<span class='kw'>def</span> <span class='id identifier
|
1545
|
-
<span class='id identifier
|
1152
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_to_h'>to_h</span>
|
1153
|
+
<span class='id identifier rubyid_return_hash'>return_hash</span> <span class='op'>=</span> <span class='id identifier rubyid_instance_variables'>instance_variables</span><span class='period'>.</span><span class='id identifier rubyid_each_with_object'>each_with_object</span><span class='lparen'>(</span><span class='lbrace'>{</span><span class='rbrace'>}</span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_key'>key</span><span class='comma'>,</span> <span class='id identifier rubyid_final'>final</span><span class='op'>|</span>
|
1154
|
+
<span class='id identifier rubyid_final'>final</span><span class='lbracket'>[</span><span class='id identifier rubyid_key'>key</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span><span class='period'>.</span><span class='id identifier rubyid_delete_prefix'>delete_prefix</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>@</span><span class='tstring_end'>'</span></span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_to_sym'>to_sym</span><span class='rbracket'>]</span> <span class='op'>=</span> <span class='id identifier rubyid_instance_variable_get'>instance_variable_get</span><span class='lparen'>(</span><span class='id identifier rubyid_key'>key</span><span class='rparen'>)</span>
|
1155
|
+
<span class='kw'>end</span>
|
1156
|
+
<span class='id identifier rubyid_return_hash'>return_hash</span><span class='period'>.</span><span class='id identifier rubyid_delete'>delete</span><span class='lparen'>(</span><span class='symbol'>:attr_triggers</span><span class='rparen'>)</span>
|
1157
|
+
<span class='id identifier rubyid_return_hash'>return_hash</span>
|
1546
1158
|
<span class='kw'>end</span></pre>
|
1547
1159
|
</td>
|
1548
1160
|
</tr>
|
@@ -1593,14 +1205,14 @@
|
|
1593
1205
|
<pre class="lines">
|
1594
1206
|
|
1595
1207
|
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
1208
|
+
226
|
1209
|
+
227
|
1210
|
+
228
|
1211
|
+
229
|
1212
|
+
230</pre>
|
1601
1213
|
</td>
|
1602
1214
|
<td>
|
1603
|
-
<pre class="code"><span class="info file"># File 'component_manager.rb', line
|
1215
|
+
<pre class="code"><span class="info file"># File 'lib/felflame/component_manager.rb', line 226</span>
|
1604
1216
|
|
1605
1217
|
<span class='kw'>def</span> <span class='id identifier rubyid_update_attrs'>update_attrs</span><span class='lparen'>(</span><span class='op'>**</span><span class='id identifier rubyid_opts'>opts</span><span class='rparen'>)</span>
|
1606
1218
|
<span class='id identifier rubyid_opts'>opts</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_key'>key</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span><span class='op'>|</span>
|
@@ -1617,7 +1229,7 @@
|
|
1617
1229
|
</div>
|
1618
1230
|
|
1619
1231
|
<div id="footer">
|
1620
|
-
Generated on
|
1232
|
+
Generated on Mon Jan 3 08:23:04 2022 by
|
1621
1233
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1622
1234
|
0.9.26 (ruby-2.7.3).
|
1623
1235
|
</div>
|