mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 06:14:36 +00:00
93 lines
2.2 KiB
Haxe
93 lines
2.2 KiB
Haxe
package funkin.play.event;
|
|
|
|
import flixel.tweens.FlxTween;
|
|
import flixel.FlxCamera;
|
|
import flixel.tweens.FlxEase;
|
|
// Data from the chart
|
|
import funkin.data.song.SongData;
|
|
import funkin.data.song.SongData.SongEventData;
|
|
// Data from the event schema
|
|
import funkin.play.event.SongEvent;
|
|
import funkin.data.event.SongEventData.SongEventSchema;
|
|
import funkin.data.event.SongEventData.SongEventFieldType;
|
|
|
|
/**
|
|
* This class represents a handler for configuring camera bop intensity and rate.
|
|
*
|
|
* Example: Bop the camera twice as hard, once per beat (rather than once every four beats).
|
|
* ```
|
|
* {
|
|
* 'e': 'SetCameraBop',
|
|
* 'v': {
|
|
* 'intensity': 2.0,
|
|
* 'rate': 1,
|
|
* }
|
|
* }
|
|
* ```
|
|
*
|
|
* Example: Reset the camera bop to default values.
|
|
* ```
|
|
* {
|
|
* 'e': 'SetCameraBop',
|
|
* 'v': {}
|
|
* }
|
|
* ```
|
|
*/
|
|
class SetCameraBopSongEvent extends SongEvent
|
|
{
|
|
public function new()
|
|
{
|
|
super('SetCameraBop');
|
|
}
|
|
|
|
public override function handleEvent(data:SongEventData):Void
|
|
{
|
|
// Does nothing if there is no PlayState camera or stage.
|
|
if (PlayState.instance == null) return;
|
|
|
|
var rate:Null<Int> = data.getInt('rate');
|
|
if (rate == null) rate = Constants.DEFAULT_ZOOM_RATE;
|
|
var intensity:Null<Float> = data.getFloat('intensity');
|
|
if (intensity == null) intensity = 1.0;
|
|
|
|
PlayState.instance.cameraZoomIntensity = Constants.DEFAULT_ZOOM_INTENSITY * intensity;
|
|
PlayState.instance.hudCameraZoomIntensity = Constants.DEFAULT_ZOOM_INTENSITY * intensity * 2.0;
|
|
PlayState.instance.cameraZoomRate = rate;
|
|
trace('Set camera zoom rate to ${PlayState.instance.cameraZoomRate}');
|
|
}
|
|
|
|
public override function getTitle():String
|
|
{
|
|
return 'Set Camera Bop';
|
|
}
|
|
|
|
/**
|
|
* ```
|
|
* {
|
|
* 'intensity': FLOAT, // Zoom amount
|
|
* 'rate': INT, // Zoom rate (beats/zoom)
|
|
* }
|
|
* ```
|
|
* @return SongEventSchema
|
|
*/
|
|
public override function getEventSchema():SongEventSchema
|
|
{
|
|
return [
|
|
{
|
|
name: 'intensity',
|
|
title: 'Intensity',
|
|
defaultValue: 1.0,
|
|
step: 0.1,
|
|
type: SongEventFieldType.FLOAT
|
|
},
|
|
{
|
|
name: 'rate',
|
|
title: 'Rate (beats/zoom)',
|
|
defaultValue: 4,
|
|
step: 1,
|
|
type: SongEventFieldType.INTEGER,
|
|
}
|
|
];
|
|
}
|
|
}
|