- 1 :
import { TriggerRegion } from './TriggerRegion.js';
- 2 :
import { RectangularTriggerRegion } from './regions/RectangularTriggerRegion.js';
- 3 :
import { SphericalTriggerRegion } from './regions/SphericalTriggerRegion.js';
- 4 :
import { GameEntity } from '../core/GameEntity.js';
- 5 :
import { Logger } from '../core/Logger.js';
- 6 :
- 7 :
/**
- 8 :
* Base class for representing triggers. A trigger generates an action if a game entity
- 9 :
* touches its trigger region, a predefine area in 3D space.
- 10 :
*
- 11 :
* @author {@link https://github.com/Mugen87|Mugen87}
- 12 :
* @augments GameEntity
- 13 :
*/
- 14 :
class Trigger extends GameEntity {
- 15 :
- 16 :
/**
- 17 :
* Constructs a new trigger with the given values.
- 18 :
*
- 19 :
* @param {TriggerRegion} region - The region of the trigger.
- 20 :
*/
- 21 :
constructor( region = new TriggerRegion() ) {
- 22 :
- 23 :
super();
- 24 :
- 25 :
/**
- 26 :
* The region of the trigger.
- 27 :
* @type {TriggerRegion}
- 28 :
*/
- 29 :
this.region = region;
- 30 :
- 31 :
//
- 32 :
- 33 :
this.canActivateTrigger = false; // triggers can't activate other triggers by default
- 34 :
- 35 :
this._typesMap = new Map(); // used for deserialization of custom trigger regions
- 36 :
- 37 :
}
- 38 :
- 39 :
/**
- 40 :
* This method is called per simulation step for all game entities. If the game
- 41 :
* entity touches the region of the trigger, the respective action is executed.
- 42 :
*
- 43 :
* @param {GameEntity} entity - The entity to test
- 44 :
* @return {Trigger} A reference to this trigger.
- 45 :
*/
- 46 :
check( entity ) {
- 47 :
- 48 :
if ( this.region.touching( entity ) === true ) {
- 49 :
- 50 :
this.execute( entity );
- 51 :
- 52 :
}
- 53 :
- 54 :
return this;
- 55 :
- 56 :
}
- 57 :
- 58 :
/**
- 59 :
* This method is called when the trigger should execute its action.
- 60 :
* Must be implemented by all concrete triggers.
- 61 :
*
- 62 :
* @param {GameEntity} entity - The entity that touched the trigger region.
- 63 :
* @return {Trigger} A reference to this trigger.
- 64 :
*/
- 65 :
execute( /* entity */ ) {}
- 66 :
- 67 :
/**
- 68 :
* Updates the region of this trigger. Called by the {@link EntityManager} per
- 69 :
* simulation step.
- 70 :
*
- 71 :
* @return {Trigger} A reference to this trigger.
- 72 :
*/
- 73 :
updateRegion() {
- 74 :
- 75 :
this.region.update( this );
- 76 :
- 77 :
return this;
- 78 :
- 79 :
}
- 80 :
- 81 :
/**
- 82 :
* Transforms this instance into a JSON object.
- 83 :
*
- 84 :
* @return {Object} The JSON object.
- 85 :
*/
- 86 :
toJSON() {
- 87 :
- 88 :
const json = super.toJSON();
- 89 :
- 90 :
json.region = this.region.toJSON();
- 91 :
- 92 :
return json;
- 93 :
- 94 :
}
- 95 :
- 96 :
/**
- 97 :
* Restores this instance from the given JSON object.
- 98 :
*
- 99 :
* @param {Object} json - The JSON object.
- 100 :
* @return {Trigger} A reference to this trigger.
- 101 :
*/
- 102 :
fromJSON( json ) {
- 103 :
- 104 :
super.fromJSON( json );
- 105 :
- 106 :
const regionJSON = json.region;
- 107 :
let type = regionJSON.type;
- 108 :
- 109 :
switch ( type ) {
- 110 :
- 111 :
case 'TriggerRegion':
- 112 :
this.region = new TriggerRegion().fromJSON( regionJSON );
- 113 :
break;
- 114 :
- 115 :
case 'RectangularTriggerRegion':
- 116 :
this.region = new RectangularTriggerRegion().fromJSON( regionJSON );
- 117 :
break;
- 118 :
- 119 :
case 'SphericalTriggerRegion':
- 120 :
this.region = new SphericalTriggerRegion().fromJSON( regionJSON );
- 121 :
break;
- 122 :
- 123 :
default:
- 124 :
// handle custom type
- 125 :
- 126 :
const ctor = this._typesMap.get( type );
- 127 :
- 128 :
if ( ctor !== undefined ) {
- 129 :
- 130 :
this.region = new ctor().fromJSON( regionJSON );
- 131 :
- 132 :
} else {
- 133 :
- 134 :
Logger.warn( 'YUKA.Trigger: Unsupported trigger region type:', regionJSON.type );
- 135 :
- 136 :
}
- 137 :
- 138 :
}
- 139 :
- 140 :
return this;
- 141 :
- 142 :
}
- 143 :
- 144 :
/**
- 145 :
* Registers a custom type for deserialization. When calling {@link Trigger#fromJSON}
- 146 :
* the trigger is able to pick the correct constructor in order to create custom
- 147 :
* trigger regions.
- 148 :
*
- 149 :
* @param {String} type - The name of the trigger region.
- 150 :
* @param {Function} constructor - The constructor function.
- 151 :
* @return {Trigger} A reference to this trigger.
- 152 :
*/
- 153 :
registerType( type, constructor ) {
- 154 :
- 155 :
this._typesMap.set( type, constructor );
- 156 :
- 157 :
return this;
- 158 :
- 159 :
}
- 160 :
- 161 :
}
- 162 :
- 163 :
export { Trigger };