2020-10-03 06:50:15 +00:00
|
|
|
package;
|
|
|
|
|
|
|
|
import flixel.FlxGame;
|
2021-02-16 06:53:25 +00:00
|
|
|
import flixel.FlxState;
|
|
|
|
import openfl.Assets;
|
|
|
|
import openfl.Lib;
|
2020-10-04 06:42:58 +00:00
|
|
|
import openfl.display.FPS;
|
2020-10-03 06:50:15 +00:00
|
|
|
import openfl.display.Sprite;
|
2021-02-16 06:53:25 +00:00
|
|
|
import openfl.events.Event;
|
2020-10-03 06:50:15 +00:00
|
|
|
|
|
|
|
class Main extends Sprite
|
|
|
|
{
|
2021-02-16 06:53:25 +00:00
|
|
|
var gameWidth:Int = 1280; // Width of the game in pixels (might be less / more in actual pixels depending on your zoom).
|
|
|
|
var gameHeight:Int = 720; // Height of the game in pixels (might be less / more in actual pixels depending on your zoom).
|
|
|
|
var initialState:Class<FlxState> = TitleState; // The FlxState the game starts with.
|
|
|
|
var zoom:Float = -1; // If -1, zoom is automatically calculated to fit the window dimensions.
|
|
|
|
var framerate:Int = 60; // How many frames per second the game should run at.
|
|
|
|
var skipSplash:Bool = true; // Whether to skip the flixel splash screen that appears in release mode.
|
|
|
|
var startFullscreen:Bool = false; // Whether to start the game in fullscreen on desktop targets
|
|
|
|
|
|
|
|
// You can pretty much ignore everything from here on - your code should go in your states.
|
|
|
|
|
|
|
|
public static function main():Void
|
|
|
|
{
|
|
|
|
Lib.current.addChild(new Main());
|
|
|
|
}
|
|
|
|
|
2020-10-03 06:50:15 +00:00
|
|
|
public function new()
|
|
|
|
{
|
|
|
|
super();
|
2021-02-16 06:53:25 +00:00
|
|
|
|
|
|
|
if (stage != null)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
addEventListener(Event.ADDED_TO_STAGE, init);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function init(?E:Event):Void
|
|
|
|
{
|
|
|
|
if (hasEventListener(Event.ADDED_TO_STAGE))
|
|
|
|
{
|
|
|
|
removeEventListener(Event.ADDED_TO_STAGE, init);
|
|
|
|
}
|
|
|
|
|
|
|
|
setupGame();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setupGame():Void
|
|
|
|
{
|
|
|
|
var stageWidth:Int = Lib.current.stage.stageWidth;
|
|
|
|
var stageHeight:Int = Lib.current.stage.stageHeight;
|
|
|
|
|
|
|
|
if (zoom == -1)
|
|
|
|
{
|
|
|
|
var ratioX:Float = stageWidth / gameWidth;
|
|
|
|
var ratioY:Float = stageHeight / gameHeight;
|
|
|
|
zoom = Math.min(ratioX, ratioY);
|
|
|
|
gameWidth = Math.ceil(stageWidth / zoom);
|
|
|
|
gameHeight = Math.ceil(stageHeight / zoom);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !debug
|
|
|
|
initialState = TitleState;
|
|
|
|
#end
|
|
|
|
|
|
|
|
addChild(new FlxGame(gameWidth, gameHeight, initialState, zoom, framerate, framerate, skipSplash, startFullscreen));
|
2020-10-04 06:42:58 +00:00
|
|
|
|
|
|
|
#if !mobile
|
|
|
|
addChild(new FPS(10, 3, 0xFFFFFF));
|
|
|
|
#end
|
2020-10-03 06:50:15 +00:00
|
|
|
}
|
|
|
|
}
|