1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-25 16:24:40 +00:00

Merge pull request #10 from ninjamuffin99/polymod-conditions

check #if polymod instead of cpp
This commit is contained in:
Eric Myllyoja 2022-02-25 02:19:05 -05:00 committed by GitHub
commit c50f08495d

View file

@ -1,6 +1,6 @@
package modding;
#if desktop
#if polymod
import polymod.Polymod.ModMetadata;
import polymod.Polymod;
import polymod.backends.OpenFLBackend;
@ -29,7 +29,7 @@ class PolymodHandler
*/
public static function loadAllMods()
{
#if cpp
#if polymod
trace("Initializing Polymod (using all mods)...");
loadModsById(getAllModIds());
#else
@ -43,7 +43,7 @@ class PolymodHandler
public static function loadNoMods()
{
// We still need to configure the debug print calls etc.
#if cpp
#if polymod
trace("Initializing Polymod (using no mods)...");
loadModsById([]);
#else
@ -53,7 +53,7 @@ class PolymodHandler
public static function loadModsById(ids:Array<String>)
{
#if cpp
#if polymod
if (ids.length == 0)
{
trace('You attempted to load zero mods.');
@ -132,7 +132,7 @@ class PolymodHandler
#end
}
#if cpp
#if polymod
static function buildParseRules():polymod.format.ParseRules
{
var output = polymod.format.ParseRules.getDefault();
@ -182,15 +182,15 @@ class PolymodHandler
}
#end
public static function getAllMods():Array<#if cpp ModMetadata #else Dynamic #end> // this is shitty conditional but ModMetadata isn't imported on HTML5! And I'm too lazy to actually do it properly!
public static function getAllMods()
{
#if cpp
#if polymod
trace('Scanning the mods folder...');
var modMetadata = Polymod.scan(MOD_FOLDER);
trace('Found ${modMetadata.length} mods when scanning.');
return modMetadata;
#else
return [];
return new Array<Dynamic>();
#end
}