remove bin dir
This commit is contained in:
Vendored
BIN
Binary file not shown.
@@ -1,5 +0,0 @@
|
|||||||
bin/flash/bin/assets/fonts/Montserrat/MontserratLight300.ttf
|
|
||||||
bin/flash/bin/assets/fonts/Montserrat/MontserratRegular400.ttf
|
|
||||||
bin/flash/bin/assets/fonts/Montserrat/MontserratMedium500.ttf
|
|
||||||
bin/flash/bin/assets/fonts/Montserrat/MontserratBold700.ttf
|
|
||||||
bin/flash/bin/manifest/default.json
|
|
||||||
Binary file not shown.
@@ -1,330 +0,0 @@
|
|||||||
package;
|
|
||||||
|
|
||||||
#if macro
|
|
||||||
import haxe.macro.Compiler;
|
|
||||||
import haxe.macro.Context;
|
|
||||||
import haxe.macro.Expr;
|
|
||||||
#end
|
|
||||||
|
|
||||||
@:access(lime.app.Application)
|
|
||||||
@:access(lime.system.System)
|
|
||||||
@:access(openfl.display.Stage)
|
|
||||||
@:access(openfl.events.UncaughtErrorEvents)
|
|
||||||
@:dox(hide)
|
|
||||||
class ApplicationMain
|
|
||||||
{
|
|
||||||
#if !macro
|
|
||||||
public static function main()
|
|
||||||
{
|
|
||||||
lime.system.System.__registerEntryPoint("LPTCManager2026", create);
|
|
||||||
|
|
||||||
#if (js && html5)
|
|
||||||
#if (munit || (utest && openfl_enable_utest_legacy_mode))
|
|
||||||
lime.system.System.embed("LPTCManager2026", null, 500, 800);
|
|
||||||
#end
|
|
||||||
#else
|
|
||||||
create(null);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function create(config):Void
|
|
||||||
{
|
|
||||||
var app = new openfl.display.Application();
|
|
||||||
|
|
||||||
#if !disable_preloader_assets
|
|
||||||
ManifestResources.init(config);
|
|
||||||
#end
|
|
||||||
|
|
||||||
app.meta["build"] = "6";
|
|
||||||
app.meta["company"] = "Nekotoro";
|
|
||||||
app.meta["file"] = "LPTCManager2026";
|
|
||||||
app.meta["name"] = "LPTCManager2026";
|
|
||||||
app.meta["packageName"] = "com.nekotoro.LPTCManager2026";
|
|
||||||
app.meta["version"] = "1.0.0";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if !flash
|
|
||||||
|
|
||||||
var attributes:lime.ui.WindowAttributes = {
|
|
||||||
allowHighDPI: true,
|
|
||||||
alwaysOnTop: false,
|
|
||||||
borderless: false,
|
|
||||||
// display: 0,
|
|
||||||
element: null,
|
|
||||||
frameRate: 60,
|
|
||||||
#if !web fullscreen: false, #end
|
|
||||||
height: 800,
|
|
||||||
hidden: #if munit true #else false #end,
|
|
||||||
maximized: false,
|
|
||||||
minimized: false,
|
|
||||||
parameters: {},
|
|
||||||
resizable: true,
|
|
||||||
title: "LPTCManager2026",
|
|
||||||
width: 500,
|
|
||||||
x: null,
|
|
||||||
y: null,
|
|
||||||
};
|
|
||||||
|
|
||||||
attributes.context = {
|
|
||||||
antialiasing: 0,
|
|
||||||
background: 13156797,
|
|
||||||
colorDepth: 32,
|
|
||||||
depth: true,
|
|
||||||
hardware: true,
|
|
||||||
stencil: true,
|
|
||||||
type: null,
|
|
||||||
vsync: false
|
|
||||||
};
|
|
||||||
|
|
||||||
if (app.window == null)
|
|
||||||
{
|
|
||||||
if (config != null)
|
|
||||||
{
|
|
||||||
for (field in Reflect.fields(config))
|
|
||||||
{
|
|
||||||
if (Reflect.hasField(attributes, field))
|
|
||||||
{
|
|
||||||
Reflect.setField(attributes, field, Reflect.field(config, field));
|
|
||||||
}
|
|
||||||
else if (Reflect.hasField(attributes.context, field))
|
|
||||||
{
|
|
||||||
Reflect.setField(attributes.context, field, Reflect.field(config, field));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#if sys
|
|
||||||
lime.system.System.__parseArguments(attributes);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
app.createWindow(attributes);
|
|
||||||
|
|
||||||
#elseif air
|
|
||||||
app.window.title = "LPTCManager2026";
|
|
||||||
#else
|
|
||||||
app.window.context.attributes.background = 13156797;
|
|
||||||
app.window.frameRate = 60;
|
|
||||||
#end
|
|
||||||
|
|
||||||
var preloader = getPreloader();
|
|
||||||
app.preloader.onProgress.add (function(loaded, total)
|
|
||||||
{
|
|
||||||
@:privateAccess preloader.update(loaded, total);
|
|
||||||
});
|
|
||||||
app.preloader.onComplete.add(function()
|
|
||||||
{
|
|
||||||
@:privateAccess preloader.start();
|
|
||||||
});
|
|
||||||
|
|
||||||
preloader.onComplete.add(start.bind((cast app.window:openfl.display.Window).stage));
|
|
||||||
|
|
||||||
#if !disable_preloader_assets
|
|
||||||
for (library in ManifestResources.preloadLibraries)
|
|
||||||
{
|
|
||||||
app.preloader.addLibrary(library);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (name in ManifestResources.preloadLibraryNames)
|
|
||||||
{
|
|
||||||
app.preloader.addLibraryName(name);
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
|
|
||||||
app.preloader.load();
|
|
||||||
|
|
||||||
var result = app.exec();
|
|
||||||
|
|
||||||
#if (sys && !ios && !nodejs && !emscripten)
|
|
||||||
lime.system.System.exit(result);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function start(stage:openfl.display.Stage):Void
|
|
||||||
{
|
|
||||||
#if flash
|
|
||||||
ApplicationMain.getEntryPoint();
|
|
||||||
#else
|
|
||||||
if (stage.__uncaughtErrorEvents.__enabled)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
ApplicationMain.getEntryPoint();
|
|
||||||
|
|
||||||
stage.dispatchEvent(new openfl.events.Event(openfl.events.Event.RESIZE, false, false));
|
|
||||||
|
|
||||||
if (stage.window.fullscreen)
|
|
||||||
{
|
|
||||||
stage.dispatchEvent(new openfl.events.FullScreenEvent(openfl.events.FullScreenEvent.FULL_SCREEN, false, false, true, true));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (e:Dynamic)
|
|
||||||
{
|
|
||||||
#if !display
|
|
||||||
stage.__handleError(e);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ApplicationMain.getEntryPoint();
|
|
||||||
|
|
||||||
stage.dispatchEvent(new openfl.events.Event(openfl.events.Event.RESIZE, false, false));
|
|
||||||
|
|
||||||
if (stage.window.fullscreen)
|
|
||||||
{
|
|
||||||
stage.dispatchEvent(new openfl.events.FullScreenEvent(openfl.events.FullScreenEvent.FULL_SCREEN, false, false, true, true));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
|
|
||||||
macro public static function getEntryPoint()
|
|
||||||
{
|
|
||||||
var hasMain = false;
|
|
||||||
|
|
||||||
switch (Context.follow(Context.getType("LPTCManager2026")))
|
|
||||||
{
|
|
||||||
case TInst(t, params):
|
|
||||||
|
|
||||||
var type = t.get();
|
|
||||||
for (method in type.statics.get())
|
|
||||||
{
|
|
||||||
if (method.name == "main")
|
|
||||||
{
|
|
||||||
hasMain = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hasMain)
|
|
||||||
{
|
|
||||||
return Context.parse("@:privateAccess LPTCManager2026.main()", Context.currentPos());
|
|
||||||
}
|
|
||||||
else if (type.constructor != null)
|
|
||||||
{
|
|
||||||
return macro
|
|
||||||
{
|
|
||||||
var current = stage.getChildAt (0);
|
|
||||||
|
|
||||||
if (current == null || !(current is openfl.display.DisplayObjectContainer))
|
|
||||||
{
|
|
||||||
current = new openfl.display.MovieClip();
|
|
||||||
stage.addChild(current);
|
|
||||||
}
|
|
||||||
|
|
||||||
new DocumentClass(cast current);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Context.fatalError("Main class \"LPTCManager2026\" has neither a static main nor a constructor.", Context.currentPos());
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
|
||||||
|
|
||||||
Context.fatalError("Main class \"LPTCManager2026\" isn't a class.", Context.currentPos());
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
macro public static function getPreloader()
|
|
||||||
{
|
|
||||||
|
|
||||||
return macro
|
|
||||||
{
|
|
||||||
new openfl.display.Preloader(new openfl.display.Preloader.DefaultPreloader());
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !macro
|
|
||||||
@:noCompletion @:dox(hide) public static function __init__()
|
|
||||||
{
|
|
||||||
var init = lime.app.Application;
|
|
||||||
|
|
||||||
#if neko
|
|
||||||
// Copy from https://github.com/HaxeFoundation/haxe/blob/development/std/neko/_std/Sys.hx#L164
|
|
||||||
// since Sys.programPath () isn't available in __init__
|
|
||||||
var sys_program_path = {
|
|
||||||
var m = neko.vm.Module.local().name;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
sys.FileSystem.fullPath(m);
|
|
||||||
}
|
|
||||||
catch (e:Dynamic)
|
|
||||||
{
|
|
||||||
// maybe the neko module name was supplied without .n extension...
|
|
||||||
if (!StringTools.endsWith(m, ".n"))
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
sys.FileSystem.fullPath(m + ".n");
|
|
||||||
}
|
|
||||||
catch (e:Dynamic)
|
|
||||||
{
|
|
||||||
m;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
m;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var loader = new neko.vm.Loader(untyped $loader);
|
|
||||||
loader.addPath(haxe.io.Path.directory(#if (haxe_ver >= 3.3) sys_program_path #else Sys.executablePath() #end));
|
|
||||||
loader.addPath("./");
|
|
||||||
loader.addPath("@executable_path/");
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !macro
|
|
||||||
@:build(DocumentClass.build())
|
|
||||||
@:keep @:dox(hide) class DocumentClass extends LPTCManager2026 {}
|
|
||||||
#else
|
|
||||||
class DocumentClass
|
|
||||||
{
|
|
||||||
macro public static function build():Array<Field>
|
|
||||||
{
|
|
||||||
var classType = Context.getLocalClass().get();
|
|
||||||
var searchTypes = classType;
|
|
||||||
|
|
||||||
while (searchTypes != null)
|
|
||||||
{
|
|
||||||
if (searchTypes.module == "openfl.display.DisplayObject" || searchTypes.module == "flash.display.DisplayObject")
|
|
||||||
{
|
|
||||||
var fields = Context.getBuildFields();
|
|
||||||
|
|
||||||
var method = macro
|
|
||||||
{
|
|
||||||
current.addChild(this);
|
|
||||||
super();
|
|
||||||
dispatchEvent(new openfl.events.Event(openfl.events.Event.ADDED_TO_STAGE, false, false));
|
|
||||||
}
|
|
||||||
|
|
||||||
fields.push({ name: "new", access: [ APublic ], kind: FFun({ args: [ { name: "current", opt: false, type: macro :openfl.display.DisplayObjectContainer, value: null } ], expr: method, params: [], ret: macro :Void }), pos: Context.currentPos() });
|
|
||||||
|
|
||||||
return fields;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (searchTypes.superClass != null)
|
|
||||||
{
|
|
||||||
searchTypes = searchTypes.superClass.t.get();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
searchTypes = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
@@ -1,145 +0,0 @@
|
|||||||
package;
|
|
||||||
|
|
||||||
import haxe.io.Bytes;
|
|
||||||
import haxe.io.Path;
|
|
||||||
import lime.utils.AssetBundle;
|
|
||||||
import lime.utils.AssetLibrary;
|
|
||||||
import lime.utils.AssetManifest;
|
|
||||||
import lime.utils.Assets;
|
|
||||||
|
|
||||||
#if sys
|
|
||||||
import sys.FileSystem;
|
|
||||||
#end
|
|
||||||
|
|
||||||
#if disable_preloader_assets
|
|
||||||
@:dox(hide) class ManifestResources {
|
|
||||||
public static var preloadLibraries:Array<Dynamic>;
|
|
||||||
public static var preloadLibraryNames:Array<String>;
|
|
||||||
public static var rootPath:String;
|
|
||||||
|
|
||||||
public static function init (config:Dynamic):Void {
|
|
||||||
preloadLibraries = new Array ();
|
|
||||||
preloadLibraryNames = new Array ();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
@:access(lime.utils.Assets)
|
|
||||||
|
|
||||||
|
|
||||||
@:keep @:dox(hide) class ManifestResources {
|
|
||||||
|
|
||||||
|
|
||||||
public static var preloadLibraries:Array<AssetLibrary>;
|
|
||||||
public static var preloadLibraryNames:Array<String>;
|
|
||||||
public static var rootPath:String;
|
|
||||||
|
|
||||||
|
|
||||||
public static function init (config:Dynamic):Void {
|
|
||||||
|
|
||||||
preloadLibraries = new Array ();
|
|
||||||
preloadLibraryNames = new Array ();
|
|
||||||
|
|
||||||
rootPath = null;
|
|
||||||
|
|
||||||
if (config != null && Reflect.hasField (config, "rootPath")) {
|
|
||||||
|
|
||||||
rootPath = Reflect.field (config, "rootPath");
|
|
||||||
|
|
||||||
if(!StringTools.endsWith (rootPath, "/")) {
|
|
||||||
|
|
||||||
rootPath += "/";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if (rootPath == null) {
|
|
||||||
|
|
||||||
#if (ios || tvos || webassembly)
|
|
||||||
rootPath = "assets/";
|
|
||||||
#elseif android
|
|
||||||
rootPath = "";
|
|
||||||
#elseif (console || sys)
|
|
||||||
rootPath = lime.system.System.applicationDirectory;
|
|
||||||
#else
|
|
||||||
rootPath = "./";
|
|
||||||
#end
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#if (openfl && !flash && !display)
|
|
||||||
openfl.text.Font.registerFont (__ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf);
|
|
||||||
openfl.text.Font.registerFont (__ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf);
|
|
||||||
openfl.text.Font.registerFont (__ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf);
|
|
||||||
openfl.text.Font.registerFont (__ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf);
|
|
||||||
|
|
||||||
#end
|
|
||||||
|
|
||||||
var data, manifest, library, bundle;
|
|
||||||
|
|
||||||
data = '{"name":null,"assets":"aoy4:sizei259416y4:typey4:FONTy9:classNamey55:__ASSET__assets_fonts_montserrat_montserratlight300_ttfy2:idy18:MontserratLight300goR0i263192R1R2R3y57:__ASSET__assets_fonts_montserrat_montserratregular400_ttfR5y20:MontserratRegular400goR0i260236R1R2R3y56:__ASSET__assets_fonts_montserrat_montserratmedium500_ttfR5y19:MontserratMedium500goR0i261588R1R2R3y54:__ASSET__assets_fonts_montserrat_montserratbold700_ttfR5y17:MontserratBold700gh","rootPath":null,"version":2,"libraryArgs":[],"libraryType":null}';
|
|
||||||
manifest = AssetManifest.parse (data, rootPath);
|
|
||||||
library = AssetLibrary.fromManifest (manifest);
|
|
||||||
Assets.registerLibrary ("default", library);
|
|
||||||
|
|
||||||
|
|
||||||
library = Assets.getLibrary ("default");
|
|
||||||
if (library != null) preloadLibraries.push (library);
|
|
||||||
else preloadLibraryNames.push ("default");
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !display
|
|
||||||
#if flash
|
|
||||||
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratlight300_ttf extends flash.text.Font { }
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratregular400_ttf extends flash.text.Font { }
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratmedium500_ttf extends flash.text.Font { }
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratbold700_ttf extends flash.text.Font { }
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__manifest_default_json extends flash.utils.ByteArray { }
|
|
||||||
|
|
||||||
|
|
||||||
#elseif (desktop || cpp)
|
|
||||||
|
|
||||||
@:keep @:font("assets/fonts/Montserrat/MontserratLight300.ttf") @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratlight300_ttf extends lime.text.Font {}
|
|
||||||
@:keep @:font("assets/fonts/Montserrat/MontserratRegular400.ttf") @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratregular400_ttf extends lime.text.Font {}
|
|
||||||
@:keep @:font("assets/fonts/Montserrat/MontserratMedium500.ttf") @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratmedium500_ttf extends lime.text.Font {}
|
|
||||||
@:keep @:font("assets/fonts/Montserrat/MontserratBold700.ttf") @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratbold700_ttf extends lime.text.Font {}
|
|
||||||
@:keep @:file("") @:noCompletion #if display private #end class __ASSET__manifest_default_json extends haxe.io.Bytes {}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
@:keep @:expose('__ASSET__assets_fonts_montserrat_montserratlight300_ttf') @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratlight300_ttf extends lime.text.Font { public function new () { #if !html5 __fontPath = "assets/fonts/Montserrat/MontserratLight300.ttf"; #else ascender = null; descender = null; height = null; numGlyphs = null; underlinePosition = null; underlineThickness = null; unitsPerEM = null; #end name = "Montserrat Light"; super (); }}
|
|
||||||
@:keep @:expose('__ASSET__assets_fonts_montserrat_montserratregular400_ttf') @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratregular400_ttf extends lime.text.Font { public function new () { #if !html5 __fontPath = "assets/fonts/Montserrat/MontserratRegular400.ttf"; #else ascender = null; descender = null; height = null; numGlyphs = null; underlinePosition = null; underlineThickness = null; unitsPerEM = null; #end name = "Montserrat Regular"; super (); }}
|
|
||||||
@:keep @:expose('__ASSET__assets_fonts_montserrat_montserratmedium500_ttf') @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratmedium500_ttf extends lime.text.Font { public function new () { #if !html5 __fontPath = "assets/fonts/Montserrat/MontserratMedium500.ttf"; #else ascender = null; descender = null; height = null; numGlyphs = null; underlinePosition = null; underlineThickness = null; unitsPerEM = null; #end name = "Montserrat Medium"; super (); }}
|
|
||||||
@:keep @:expose('__ASSET__assets_fonts_montserrat_montserratbold700_ttf') @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratbold700_ttf extends lime.text.Font { public function new () { #if !html5 __fontPath = "assets/fonts/Montserrat/MontserratBold700.ttf"; #else ascender = null; descender = null; height = null; numGlyphs = null; underlinePosition = null; underlineThickness = null; unitsPerEM = null; #end name = "Montserrat Bold"; super (); }}
|
|
||||||
|
|
||||||
|
|
||||||
#end
|
|
||||||
|
|
||||||
#if (openfl && !flash)
|
|
||||||
|
|
||||||
#if html5
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratlight300_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratregular400_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratmedium500_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratbold700_ttf ()); super (); }}
|
|
||||||
|
|
||||||
#else
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratlight300_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratregular400_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratmedium500_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratbold700_ttf ()); super (); }}
|
|
||||||
|
|
||||||
#end
|
|
||||||
|
|
||||||
#end
|
|
||||||
#end
|
|
||||||
|
|
||||||
#end
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
-main ApplicationMain
|
|
||||||
--macro lime._internal.macros.DefineMacro.run()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/lime/8,2,3/src
|
|
||||||
-D lime=8.2.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-cairngorm/1,0,0/src
|
|
||||||
-D feathersui-cairngorm=1.0.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui/1,3,0/src
|
|
||||||
-D feathersui=1.3.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/actuate/1,9,0/src
|
|
||||||
-D actuate=1.9.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/hxargs/4,0,0
|
|
||||||
-D hxargs=4.0.0
|
|
||||||
--macro openfl.utils._internal.ExtraParamsMacro.include()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/openfl/9,4,2/src
|
|
||||||
-D openfl=9.4.2
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-rpc-services/1,0,3/src
|
|
||||||
-D feathersui-rpc-services=1.0.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/amfio/1,0,2/src
|
|
||||||
-D amfio=1.0.2
|
|
||||||
-cp src
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/openfl/9,4,2/lib/flash-externs/src
|
|
||||||
-D AIR_SDK=/Users/chatmurai/Documents/code/AS3/SDKs/AIR_SDK_32.0
|
|
||||||
-D native-trace
|
|
||||||
-D tools=8.2.3
|
|
||||||
-D flash-use-stage
|
|
||||||
-D no-compilation
|
|
||||||
-D openfl-flash
|
|
||||||
-D web
|
|
||||||
-cp bin/flash
|
|
||||||
-swf-lib obj/assets.swf
|
|
||||||
-swf-version 17
|
|
||||||
-swf bin/flash/bin/LPTCManager2026.swf
|
|
||||||
-cp bin/flash/haxe
|
|
||||||
-debug
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
-main ApplicationMain
|
|
||||||
--macro lime._internal.macros.DefineMacro.run()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/lime/8,2,3/src
|
|
||||||
-D lime=8.2.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-cairngorm/1,0,0/src
|
|
||||||
-D feathersui-cairngorm=1.0.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui/1,3,0/src
|
|
||||||
-D feathersui=1.3.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/actuate/1,9,0/src
|
|
||||||
-D actuate=1.9.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/hxargs/4,0,0
|
|
||||||
-D hxargs=4.0.0
|
|
||||||
--macro openfl.utils._internal.ExtraParamsMacro.include()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/openfl/9,4,2/src
|
|
||||||
-D openfl=9.4.2
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-rpc-services/1,0,3/src
|
|
||||||
-D feathersui-rpc-services=1.0.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/amfio/1,0,2/src
|
|
||||||
-D amfio=1.0.2
|
|
||||||
-cp src
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/openfl/9,4,2/lib/flash-externs/src
|
|
||||||
-D AIR_SDK=/Users/chatmurai/Documents/code/AS3/SDKs/AIR_SDK_32.0
|
|
||||||
-D native-trace
|
|
||||||
-D tools=8.2.3
|
|
||||||
-D flash-use-stage
|
|
||||||
-D no-compilation
|
|
||||||
-D openfl-flash
|
|
||||||
-D web
|
|
||||||
-cp bin/flash
|
|
||||||
-swf-lib obj/assets.swf
|
|
||||||
-swf-version 17
|
|
||||||
-swf bin/flash/bin/LPTCManager2026.swf
|
|
||||||
-cp bin/flash/haxe
|
|
||||||
-D final
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
-main ApplicationMain
|
|
||||||
--macro lime._internal.macros.DefineMacro.run()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/lime/8,2,3/src
|
|
||||||
-D lime=8.2.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-cairngorm/1,0,0/src
|
|
||||||
-D feathersui-cairngorm=1.0.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui/1,3,0/src
|
|
||||||
-D feathersui=1.3.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/actuate/1,9,0/src
|
|
||||||
-D actuate=1.9.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/hxargs/4,0,0
|
|
||||||
-D hxargs=4.0.0
|
|
||||||
--macro openfl.utils._internal.ExtraParamsMacro.include()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/openfl/9,4,2/src
|
|
||||||
-D openfl=9.4.2
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-rpc-services/1,0,3/src
|
|
||||||
-D feathersui-rpc-services=1.0.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/amfio/1,0,2/src
|
|
||||||
-D amfio=1.0.2
|
|
||||||
-cp src
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/openfl/9,4,2/lib/flash-externs/src
|
|
||||||
-D AIR_SDK=/Users/chatmurai/Documents/code/AS3/SDKs/AIR_SDK_32.0
|
|
||||||
-D native-trace
|
|
||||||
-D tools=8.2.3
|
|
||||||
-D flash-use-stage
|
|
||||||
-D no-compilation
|
|
||||||
-D openfl-flash
|
|
||||||
-D web
|
|
||||||
-cp bin/flash
|
|
||||||
-swf-lib obj/assets.swf
|
|
||||||
-swf-version 17
|
|
||||||
-swf bin/flash/bin/LPTCManager2026.swf
|
|
||||||
-cp bin/flash/haxe
|
|
||||||
Binary file not shown.
@@ -1,5 +0,0 @@
|
|||||||
bin/html5/bin/assets/fonts/Montserrat/MontserratLight300
|
|
||||||
bin/html5/bin/assets/fonts/Montserrat/MontserratRegular400
|
|
||||||
bin/html5/bin/assets/fonts/Montserrat/MontserratMedium500
|
|
||||||
bin/html5/bin/assets/fonts/Montserrat/MontserratBold700
|
|
||||||
bin/html5/bin/manifest/default.json
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 223 B |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,68 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
|
|
||||||
<meta charset="utf-8">
|
|
||||||
|
|
||||||
<title>lepetittrot.com - manager</title>
|
|
||||||
|
|
||||||
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" type="image/png" href="./favicon.png">
|
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript" src="./LPTCManager2026.js"></script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
window.addEventListener ("touchmove", function (event) { event.preventDefault (); }, { capture: false, passive: false });
|
|
||||||
if (typeof window.devicePixelRatio != 'undefined' && window.devicePixelRatio > 2) {
|
|
||||||
var meta = document.getElementById ("viewport");
|
|
||||||
meta.setAttribute ('content', 'width=device-width, initial-scale=' + (2 / window.devicePixelRatio) + ', user-scalable=no');
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
html,body { margin: 0; padding: 0; height: 100%; overflow: hidden; }
|
|
||||||
#openfl-content { background: #000000; width: 100%; height: 100%; }
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Montserrat Light';
|
|
||||||
src: url('assets/fonts/Montserrat/MontserratLight300.ttf') format('truetype');
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Montserrat Regular';
|
|
||||||
src: url('assets/fonts/Montserrat/MontserratRegular400.ttf') format('truetype');
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Montserrat Medium';
|
|
||||||
src: url('assets/fonts/Montserrat/MontserratMedium500.ttf') format('truetype');
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Montserrat Bold';
|
|
||||||
src: url('assets/fonts/Montserrat/MontserratBold700.ttf') format('truetype');
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<noscript>This webpage makes extensive use of JavaScript. Please enable JavaScript in your web browser to view this page.</noscript>
|
|
||||||
|
|
||||||
<div id="openfl-content"></div>
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
lime.embed ("LPTCManager2026", "openfl-content", 500, 800, { parameters: {} });
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"name":null,"assets":"aoy4:sizei259416y4:typey4:FONTy9:classNamey55:__ASSET__assets_fonts_montserrat_montserratlight300_ttfy2:idy18:MontserratLight300y7:preloadtgoR0i263192R1R2R3y57:__ASSET__assets_fonts_montserrat_montserratregular400_ttfR5y20:MontserratRegular400R7tgoR0i260236R1R2R3y56:__ASSET__assets_fonts_montserrat_montserratmedium500_ttfR5y19:MontserratMedium500R7tgoR0i261588R1R2R3y54:__ASSET__assets_fonts_montserrat_montserratbold700_ttfR5y17:MontserratBold700R7tgh","rootPath":null,"version":2,"libraryArgs":[],"libraryType":null}
|
|
||||||
@@ -1,330 +0,0 @@
|
|||||||
package;
|
|
||||||
|
|
||||||
#if macro
|
|
||||||
import haxe.macro.Compiler;
|
|
||||||
import haxe.macro.Context;
|
|
||||||
import haxe.macro.Expr;
|
|
||||||
#end
|
|
||||||
|
|
||||||
@:access(lime.app.Application)
|
|
||||||
@:access(lime.system.System)
|
|
||||||
@:access(openfl.display.Stage)
|
|
||||||
@:access(openfl.events.UncaughtErrorEvents)
|
|
||||||
@:dox(hide)
|
|
||||||
class ApplicationMain
|
|
||||||
{
|
|
||||||
#if !macro
|
|
||||||
public static function main()
|
|
||||||
{
|
|
||||||
lime.system.System.__registerEntryPoint("LPTCManager2026", create);
|
|
||||||
|
|
||||||
#if (js && html5)
|
|
||||||
#if (munit || (utest && openfl_enable_utest_legacy_mode))
|
|
||||||
lime.system.System.embed("LPTCManager2026", null, 500, 800);
|
|
||||||
#end
|
|
||||||
#else
|
|
||||||
create(null);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function create(config):Void
|
|
||||||
{
|
|
||||||
var app = new openfl.display.Application();
|
|
||||||
|
|
||||||
#if !disable_preloader_assets
|
|
||||||
ManifestResources.init(config);
|
|
||||||
#end
|
|
||||||
|
|
||||||
app.meta["build"] = "6";
|
|
||||||
app.meta["company"] = "Nekotoro";
|
|
||||||
app.meta["file"] = "LPTCManager2026";
|
|
||||||
app.meta["name"] = "lepetittrot.com - manager";
|
|
||||||
app.meta["packageName"] = "com.nekotoro.LPTCManager2026";
|
|
||||||
app.meta["version"] = "1.0.0";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if !flash
|
|
||||||
|
|
||||||
var attributes:lime.ui.WindowAttributes = {
|
|
||||||
allowHighDPI: true,
|
|
||||||
alwaysOnTop: false,
|
|
||||||
borderless: false,
|
|
||||||
// display: 0,
|
|
||||||
element: null,
|
|
||||||
frameRate: 0,
|
|
||||||
#if !web fullscreen: false, #end
|
|
||||||
height: 800,
|
|
||||||
hidden: #if munit true #else false #end,
|
|
||||||
maximized: false,
|
|
||||||
minimized: false,
|
|
||||||
parameters: {},
|
|
||||||
resizable: true,
|
|
||||||
title: "lepetittrot.com - manager",
|
|
||||||
width: 500,
|
|
||||||
x: null,
|
|
||||||
y: null,
|
|
||||||
};
|
|
||||||
|
|
||||||
attributes.context = {
|
|
||||||
antialiasing: 0,
|
|
||||||
background: 13156797,
|
|
||||||
colorDepth: 32,
|
|
||||||
depth: true,
|
|
||||||
hardware: true,
|
|
||||||
stencil: true,
|
|
||||||
type: null,
|
|
||||||
vsync: false
|
|
||||||
};
|
|
||||||
|
|
||||||
if (app.window == null)
|
|
||||||
{
|
|
||||||
if (config != null)
|
|
||||||
{
|
|
||||||
for (field in Reflect.fields(config))
|
|
||||||
{
|
|
||||||
if (Reflect.hasField(attributes, field))
|
|
||||||
{
|
|
||||||
Reflect.setField(attributes, field, Reflect.field(config, field));
|
|
||||||
}
|
|
||||||
else if (Reflect.hasField(attributes.context, field))
|
|
||||||
{
|
|
||||||
Reflect.setField(attributes.context, field, Reflect.field(config, field));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#if sys
|
|
||||||
lime.system.System.__parseArguments(attributes);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
app.createWindow(attributes);
|
|
||||||
|
|
||||||
#elseif air
|
|
||||||
app.window.title = "lepetittrot.com - manager";
|
|
||||||
#else
|
|
||||||
app.window.context.attributes.background = 13156797;
|
|
||||||
app.window.frameRate = 0;
|
|
||||||
#end
|
|
||||||
|
|
||||||
var preloader = getPreloader();
|
|
||||||
app.preloader.onProgress.add (function(loaded, total)
|
|
||||||
{
|
|
||||||
@:privateAccess preloader.update(loaded, total);
|
|
||||||
});
|
|
||||||
app.preloader.onComplete.add(function()
|
|
||||||
{
|
|
||||||
@:privateAccess preloader.start();
|
|
||||||
});
|
|
||||||
|
|
||||||
preloader.onComplete.add(start.bind((cast app.window:openfl.display.Window).stage));
|
|
||||||
|
|
||||||
#if !disable_preloader_assets
|
|
||||||
for (library in ManifestResources.preloadLibraries)
|
|
||||||
{
|
|
||||||
app.preloader.addLibrary(library);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (name in ManifestResources.preloadLibraryNames)
|
|
||||||
{
|
|
||||||
app.preloader.addLibraryName(name);
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
|
|
||||||
app.preloader.load();
|
|
||||||
|
|
||||||
var result = app.exec();
|
|
||||||
|
|
||||||
#if (sys && !ios && !nodejs && !emscripten)
|
|
||||||
lime.system.System.exit(result);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function start(stage:openfl.display.Stage):Void
|
|
||||||
{
|
|
||||||
#if flash
|
|
||||||
ApplicationMain.getEntryPoint();
|
|
||||||
#else
|
|
||||||
if (stage.__uncaughtErrorEvents.__enabled)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
ApplicationMain.getEntryPoint();
|
|
||||||
|
|
||||||
stage.dispatchEvent(new openfl.events.Event(openfl.events.Event.RESIZE, false, false));
|
|
||||||
|
|
||||||
if (stage.window.fullscreen)
|
|
||||||
{
|
|
||||||
stage.dispatchEvent(new openfl.events.FullScreenEvent(openfl.events.FullScreenEvent.FULL_SCREEN, false, false, true, true));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (e:Dynamic)
|
|
||||||
{
|
|
||||||
#if !display
|
|
||||||
stage.__handleError(e);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ApplicationMain.getEntryPoint();
|
|
||||||
|
|
||||||
stage.dispatchEvent(new openfl.events.Event(openfl.events.Event.RESIZE, false, false));
|
|
||||||
|
|
||||||
if (stage.window.fullscreen)
|
|
||||||
{
|
|
||||||
stage.dispatchEvent(new openfl.events.FullScreenEvent(openfl.events.FullScreenEvent.FULL_SCREEN, false, false, true, true));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
|
|
||||||
macro public static function getEntryPoint()
|
|
||||||
{
|
|
||||||
var hasMain = false;
|
|
||||||
|
|
||||||
switch (Context.follow(Context.getType("LPTCManager2026")))
|
|
||||||
{
|
|
||||||
case TInst(t, params):
|
|
||||||
|
|
||||||
var type = t.get();
|
|
||||||
for (method in type.statics.get())
|
|
||||||
{
|
|
||||||
if (method.name == "main")
|
|
||||||
{
|
|
||||||
hasMain = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hasMain)
|
|
||||||
{
|
|
||||||
return Context.parse("@:privateAccess LPTCManager2026.main()", Context.currentPos());
|
|
||||||
}
|
|
||||||
else if (type.constructor != null)
|
|
||||||
{
|
|
||||||
return macro
|
|
||||||
{
|
|
||||||
var current = stage.getChildAt (0);
|
|
||||||
|
|
||||||
if (current == null || !(current is openfl.display.DisplayObjectContainer))
|
|
||||||
{
|
|
||||||
current = new openfl.display.MovieClip();
|
|
||||||
stage.addChild(current);
|
|
||||||
}
|
|
||||||
|
|
||||||
new DocumentClass(cast current);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Context.fatalError("Main class \"LPTCManager2026\" has neither a static main nor a constructor.", Context.currentPos());
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
|
||||||
|
|
||||||
Context.fatalError("Main class \"LPTCManager2026\" isn't a class.", Context.currentPos());
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
macro public static function getPreloader()
|
|
||||||
{
|
|
||||||
|
|
||||||
return macro
|
|
||||||
{
|
|
||||||
new openfl.display.Preloader(new openfl.display.Preloader.DefaultPreloader());
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !macro
|
|
||||||
@:noCompletion @:dox(hide) public static function __init__()
|
|
||||||
{
|
|
||||||
var init = lime.app.Application;
|
|
||||||
|
|
||||||
#if neko
|
|
||||||
// Copy from https://github.com/HaxeFoundation/haxe/blob/development/std/neko/_std/Sys.hx#L164
|
|
||||||
// since Sys.programPath () isn't available in __init__
|
|
||||||
var sys_program_path = {
|
|
||||||
var m = neko.vm.Module.local().name;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
sys.FileSystem.fullPath(m);
|
|
||||||
}
|
|
||||||
catch (e:Dynamic)
|
|
||||||
{
|
|
||||||
// maybe the neko module name was supplied without .n extension...
|
|
||||||
if (!StringTools.endsWith(m, ".n"))
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
sys.FileSystem.fullPath(m + ".n");
|
|
||||||
}
|
|
||||||
catch (e:Dynamic)
|
|
||||||
{
|
|
||||||
m;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
m;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var loader = new neko.vm.Loader(untyped $loader);
|
|
||||||
loader.addPath(haxe.io.Path.directory(#if (haxe_ver >= 3.3) sys_program_path #else Sys.executablePath() #end));
|
|
||||||
loader.addPath("./");
|
|
||||||
loader.addPath("@executable_path/");
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !macro
|
|
||||||
@:build(DocumentClass.build())
|
|
||||||
@:keep @:dox(hide) class DocumentClass extends LPTCManager2026 {}
|
|
||||||
#else
|
|
||||||
class DocumentClass
|
|
||||||
{
|
|
||||||
macro public static function build():Array<Field>
|
|
||||||
{
|
|
||||||
var classType = Context.getLocalClass().get();
|
|
||||||
var searchTypes = classType;
|
|
||||||
|
|
||||||
while (searchTypes != null)
|
|
||||||
{
|
|
||||||
if (searchTypes.module == "openfl.display.DisplayObject" || searchTypes.module == "flash.display.DisplayObject")
|
|
||||||
{
|
|
||||||
var fields = Context.getBuildFields();
|
|
||||||
|
|
||||||
var method = macro
|
|
||||||
{
|
|
||||||
current.addChild(this);
|
|
||||||
super();
|
|
||||||
dispatchEvent(new openfl.events.Event(openfl.events.Event.ADDED_TO_STAGE, false, false));
|
|
||||||
}
|
|
||||||
|
|
||||||
fields.push({ name: "new", access: [ APublic ], kind: FFun({ args: [ { name: "current", opt: false, type: macro :openfl.display.DisplayObjectContainer, value: null } ], expr: method, params: [], ret: macro :Void }), pos: Context.currentPos() });
|
|
||||||
|
|
||||||
return fields;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (searchTypes.superClass != null)
|
|
||||||
{
|
|
||||||
searchTypes = searchTypes.superClass.t.get();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
searchTypes = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
@@ -1,145 +0,0 @@
|
|||||||
package;
|
|
||||||
|
|
||||||
import haxe.io.Bytes;
|
|
||||||
import haxe.io.Path;
|
|
||||||
import lime.utils.AssetBundle;
|
|
||||||
import lime.utils.AssetLibrary;
|
|
||||||
import lime.utils.AssetManifest;
|
|
||||||
import lime.utils.Assets;
|
|
||||||
|
|
||||||
#if sys
|
|
||||||
import sys.FileSystem;
|
|
||||||
#end
|
|
||||||
|
|
||||||
#if disable_preloader_assets
|
|
||||||
@:dox(hide) class ManifestResources {
|
|
||||||
public static var preloadLibraries:Array<Dynamic>;
|
|
||||||
public static var preloadLibraryNames:Array<String>;
|
|
||||||
public static var rootPath:String;
|
|
||||||
|
|
||||||
public static function init (config:Dynamic):Void {
|
|
||||||
preloadLibraries = new Array ();
|
|
||||||
preloadLibraryNames = new Array ();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
@:access(lime.utils.Assets)
|
|
||||||
|
|
||||||
|
|
||||||
@:keep @:dox(hide) class ManifestResources {
|
|
||||||
|
|
||||||
|
|
||||||
public static var preloadLibraries:Array<AssetLibrary>;
|
|
||||||
public static var preloadLibraryNames:Array<String>;
|
|
||||||
public static var rootPath:String;
|
|
||||||
|
|
||||||
|
|
||||||
public static function init (config:Dynamic):Void {
|
|
||||||
|
|
||||||
preloadLibraries = new Array ();
|
|
||||||
preloadLibraryNames = new Array ();
|
|
||||||
|
|
||||||
rootPath = null;
|
|
||||||
|
|
||||||
if (config != null && Reflect.hasField (config, "rootPath")) {
|
|
||||||
|
|
||||||
rootPath = Reflect.field (config, "rootPath");
|
|
||||||
|
|
||||||
if(!StringTools.endsWith (rootPath, "/")) {
|
|
||||||
|
|
||||||
rootPath += "/";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if (rootPath == null) {
|
|
||||||
|
|
||||||
#if (ios || tvos || webassembly)
|
|
||||||
rootPath = "assets/";
|
|
||||||
#elseif android
|
|
||||||
rootPath = "";
|
|
||||||
#elseif (console || sys)
|
|
||||||
rootPath = lime.system.System.applicationDirectory;
|
|
||||||
#else
|
|
||||||
rootPath = "./";
|
|
||||||
#end
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#if (openfl && !flash && !display)
|
|
||||||
openfl.text.Font.registerFont (__ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf);
|
|
||||||
openfl.text.Font.registerFont (__ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf);
|
|
||||||
openfl.text.Font.registerFont (__ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf);
|
|
||||||
openfl.text.Font.registerFont (__ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf);
|
|
||||||
|
|
||||||
#end
|
|
||||||
|
|
||||||
var data, manifest, library, bundle;
|
|
||||||
|
|
||||||
data = '{"name":null,"assets":"aoy4:sizei259416y4:typey4:FONTy9:classNamey55:__ASSET__assets_fonts_montserrat_montserratlight300_ttfy2:idy18:MontserratLight300y7:preloadtgoR0i263192R1R2R3y57:__ASSET__assets_fonts_montserrat_montserratregular400_ttfR5y20:MontserratRegular400R7tgoR0i260236R1R2R3y56:__ASSET__assets_fonts_montserrat_montserratmedium500_ttfR5y19:MontserratMedium500R7tgoR0i261588R1R2R3y54:__ASSET__assets_fonts_montserrat_montserratbold700_ttfR5y17:MontserratBold700R7tgh","rootPath":null,"version":2,"libraryArgs":[],"libraryType":null}';
|
|
||||||
manifest = AssetManifest.parse (data, rootPath);
|
|
||||||
library = AssetLibrary.fromManifest (manifest);
|
|
||||||
Assets.registerLibrary ("default", library);
|
|
||||||
|
|
||||||
|
|
||||||
library = Assets.getLibrary ("default");
|
|
||||||
if (library != null) preloadLibraries.push (library);
|
|
||||||
else preloadLibraryNames.push ("default");
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !display
|
|
||||||
#if flash
|
|
||||||
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratlight300_ttf extends null { }
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratregular400_ttf extends null { }
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratmedium500_ttf extends null { }
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratbold700_ttf extends null { }
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__manifest_default_json extends null { }
|
|
||||||
|
|
||||||
|
|
||||||
#elseif (desktop || cpp)
|
|
||||||
|
|
||||||
@:keep @:font("bin/html5/obj/webfont/MontserratLight300.ttf") @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratlight300_ttf extends lime.text.Font {}
|
|
||||||
@:keep @:font("bin/html5/obj/webfont/MontserratRegular400.ttf") @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratregular400_ttf extends lime.text.Font {}
|
|
||||||
@:keep @:font("bin/html5/obj/webfont/MontserratMedium500.ttf") @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratmedium500_ttf extends lime.text.Font {}
|
|
||||||
@:keep @:font("bin/html5/obj/webfont/MontserratBold700.ttf") @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratbold700_ttf extends lime.text.Font {}
|
|
||||||
@:keep @:file("") @:noCompletion #if display private #end class __ASSET__manifest_default_json extends haxe.io.Bytes {}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
@:keep @:expose('__ASSET__assets_fonts_montserrat_montserratlight300_ttf') @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratlight300_ttf extends lime.text.Font { public function new () { #if !html5 __fontPath = "assets/fonts/Montserrat/MontserratLight300"; #else ascender = 968; descender = -251; height = 1219; numGlyphs = 1943; underlinePosition = -100; underlineThickness = 50; unitsPerEM = 1000; #end name = "Montserrat Light"; super (); }}
|
|
||||||
@:keep @:expose('__ASSET__assets_fonts_montserrat_montserratregular400_ttf') @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratregular400_ttf extends lime.text.Font { public function new () { #if !html5 __fontPath = "assets/fonts/Montserrat/MontserratRegular400"; #else ascender = 968; descender = -251; height = 1219; numGlyphs = 1943; underlinePosition = -100; underlineThickness = 50; unitsPerEM = 1000; #end name = "Montserrat Regular"; super (); }}
|
|
||||||
@:keep @:expose('__ASSET__assets_fonts_montserrat_montserratmedium500_ttf') @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratmedium500_ttf extends lime.text.Font { public function new () { #if !html5 __fontPath = "assets/fonts/Montserrat/MontserratMedium500"; #else ascender = 968; descender = -251; height = 1219; numGlyphs = 1943; underlinePosition = -100; underlineThickness = 50; unitsPerEM = 1000; #end name = "Montserrat Medium"; super (); }}
|
|
||||||
@:keep @:expose('__ASSET__assets_fonts_montserrat_montserratbold700_ttf') @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserratbold700_ttf extends lime.text.Font { public function new () { #if !html5 __fontPath = "assets/fonts/Montserrat/MontserratBold700"; #else ascender = 968; descender = -251; height = 1219; numGlyphs = 1943; underlinePosition = -100; underlineThickness = 50; unitsPerEM = 1000; #end name = "Montserrat Bold"; super (); }}
|
|
||||||
|
|
||||||
|
|
||||||
#end
|
|
||||||
|
|
||||||
#if (openfl && !flash)
|
|
||||||
|
|
||||||
#if html5
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratlight300_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratregular400_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratmedium500_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratbold700_ttf ()); super (); }}
|
|
||||||
|
|
||||||
#else
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratlight300_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratlight300_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratregular400_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratregular400_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratmedium500_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratmedium500_ttf ()); super (); }}
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserratbold700_ttf extends openfl.text.Font { public function new () { __fromLimeFont (new __ASSET__assets_fonts_montserrat_montserratbold700_ttf ()); super (); }}
|
|
||||||
|
|
||||||
#end
|
|
||||||
|
|
||||||
#end
|
|
||||||
#end
|
|
||||||
|
|
||||||
#end
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
-main ApplicationMain
|
|
||||||
--macro lime._internal.macros.DefineMacro.run()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/lime/8,2,3/src
|
|
||||||
-D lime=8.2.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-cairngorm/1,0,0/src
|
|
||||||
-D feathersui-cairngorm=1.0.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui/1,3,0/src
|
|
||||||
-D feathersui=1.3.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/actuate/1,9,0/src
|
|
||||||
-D actuate=1.9.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/hxargs/4,0,0
|
|
||||||
-D hxargs=4.0.0
|
|
||||||
--macro openfl.utils._internal.ExtraParamsMacro.include()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/openfl/9,4,2/src
|
|
||||||
-D openfl=9.4.2
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-rpc-services/1,0,3/src
|
|
||||||
-D feathersui-rpc-services=1.0.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/amfio/1,0,2/src
|
|
||||||
-D amfio=1.0.2
|
|
||||||
-cp src
|
|
||||||
-D AIR_SDK=/Users/chatmurai/Documents/code/AS3/SDKs/AIR_SDK_32.0
|
|
||||||
-D lime-threads
|
|
||||||
-D tools=8.2.3
|
|
||||||
-D lime-canvas
|
|
||||||
-D howlerjs
|
|
||||||
-D no-compilation
|
|
||||||
-D openfl-html5
|
|
||||||
-D lime-webgl
|
|
||||||
-D lime-dom
|
|
||||||
-D lime-howlerjs
|
|
||||||
-D lime-html5
|
|
||||||
-D html5
|
|
||||||
-D web
|
|
||||||
--remap flash:openfl
|
|
||||||
-js bin/html5/bin/LPTCManager2026.js
|
|
||||||
-cp bin/html5/haxe
|
|
||||||
-D html5
|
|
||||||
-debug
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
-main ApplicationMain
|
|
||||||
--macro lime._internal.macros.DefineMacro.run()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/lime/8,2,3/src
|
|
||||||
-D lime=8.2.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-cairngorm/1,0,0/src
|
|
||||||
-D feathersui-cairngorm=1.0.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui/1,3,0/src
|
|
||||||
-D feathersui=1.3.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/actuate/1,9,0/src
|
|
||||||
-D actuate=1.9.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/hxargs/4,0,0
|
|
||||||
-D hxargs=4.0.0
|
|
||||||
--macro openfl.utils._internal.ExtraParamsMacro.include()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/openfl/9,4,2/src
|
|
||||||
-D openfl=9.4.2
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-rpc-services/1,0,3/src
|
|
||||||
-D feathersui-rpc-services=1.0.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/amfio/1,0,2/src
|
|
||||||
-D amfio=1.0.2
|
|
||||||
-cp src
|
|
||||||
-D AIR_SDK=/Users/chatmurai/Documents/code/AS3/SDKs/AIR_SDK_32.0
|
|
||||||
-D lime-threads
|
|
||||||
-D tools=8.2.3
|
|
||||||
-D lime-canvas
|
|
||||||
-D howlerjs
|
|
||||||
-D no-compilation
|
|
||||||
-D openfl-html5
|
|
||||||
-D lime-webgl
|
|
||||||
-D lime-dom
|
|
||||||
-D lime-howlerjs
|
|
||||||
-D lime-html5
|
|
||||||
-D html5
|
|
||||||
-D web
|
|
||||||
--remap flash:openfl
|
|
||||||
-js bin/html5/bin/LPTCManager2026.js
|
|
||||||
-cp bin/html5/haxe
|
|
||||||
-D html5
|
|
||||||
-dce full
|
|
||||||
-D final
|
|
||||||
-D js-flatten
|
|
||||||
-dce full
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
-main ApplicationMain
|
|
||||||
--macro lime._internal.macros.DefineMacro.run()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/lime/8,2,3/src
|
|
||||||
-D lime=8.2.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-cairngorm/1,0,0/src
|
|
||||||
-D feathersui-cairngorm=1.0.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui/1,3,0/src
|
|
||||||
-D feathersui=1.3.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/actuate/1,9,0/src
|
|
||||||
-D actuate=1.9.0
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/hxargs/4,0,0
|
|
||||||
-D hxargs=4.0.0
|
|
||||||
--macro openfl.utils._internal.ExtraParamsMacro.include()
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/openfl/9,4,2/src
|
|
||||||
-D openfl=9.4.2
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/feathersui-rpc-services/1,0,3/src
|
|
||||||
-D feathersui-rpc-services=1.0.3
|
|
||||||
-cp /Users/chatmurai/Documents/code/Haxe/lib/amfio/1,0,2/src
|
|
||||||
-D amfio=1.0.2
|
|
||||||
-cp src
|
|
||||||
-D AIR_SDK=/Users/chatmurai/Documents/code/AS3/SDKs/AIR_SDK_32.0
|
|
||||||
-D lime-threads
|
|
||||||
-D tools=8.2.3
|
|
||||||
-D lime-canvas
|
|
||||||
-D howlerjs
|
|
||||||
-D no-compilation
|
|
||||||
-D openfl-html5
|
|
||||||
-D lime-webgl
|
|
||||||
-D lime-dom
|
|
||||||
-D lime-howlerjs
|
|
||||||
-D lime-html5
|
|
||||||
-D html5
|
|
||||||
-D web
|
|
||||||
--remap flash:openfl
|
|
||||||
-js bin/html5/bin/LPTCManager2026.js
|
|
||||||
-cp bin/html5/haxe
|
|
||||||
-D html5
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,2 +0,0 @@
|
|||||||
bin/neko/bin/assets/fonts/Montserrat/Montserrat_SemiBold_600.ttf
|
|
||||||
bin/neko/bin/manifest/default.json
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>com.apple.security.app-sandbox</key>
|
|
||||||
<true/>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
|
||||||
<string>English</string>
|
|
||||||
<key>CFBundleExecutable</key>
|
|
||||||
<string>LPTCManager2026</string>
|
|
||||||
<key>CFBundleIconFile</key>
|
|
||||||
<string>icon.icns</string>
|
|
||||||
<key>CFBundleIdentifier</key>
|
|
||||||
<string>com.nekotoro.LPTCManager2026</string>
|
|
||||||
<key>CFBundleInfoDictionaryVersion</key>
|
|
||||||
<string>6.0</string>
|
|
||||||
<key>CFBundleName</key>
|
|
||||||
<string>LPTCManager2026</string>
|
|
||||||
<key>CFBundlePackageType</key>
|
|
||||||
<string>APPL</string>
|
|
||||||
<key>CFBundleShortVersionString</key>
|
|
||||||
<string>1.0.0</string>
|
|
||||||
<key>CFBundleSignature</key>
|
|
||||||
<string>haxe</string>
|
|
||||||
<key>CFBundleVersion</key>
|
|
||||||
<string>2</string>
|
|
||||||
<key>NSAppleScriptEnabled</key>
|
|
||||||
<string>NO</string>
|
|
||||||
<key>LSApplicationCategoryType</key>
|
|
||||||
<string>public.app-category.games</string>
|
|
||||||
<key>NSHighResolutionCapable</key>
|
|
||||||
<string>True</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>com.apple.security.app-sandbox</key>
|
|
||||||
<true/>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
|
||||||
<string>English</string>
|
|
||||||
<key>CFBundleExecutable</key>
|
|
||||||
<string>MyApplication</string>
|
|
||||||
<key>CFBundleIconFile</key>
|
|
||||||
<string>icon.icns</string>
|
|
||||||
<key>CFBundleIdentifier</key>
|
|
||||||
<string>com.nekotoro.LPTCManager2026</string>
|
|
||||||
<key>CFBundleInfoDictionaryVersion</key>
|
|
||||||
<string>6.0</string>
|
|
||||||
<key>CFBundleName</key>
|
|
||||||
<string>LPTCManager2026</string>
|
|
||||||
<key>CFBundlePackageType</key>
|
|
||||||
<string>APPL</string>
|
|
||||||
<key>CFBundleShortVersionString</key>
|
|
||||||
<string>1.0.0</string>
|
|
||||||
<key>CFBundleSignature</key>
|
|
||||||
<string>haxe</string>
|
|
||||||
<key>CFBundleVersion</key>
|
|
||||||
<string>2</string>
|
|
||||||
<key>NSAppleScriptEnabled</key>
|
|
||||||
<string>NO</string>
|
|
||||||
<key>LSApplicationCategoryType</key>
|
|
||||||
<string>public.app-category.games</string>
|
|
||||||
<key>NSHighResolutionCapable</key>
|
|
||||||
<string>True</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,330 +0,0 @@
|
|||||||
package;
|
|
||||||
|
|
||||||
#if macro
|
|
||||||
import haxe.macro.Compiler;
|
|
||||||
import haxe.macro.Context;
|
|
||||||
import haxe.macro.Expr;
|
|
||||||
#end
|
|
||||||
|
|
||||||
@:access(lime.app.Application)
|
|
||||||
@:access(lime.system.System)
|
|
||||||
@:access(openfl.display.Stage)
|
|
||||||
@:access(openfl.events.UncaughtErrorEvents)
|
|
||||||
@:dox(hide)
|
|
||||||
class ApplicationMain
|
|
||||||
{
|
|
||||||
#if !macro
|
|
||||||
public static function main()
|
|
||||||
{
|
|
||||||
lime.system.System.__registerEntryPoint("LPTCManager2026", create);
|
|
||||||
|
|
||||||
#if (js && html5)
|
|
||||||
#if (munit || (utest && openfl_enable_utest_legacy_mode))
|
|
||||||
lime.system.System.embed("LPTCManager2026", null, 500, 800);
|
|
||||||
#end
|
|
||||||
#else
|
|
||||||
create(null);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function create(config):Void
|
|
||||||
{
|
|
||||||
var app = new openfl.display.Application();
|
|
||||||
|
|
||||||
#if !disable_preloader_assets
|
|
||||||
ManifestResources.init(config);
|
|
||||||
#end
|
|
||||||
|
|
||||||
app.meta["build"] = "5";
|
|
||||||
app.meta["company"] = "Nekotoro";
|
|
||||||
app.meta["file"] = "LPTCManager2026";
|
|
||||||
app.meta["name"] = "LPTCManager2026";
|
|
||||||
app.meta["packageName"] = "com.nekotoro.LPTCManager2026";
|
|
||||||
app.meta["version"] = "1.0.0";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if !flash
|
|
||||||
|
|
||||||
var attributes:lime.ui.WindowAttributes = {
|
|
||||||
allowHighDPI: true,
|
|
||||||
alwaysOnTop: false,
|
|
||||||
borderless: false,
|
|
||||||
// display: 0,
|
|
||||||
element: null,
|
|
||||||
frameRate: 60,
|
|
||||||
#if !web fullscreen: false, #end
|
|
||||||
height: 800,
|
|
||||||
hidden: #if munit true #else false #end,
|
|
||||||
maximized: false,
|
|
||||||
minimized: false,
|
|
||||||
parameters: {},
|
|
||||||
resizable: true,
|
|
||||||
title: "LPTCManager2026",
|
|
||||||
width: 500,
|
|
||||||
x: null,
|
|
||||||
y: null,
|
|
||||||
};
|
|
||||||
|
|
||||||
attributes.context = {
|
|
||||||
antialiasing: 0,
|
|
||||||
background: 13156797,
|
|
||||||
colorDepth: 32,
|
|
||||||
depth: true,
|
|
||||||
hardware: true,
|
|
||||||
stencil: true,
|
|
||||||
type: null,
|
|
||||||
vsync: false
|
|
||||||
};
|
|
||||||
|
|
||||||
if (app.window == null)
|
|
||||||
{
|
|
||||||
if (config != null)
|
|
||||||
{
|
|
||||||
for (field in Reflect.fields(config))
|
|
||||||
{
|
|
||||||
if (Reflect.hasField(attributes, field))
|
|
||||||
{
|
|
||||||
Reflect.setField(attributes, field, Reflect.field(config, field));
|
|
||||||
}
|
|
||||||
else if (Reflect.hasField(attributes.context, field))
|
|
||||||
{
|
|
||||||
Reflect.setField(attributes.context, field, Reflect.field(config, field));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#if sys
|
|
||||||
lime.system.System.__parseArguments(attributes);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
app.createWindow(attributes);
|
|
||||||
|
|
||||||
#elseif air
|
|
||||||
app.window.title = "LPTCManager2026";
|
|
||||||
#else
|
|
||||||
app.window.context.attributes.background = 13156797;
|
|
||||||
app.window.frameRate = 60;
|
|
||||||
#end
|
|
||||||
|
|
||||||
var preloader = getPreloader();
|
|
||||||
app.preloader.onProgress.add (function(loaded, total)
|
|
||||||
{
|
|
||||||
@:privateAccess preloader.update(loaded, total);
|
|
||||||
});
|
|
||||||
app.preloader.onComplete.add(function()
|
|
||||||
{
|
|
||||||
@:privateAccess preloader.start();
|
|
||||||
});
|
|
||||||
|
|
||||||
preloader.onComplete.add(start.bind((cast app.window:openfl.display.Window).stage));
|
|
||||||
|
|
||||||
#if !disable_preloader_assets
|
|
||||||
for (library in ManifestResources.preloadLibraries)
|
|
||||||
{
|
|
||||||
app.preloader.addLibrary(library);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (name in ManifestResources.preloadLibraryNames)
|
|
||||||
{
|
|
||||||
app.preloader.addLibraryName(name);
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
|
|
||||||
app.preloader.load();
|
|
||||||
|
|
||||||
var result = app.exec();
|
|
||||||
|
|
||||||
#if (sys && !ios && !nodejs && !emscripten)
|
|
||||||
lime.system.System.exit(result);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function start(stage:openfl.display.Stage):Void
|
|
||||||
{
|
|
||||||
#if flash
|
|
||||||
ApplicationMain.getEntryPoint();
|
|
||||||
#else
|
|
||||||
if (stage.__uncaughtErrorEvents.__enabled)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
ApplicationMain.getEntryPoint();
|
|
||||||
|
|
||||||
stage.dispatchEvent(new openfl.events.Event(openfl.events.Event.RESIZE, false, false));
|
|
||||||
|
|
||||||
if (stage.window.fullscreen)
|
|
||||||
{
|
|
||||||
stage.dispatchEvent(new openfl.events.FullScreenEvent(openfl.events.FullScreenEvent.FULL_SCREEN, false, false, true, true));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (e:Dynamic)
|
|
||||||
{
|
|
||||||
#if !display
|
|
||||||
stage.__handleError(e);
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ApplicationMain.getEntryPoint();
|
|
||||||
|
|
||||||
stage.dispatchEvent(new openfl.events.Event(openfl.events.Event.RESIZE, false, false));
|
|
||||||
|
|
||||||
if (stage.window.fullscreen)
|
|
||||||
{
|
|
||||||
stage.dispatchEvent(new openfl.events.FullScreenEvent(openfl.events.FullScreenEvent.FULL_SCREEN, false, false, true, true));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
|
|
||||||
macro public static function getEntryPoint()
|
|
||||||
{
|
|
||||||
var hasMain = false;
|
|
||||||
|
|
||||||
switch (Context.follow(Context.getType("LPTCManager2026")))
|
|
||||||
{
|
|
||||||
case TInst(t, params):
|
|
||||||
|
|
||||||
var type = t.get();
|
|
||||||
for (method in type.statics.get())
|
|
||||||
{
|
|
||||||
if (method.name == "main")
|
|
||||||
{
|
|
||||||
hasMain = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hasMain)
|
|
||||||
{
|
|
||||||
return Context.parse("@:privateAccess LPTCManager2026.main()", Context.currentPos());
|
|
||||||
}
|
|
||||||
else if (type.constructor != null)
|
|
||||||
{
|
|
||||||
return macro
|
|
||||||
{
|
|
||||||
var current = stage.getChildAt (0);
|
|
||||||
|
|
||||||
if (current == null || !(current is openfl.display.DisplayObjectContainer))
|
|
||||||
{
|
|
||||||
current = new openfl.display.MovieClip();
|
|
||||||
stage.addChild(current);
|
|
||||||
}
|
|
||||||
|
|
||||||
new DocumentClass(cast current);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Context.fatalError("Main class \"LPTCManager2026\" has neither a static main nor a constructor.", Context.currentPos());
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
|
||||||
|
|
||||||
Context.fatalError("Main class \"LPTCManager2026\" isn't a class.", Context.currentPos());
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
macro public static function getPreloader()
|
|
||||||
{
|
|
||||||
|
|
||||||
return macro
|
|
||||||
{
|
|
||||||
new openfl.display.Preloader(new openfl.display.Preloader.DefaultPreloader());
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !macro
|
|
||||||
@:noCompletion @:dox(hide) public static function __init__()
|
|
||||||
{
|
|
||||||
var init = lime.app.Application;
|
|
||||||
|
|
||||||
#if neko
|
|
||||||
// Copy from https://github.com/HaxeFoundation/haxe/blob/development/std/neko/_std/Sys.hx#L164
|
|
||||||
// since Sys.programPath () isn't available in __init__
|
|
||||||
var sys_program_path = {
|
|
||||||
var m = neko.vm.Module.local().name;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
sys.FileSystem.fullPath(m);
|
|
||||||
}
|
|
||||||
catch (e:Dynamic)
|
|
||||||
{
|
|
||||||
// maybe the neko module name was supplied without .n extension...
|
|
||||||
if (!StringTools.endsWith(m, ".n"))
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
sys.FileSystem.fullPath(m + ".n");
|
|
||||||
}
|
|
||||||
catch (e:Dynamic)
|
|
||||||
{
|
|
||||||
m;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
m;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var loader = new neko.vm.Loader(untyped $loader);
|
|
||||||
loader.addPath(haxe.io.Path.directory(#if (haxe_ver >= 3.3) sys_program_path #else Sys.executablePath() #end));
|
|
||||||
loader.addPath("./");
|
|
||||||
loader.addPath("@executable_path/");
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !macro
|
|
||||||
@:build(DocumentClass.build())
|
|
||||||
@:keep @:dox(hide) class DocumentClass extends LPTCManager2026 {}
|
|
||||||
#else
|
|
||||||
class DocumentClass
|
|
||||||
{
|
|
||||||
macro public static function build():Array<Field>
|
|
||||||
{
|
|
||||||
var classType = Context.getLocalClass().get();
|
|
||||||
var searchTypes = classType;
|
|
||||||
|
|
||||||
while (searchTypes != null)
|
|
||||||
{
|
|
||||||
if (searchTypes.module == "openfl.display.DisplayObject" || searchTypes.module == "flash.display.DisplayObject")
|
|
||||||
{
|
|
||||||
var fields = Context.getBuildFields();
|
|
||||||
|
|
||||||
var method = macro
|
|
||||||
{
|
|
||||||
current.addChild(this);
|
|
||||||
super();
|
|
||||||
dispatchEvent(new openfl.events.Event(openfl.events.Event.ADDED_TO_STAGE, false, false));
|
|
||||||
}
|
|
||||||
|
|
||||||
fields.push({ name: "new", access: [ APublic ], kind: FFun({ args: [ { name: "current", opt: false, type: macro :openfl.display.DisplayObjectContainer, value: null } ], expr: method, params: [], ret: macro :Void }), pos: Context.currentPos() });
|
|
||||||
|
|
||||||
return fields;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (searchTypes.superClass != null)
|
|
||||||
{
|
|
||||||
searchTypes = searchTypes.superClass.t.get();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
searchTypes = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#end
|
|
||||||
@@ -1,127 +0,0 @@
|
|||||||
package;
|
|
||||||
|
|
||||||
import haxe.io.Bytes;
|
|
||||||
import haxe.io.Path;
|
|
||||||
import lime.utils.AssetBundle;
|
|
||||||
import lime.utils.AssetLibrary;
|
|
||||||
import lime.utils.AssetManifest;
|
|
||||||
import lime.utils.Assets;
|
|
||||||
|
|
||||||
#if sys
|
|
||||||
import sys.FileSystem;
|
|
||||||
#end
|
|
||||||
|
|
||||||
#if disable_preloader_assets
|
|
||||||
@:dox(hide) class ManifestResources {
|
|
||||||
public static var preloadLibraries:Array<Dynamic>;
|
|
||||||
public static var preloadLibraryNames:Array<String>;
|
|
||||||
public static var rootPath:String;
|
|
||||||
|
|
||||||
public static function init (config:Dynamic):Void {
|
|
||||||
preloadLibraries = new Array ();
|
|
||||||
preloadLibraryNames = new Array ();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
@:access(lime.utils.Assets)
|
|
||||||
|
|
||||||
|
|
||||||
@:keep @:dox(hide) class ManifestResources {
|
|
||||||
|
|
||||||
|
|
||||||
public static var preloadLibraries:Array<AssetLibrary>;
|
|
||||||
public static var preloadLibraryNames:Array<String>;
|
|
||||||
public static var rootPath:String;
|
|
||||||
|
|
||||||
|
|
||||||
public static function init (config:Dynamic):Void {
|
|
||||||
|
|
||||||
preloadLibraries = new Array ();
|
|
||||||
preloadLibraryNames = new Array ();
|
|
||||||
|
|
||||||
rootPath = null;
|
|
||||||
|
|
||||||
if (config != null && Reflect.hasField (config, "rootPath")) {
|
|
||||||
|
|
||||||
rootPath = Reflect.field (config, "rootPath");
|
|
||||||
|
|
||||||
if(!StringTools.endsWith (rootPath, "/")) {
|
|
||||||
|
|
||||||
rootPath += "/";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if (rootPath == null) {
|
|
||||||
|
|
||||||
#if (ios || tvos || webassembly)
|
|
||||||
rootPath = "assets/";
|
|
||||||
#elseif android
|
|
||||||
rootPath = "";
|
|
||||||
#elseif (console || sys)
|
|
||||||
rootPath = lime.system.System.applicationDirectory;
|
|
||||||
#else
|
|
||||||
rootPath = "./";
|
|
||||||
#end
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#if (openfl && !flash && !display)
|
|
||||||
openfl.text.Font.registerFont (__ASSET__OPENFL__assets_fonts_montserrat_montserrat_semibold_600_ttf);
|
|
||||||
|
|
||||||
#end
|
|
||||||
|
|
||||||
var data, manifest, library, bundle;
|
|
||||||
|
|
||||||
data = '{"name":null,"assets":"aoy4:sizei260936y4:typey4:FONTy9:classNamey60:__ASSET__assets_fonts_montserrat_montserrat_semibold_600_ttfy2:idy27:Montserrat_SemiBold_600.ttfgh","rootPath":null,"version":2,"libraryArgs":[],"libraryType":null}';
|
|
||||||
manifest = AssetManifest.parse (data, rootPath);
|
|
||||||
library = AssetLibrary.fromManifest (manifest);
|
|
||||||
Assets.registerLibrary ("default", library);
|
|
||||||
|
|
||||||
|
|
||||||
library = Assets.getLibrary ("default");
|
|
||||||
if (library != null) preloadLibraries.push (library);
|
|
||||||
else preloadLibraryNames.push ("default");
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !display
|
|
||||||
#if flash
|
|
||||||
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserrat_semibold_600_ttf extends null { }
|
|
||||||
@:keep @:bind @:noCompletion #if display private #end class __ASSET__manifest_default_json extends null { }
|
|
||||||
|
|
||||||
|
|
||||||
#elseif (desktop || cpp)
|
|
||||||
|
|
||||||
@:keep @:file("bin/neko/obj/tmp/manifest/default.json") @:noCompletion #if display private #end class __ASSET__manifest_default_json extends haxe.io.Bytes {}
|
|
||||||
|
|
||||||
@:keep @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserrat_semibold_600_ttf extends lime.text.Font { public function new () { __fontPath = ManifestResources.rootPath + "assets/fonts/Montserrat/Montserrat_SemiBold_600.ttf"; name = "Montserrat SemiBold"; super (); }}
|
|
||||||
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
@:keep @:expose('__ASSET__assets_fonts_montserrat_montserrat_semibold_600_ttf') @:noCompletion #if display private #end class __ASSET__assets_fonts_montserrat_montserrat_semibold_600_ttf extends lime.text.Font { public function new () { #if !html5 __fontPath = "assets/fonts/Montserrat/Montserrat_SemiBold_600.ttf"; #else ascender = null; descender = null; height = null; numGlyphs = null; underlinePosition = null; underlineThickness = null; unitsPerEM = null; #end name = "Montserrat SemiBold"; super (); }}
|
|
||||||
|
|
||||||
|
|
||||||
#end
|
|
||||||
|
|
||||||
#if (openfl && !flash)
|
|
||||||
|
|
||||||
#if html5
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserrat_semibold_600_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserrat_semibold_600_ttf extends openfl.text.Font { public function new () { name = "Montserrat SemiBold"; super (); }}
|
|
||||||
|
|
||||||
#else
|
|
||||||
@:keep @:expose('__ASSET__OPENFL__assets_fonts_montserrat_montserrat_semibold_600_ttf') @:noCompletion #if display private #end class __ASSET__OPENFL__assets_fonts_montserrat_montserrat_semibold_600_ttf extends openfl.text.Font { public function new () { __fontPath = ManifestResources.rootPath + "assets/fonts/Montserrat/Montserrat_SemiBold_600.ttf"; name = "Montserrat SemiBold"; super (); }}
|
|
||||||
|
|
||||||
#end
|
|
||||||
|
|
||||||
#end
|
|
||||||
#end
|
|
||||||
|
|
||||||
#end
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
-main ApplicationMain
|
|
||||||
--macro lime._internal.macros.DefineMacro.run()
|
|
||||||
-cp /home/chatmurai/haxelib/lime/8,2,3/src
|
|
||||||
-D lime=8.2.3
|
|
||||||
-cp /home/chatmurai/haxelib/feathersui-cairngorm/1,0,0/src
|
|
||||||
-D feathersui-cairngorm=1.0.0
|
|
||||||
-cp /home/chatmurai/haxelib/feathersui/1,3,0/src
|
|
||||||
-D feathersui=1.3.0
|
|
||||||
-cp /home/chatmurai/haxelib/actuate/1,9,0/src
|
|
||||||
-D actuate=1.9.0
|
|
||||||
-cp /home/chatmurai/haxelib/hxargs/4,0,0
|
|
||||||
-D hxargs=4.0.0
|
|
||||||
--macro openfl.utils._internal.ExtraParamsMacro.include()
|
|
||||||
-cp /home/chatmurai/haxelib/openfl/9,4,2/src
|
|
||||||
-D openfl=9.4.2
|
|
||||||
-cp /home/chatmurai/haxelib/feathersui-rpc-services/1,0,3/src
|
|
||||||
-D feathersui-rpc-services=1.0.3
|
|
||||||
-cp /home/chatmurai/haxelib/amfio/1,0,2/src
|
|
||||||
-D amfio=1.0.2
|
|
||||||
-cp src
|
|
||||||
-D lime-harfbuzz
|
|
||||||
-D lime-openal
|
|
||||||
-D lime-threads
|
|
||||||
-D tools=8.2.3
|
|
||||||
-D lime-cairo
|
|
||||||
-D lime-opengl
|
|
||||||
-D no-compilation
|
|
||||||
-D native
|
|
||||||
-D lime-curl
|
|
||||||
-D lime-native
|
|
||||||
-D lime-vorbis
|
|
||||||
-D openfl-native
|
|
||||||
-D lime-cffi
|
|
||||||
-D linux
|
|
||||||
-D desktop
|
|
||||||
--remap flash:openfl
|
|
||||||
-cp bin/neko/haxe
|
|
||||||
-neko bin/neko/obj/ApplicationMain.n
|
|
||||||
--macro keep("LPTCManager2026")
|
|
||||||
-debug
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
-main ApplicationMain
|
|
||||||
--macro lime._internal.macros.DefineMacro.run()
|
|
||||||
-cp /home/chatmurai/haxelib/lime/8,2,3/src
|
|
||||||
-D lime=8.2.3
|
|
||||||
-cp /home/chatmurai/haxelib/feathersui-cairngorm/1,0,0/src
|
|
||||||
-D feathersui-cairngorm=1.0.0
|
|
||||||
-cp /home/chatmurai/haxelib/feathersui/1,3,0/src
|
|
||||||
-D feathersui=1.3.0
|
|
||||||
-cp /home/chatmurai/haxelib/actuate/1,9,0/src
|
|
||||||
-D actuate=1.9.0
|
|
||||||
-cp /home/chatmurai/haxelib/hxargs/4,0,0
|
|
||||||
-D hxargs=4.0.0
|
|
||||||
--macro openfl.utils._internal.ExtraParamsMacro.include()
|
|
||||||
-cp /home/chatmurai/haxelib/openfl/9,4,2/src
|
|
||||||
-D openfl=9.4.2
|
|
||||||
-cp /home/chatmurai/haxelib/feathersui-rpc-services/1,0,3/src
|
|
||||||
-D feathersui-rpc-services=1.0.3
|
|
||||||
-cp /home/chatmurai/haxelib/amfio/1,0,2/src
|
|
||||||
-D amfio=1.0.2
|
|
||||||
-cp src
|
|
||||||
-D lime-harfbuzz
|
|
||||||
-D lime-openal
|
|
||||||
-D lime-threads
|
|
||||||
-D tools=8.2.3
|
|
||||||
-D lime-cairo
|
|
||||||
-D lime-opengl
|
|
||||||
-D no-compilation
|
|
||||||
-D native
|
|
||||||
-D lime-curl
|
|
||||||
-D lime-native
|
|
||||||
-D lime-vorbis
|
|
||||||
-D openfl-native
|
|
||||||
-D lime-cffi
|
|
||||||
-D linux
|
|
||||||
-D desktop
|
|
||||||
--remap flash:openfl
|
|
||||||
-cp bin/neko/haxe
|
|
||||||
-neko bin/neko/obj/ApplicationMain.n
|
|
||||||
--macro keep("LPTCManager2026")
|
|
||||||
-D final
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
-main ApplicationMain
|
|
||||||
--macro lime._internal.macros.DefineMacro.run()
|
|
||||||
-cp /home/chatmurai/haxelib/lime/8,2,3/src
|
|
||||||
-D lime=8.2.3
|
|
||||||
-cp /home/chatmurai/haxelib/feathersui-cairngorm/1,0,0/src
|
|
||||||
-D feathersui-cairngorm=1.0.0
|
|
||||||
-cp /home/chatmurai/haxelib/feathersui/1,3,0/src
|
|
||||||
-D feathersui=1.3.0
|
|
||||||
-cp /home/chatmurai/haxelib/actuate/1,9,0/src
|
|
||||||
-D actuate=1.9.0
|
|
||||||
-cp /home/chatmurai/haxelib/hxargs/4,0,0
|
|
||||||
-D hxargs=4.0.0
|
|
||||||
--macro openfl.utils._internal.ExtraParamsMacro.include()
|
|
||||||
-cp /home/chatmurai/haxelib/openfl/9,4,2/src
|
|
||||||
-D openfl=9.4.2
|
|
||||||
-cp /home/chatmurai/haxelib/feathersui-rpc-services/1,0,3/src
|
|
||||||
-D feathersui-rpc-services=1.0.3
|
|
||||||
-cp /home/chatmurai/haxelib/amfio/1,0,2/src
|
|
||||||
-D amfio=1.0.2
|
|
||||||
-cp src
|
|
||||||
-D lime-harfbuzz
|
|
||||||
-D lime-openal
|
|
||||||
-D lime-threads
|
|
||||||
-D tools=8.2.3
|
|
||||||
-D lime-cairo
|
|
||||||
-D lime-opengl
|
|
||||||
-D no-compilation
|
|
||||||
-D native
|
|
||||||
-D lime-curl
|
|
||||||
-D lime-native
|
|
||||||
-D lime-vorbis
|
|
||||||
-D openfl-native
|
|
||||||
-D lime-cffi
|
|
||||||
-D linux
|
|
||||||
-D desktop
|
|
||||||
--remap flash:openfl
|
|
||||||
-cp bin/neko/haxe
|
|
||||||
-neko bin/neko/obj/ApplicationMain.n
|
|
||||||
--macro keep("LPTCManager2026")
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
{"name":null,"assets":"aoy4:sizei260936y4:typey4:FONTy9:classNamey60:__ASSET__assets_fonts_montserrat_montserrat_semibold_600_ttfy2:idy27:Montserrat_SemiBold_600.ttfgh","rootPath":null,"version":2,"libraryArgs":[],"libraryType":null}
|
|
||||||
@@ -41,6 +41,7 @@ class LPTCManager2026 extends Application {
|
|||||||
title.backgroundSkin = new NekoRectangle(Constants.ACCENT_COLOR2, 0, 0, 200, 80);
|
title.backgroundSkin = new NekoRectangle(Constants.ACCENT_COLOR2, 0, 0, 200, 80);
|
||||||
title.verticalAlign = VerticalAlign.MIDDLE;
|
title.verticalAlign = VerticalAlign.MIDDLE;
|
||||||
title.text = "Header";
|
title.text = "Header";
|
||||||
|
title.embedFonts =true;
|
||||||
var fnt:Font = Assets.getFont(Constants.MONTSERRAT_MEDIUM_500);
|
var fnt:Font = Assets.getFont(Constants.MONTSERRAT_MEDIUM_500);
|
||||||
|
|
||||||
var tf:TextFormat = new TextFormat(fnt.fontName, Std.int(stage.stageHeight * Constants.MAIN_HEADER_HEIGHT_RATIO * .1), Constants.MAIN_COLOR3);
|
var tf:TextFormat = new TextFormat(fnt.fontName, Std.int(stage.stageHeight * Constants.MAIN_HEADER_HEIGHT_RATIO * .1), Constants.MAIN_COLOR3);
|
||||||
@@ -62,6 +63,7 @@ class LPTCManager2026 extends Application {
|
|||||||
|
|
||||||
var title = new Label();
|
var title = new Label();
|
||||||
title.text = "Footer";
|
title.text = "Footer";
|
||||||
|
//title.embedFonts = true;
|
||||||
title.variant = Label.VARIANT_HEADING;
|
title.variant = Label.VARIANT_HEADING;
|
||||||
title.layoutData = AnchorLayoutData.center();
|
title.layoutData = AnchorLayoutData.center();
|
||||||
footer.addChild(title);
|
footer.addChild(title);
|
||||||
|
|||||||
Reference in New Issue
Block a user