2024-02-29 13:54:33 -06:00
var actor = { } ;
2024-08-05 15:26:18 -05:00
var actor _urs = { } ;
2024-08-06 16:05:24 -05:00
var script _times = { } ;
var actor _spawns = { } ;
2024-08-05 15:26:18 -05:00
2024-09-26 11:36:09 -05:00
globalThis . class _use = function ( script , config , base , callback ) {
2024-08-06 16:05:24 -05:00
var file = Resources . find _script ( script ) ;
if ( ! file ) {
var ret = Object . create ( base ) ;
if ( callback ) callback ( ret ) ;
return ret ;
}
if ( ! actor _urs [ file ] ) {
2024-08-05 15:26:18 -05:00
var newur = Object . create ( base ) ;
2024-08-06 16:05:24 -05:00
actor _urs [ file ] = newur ;
script _times [ file ] = io . mod ( file ) ;
actor _spawns [ file ] = [ ] ;
2024-08-05 15:26:18 -05:00
}
2024-08-06 16:05:24 -05:00
var padawan = Object . create ( actor _urs [ file ] ) ;
actor _spawns [ file ] . push ( padawan ) ;
padawan . _file = file ;
2024-08-27 13:57:38 -05:00
padawan . _root = file . dir ( ) ;
2024-08-05 15:26:18 -05:00
if ( callback ) callback ( padawan ) ;
2024-02-29 13:54:33 -06:00
2024-08-05 15:26:18 -05:00
var script = Resources . replstrs ( file ) ;
2024-09-13 17:56:02 -05:00
script = ` (function() { var self = this; var $ = this.__proto__; ${ script } ; }) ` ;
2024-09-26 11:36:09 -05:00
var fn = os . eval ( file , script ) ;
2024-08-05 15:26:18 -05:00
fn . call ( padawan ) ;
2024-09-26 11:36:09 -05:00
if ( typeof config === "object" ) Object . merge ( padawan , config ) ;
2024-09-06 18:51:09 -05:00
2024-08-05 15:26:18 -05:00
return padawan ;
2024-09-26 11:36:09 -05:00
} ;
2024-09-25 12:46:59 -05:00
2024-09-26 11:36:09 -05:00
globalThis . rmactor = function ( e ) {
2024-09-25 12:46:59 -05:00
if ( ! actor _spawns [ e . _file ] ) return ;
actor _spawns [ e . _file ] . remove ( e ) ;
2024-09-26 11:36:09 -05:00
} ;
2024-09-25 12:46:59 -05:00
2024-09-26 11:36:09 -05:00
actor . _ _stats = function ( ) {
2024-09-25 12:46:59 -05:00
var total = 0 ;
var stats = { } ;
2024-09-30 19:00:09 -05:00
game . all _objects ( obj => {
if ( ! actor _spawns [ obj . _file ] ) return ;
stats [ obj . _file ] ? ? = 0 ;
stats [ obj . _file ] ++ ;
total ++ ;
} ) ;
/ * f o r ( v a r i i n a c t o r _ s p a w n s ) {
2024-09-25 12:46:59 -05:00
stats [ i ] = actor _spawns [ i ] . length ;
total += stats [ i ] ;
2024-09-30 19:00:09 -05:00
} * /
// stats.total = total;
2024-09-25 12:46:59 -05:00
return stats ;
2024-09-26 11:36:09 -05:00
} ;
2024-08-05 15:26:18 -05:00
2024-09-26 11:36:09 -05:00
actor . hotreload = function ( ) {
2024-08-06 16:05:24 -05:00
profile . cache ( "hotreload" , "check" ) ;
for ( var i in script _times ) {
if ( io . mod ( i ) > script _times [ i ] ) {
say ( ` HOT RELAODING ${ i } ` ) ;
script _times [ i ] = io . mod ( i ) ;
var script = Resources . replstrs ( i ) ;
script = ` (function() {
var self = this ;
var $ = this . _ _proto _ _ ;
$ { script } ;
} ) ` ;
2024-09-26 11:36:09 -05:00
var fn = os . eval ( i , script ) ;
2024-08-06 16:05:24 -05:00
for ( var obj of actor _spawns [ i ] ) {
var a = obj ;
2024-09-26 11:36:09 -05:00
for ( var t of a . timers ) t ( ) ;
a . timers = [ ] ;
var save = json . decode ( json . encode ( a ) ) ;
2024-08-06 16:05:24 -05:00
fn . call ( a ) ;
2024-09-26 11:36:09 -05:00
Object . merge ( a , save ) ;
check _registers ( a ) ;
2024-08-06 16:05:24 -05:00
}
}
}
profile . endcache ( ) ;
2024-09-26 11:36:09 -05:00
} ;
2024-08-06 16:05:24 -05:00
2024-09-26 11:36:09 -05:00
actor . spawn = function ( script , config ) {
if ( typeof script !== "string" ) return undefined ;
2024-08-05 15:26:18 -05:00
var padawan = class _use ( script , config , actor ) ;
2024-09-26 11:36:09 -05:00
2024-02-29 13:54:33 -06:00
padawan . padawans = [ ] ;
padawan . timers = [ ] ;
padawan . master = this ;
2024-09-26 11:36:09 -05:00
Object . hide ( padawan , "master" , "padawans" ) ;
padawan . toString = function ( ) {
return script ;
} ;
2024-03-04 15:18:11 -06:00
check _registers ( padawan ) ;
2024-02-29 13:54:33 -06:00
this . padawans . push ( padawan ) ;
2024-08-06 16:05:24 -05:00
if ( padawan . awake ) padawan . awake ( ) ;
2024-02-29 13:54:33 -06:00
return padawan ;
} ;
2024-09-26 11:36:09 -05:00
actor . tween = function ( from , to , time , fn ) {
var stop = tween ( from , to , time , fn ) ;
2024-07-18 12:39:58 -05:00
this . timers . push ( stop ) ;
return stop ;
2024-09-26 11:36:09 -05:00
} ;
2024-07-18 12:39:58 -05:00
2024-02-29 13:54:33 -06:00
actor . spawn . doc = ` Create a new actor, using this actor as the master, initializing it with 'script' and with data (as a JSON or Nota file) from 'config'. ` ;
2024-09-26 11:36:09 -05:00
actor . rm _pawn = function ( pawn ) {
2024-03-04 11:15:55 -06:00
this . padawans . remove ( pawn ) ;
2024-09-26 11:36:09 -05:00
} ;
2024-03-04 11:15:55 -06:00
2024-02-29 13:54:33 -06:00
actor . timers = [ ] ;
2024-09-26 11:36:09 -05:00
actor . kill = function ( ) {
2024-02-29 13:54:33 -06:00
if ( this . _ _dead _ _ ) return ;
2024-03-04 15:18:11 -06:00
this . timers . forEach ( t => t ( ) ) ;
2024-04-03 08:37:29 -05:00
input . do _uncontrol ( this ) ;
2024-03-04 15:18:11 -06:00
Event . rm _obj ( this ) ;
2024-03-04 11:15:55 -06:00
if ( this . master ) this . master . rm _pawn ( this ) ;
2024-02-29 13:54:33 -06:00
this . padawans . forEach ( p => p . kill ( ) ) ;
this . padawans = [ ] ;
this . _ _dead _ _ = true ;
2024-08-06 16:05:24 -05:00
actor _spawns [ this . _file ] . remove ( this ) ;
2024-09-26 11:36:09 -05:00
if ( typeof this . die === "function" ) this . die ( ) ;
if ( typeof this . stop === "function" ) this . stop ( ) ;
if ( typeof this . garbage === "function" ) this . garbage ( ) ;
if ( typeof this . then === "function" ) this . then ( ) ;
2024-02-29 13:54:33 -06:00
} ;
actor . kill . doc = ` Remove this actor and all its padawans from existence. ` ;
2024-09-30 10:14:56 -05:00
actor . delay = function ( fn , seconds ) { prosperon . add _timer ( this , fn , seconds ) ; }
2024-02-29 13:54:33 -06:00
actor . delay . doc = ` Call 'fn' after 'seconds' with 'this' set to the actor. ` ;
2024-09-26 11:36:09 -05:00
actor . interval = function ( fn , seconds ) {
2024-08-06 14:23:21 -05:00
var self = this ;
var stop ;
2024-09-26 11:36:09 -05:00
var usefn = function ( ) {
2024-08-06 14:23:21 -05:00
fn ( ) ;
stop = self . delay ( usefn , seconds ) ;
2024-09-26 11:36:09 -05:00
} ;
2024-08-06 14:23:21 -05:00
stop = self . delay ( usefn , seconds ) ;
return stop ;
2024-09-26 11:36:09 -05:00
} ;
2024-08-06 14:23:21 -05:00
2024-02-29 13:54:33 -06:00
actor . padawans = [ ] ;
global . app = Object . create ( actor ) ;
2024-09-26 11:36:09 -05:00
app . die = function ( ) {
os . quit ( ) ;
} ;
2024-02-29 13:54:33 -06:00
2024-09-26 11:36:09 -05:00
return { actor , app } ;