Releases: larsiusprime/polymod
Version 1.8.0
The version is the result of resolving practical needs that arose from using Polymod with Friday Night Funkin' over the past year and a half!
Added
- Added the config option
frameworkParams.coreAssetRedirect
which lets you use another directory as your primaryassets/
folder.- This is useful if you are hot reloading scripts or other data files!
- Added the
loadScriptsAsync
parameter toPolymod.init()
to load scripted classes asynchronously. - Reworked
_append
and_merge
functionality for JSON.
Changed
- Replaced several instances of the deprecated
@:enum
syntax (via @MAJigsaw77) - Improved image caching on HTML5 builds.
- Reimplement the
loadBytes
function so that it properly loads the files's contents asynchronously.- Also reimplemented
loadImage
andloadText
to be properly asynchronous.
- Also reimplemented
- Made improvements to error handling for script parsing.
- Greatly improved the speed of Lime's
Assets.list()
function. - Added proper handling for calls to
throw
in scripts. - Fixed an issue when using HScript 2.5.0.
- Improve parsing of scripted superclass types.
- Improve error handling when a function called by a script throws an uncaught exception.
Fixed
- Fix an issue where variables may not resolve properly when assigned to
null
. - Fixed an issue where scripts could not access or import enums.
- Fixed a build issue with the HashLink library.
- Fixed an issue where Polymod's Lime backend would destroy the underlying library's cached assets.
- Fixed an issue where invalid
coreAssetRedirect
paths would crash the game. - Fixed an issue where
coreAssetRedirect
wouldn't allow accessing files from the default library. - Fixed an issue where Polymod would fail to build if HScript wasn't installed (via @MAJigsaw77)
- Fixed an issue with a null object reference in the script parser (via @AltronMaxX)
- Fixed an issue with loading custom fonts (via @gamerbross)
Version 1.7.0
[1.7.0] - 2023-01-16
This version has been postposed a while, but adds several powerful features. A dependency system, support for zipped mods (on both desktop and HTML5!), reworks to versioning functions, and more.
Added
- Added the
dependencies
key to the ModMetadata format.- Example:
{"modA": "1.0.0", "modB": "3.*", "modC": "1.9.0 - 2.3.0"}
- Add an object of key/value pairs to your
_polymod_meta.json
file, where the key is the mod ID and the value is the version rule. - Version rules can match any of those seen in node-semver.
- Add an object of key/value pairs to your
- Mods provided in the dependency list must be loaded in order for this mod to be loaded.
- The provided mod list will be reordered to account for dependencies, as needed, and maintaining order otherwise.
- Missing dependencies, mismatched dependency versions, or cyclical dependencies will result in an error. See
skipDependencyErrors
for more info.
- Example:
- Added the
optionalDependencies
key to the ModMetadata format.- Mods provided in the optional dependencies list will reorder the dependency list, but will not cause dependency errors if absent.
- Added the
skipDependencyChecks
parameter toPolymod.init()
.- Defaults to
false
. - Setting this option to
true
will skip checks for the presence of mandatory dependencies, and prevent reordering the mod load list. - Enabling this option is NOT recommended, since it may break mods which rely on their dependencies.
- Defaults to
- Added the new
ZipFileSystem
.- Enable it with
Polymod.init({customFilesystem: polymod.fs.ZipFileSystem})
. - On desktop platforms, ZipFileSystem automatically behaves like SysFileSystem with the additional capability of loading mods from ZIP files (compressed or uncompressed) as though they were folders instead.
- On HTML5 builds, ZipFileSystem will instead act like a MemoryFileSystem which can load a mod when provided the byte data of a ZIP file.
- After loading mods, you may need to wait a short time before reloading any images. This is because the browser must asynchronously preload the image data before it can be provided to Haxe.
- Enable it with
- Added a convenience functions to handle loading and unloading of mods at runtime.
loadOnlyMods()
loads a given set of mods, by re-initializing the framework with the appropriate mods enabled.- This is as opposed to
loadMods()
, which appends to the mod list rather than setting it.
- This is as opposed to
- Note you may need to call
clearCache()
depending on your framework and your app's current state.
- Added import aliasing and blacklist system for scripted classes.
- Call
Polymod.addImportAlias('full.class.Path', TargetClass)
to replace any instances of that import with the target class. - Call
Polymod.removeImportAlias('full.class.Path')
to remove a previously assigned import alias. - Call
Polymod.blacklistImport('full.class.Path')
to throw an error whenever a scripted class attempts to import the chosen module.
- Call
loadMod()
,unloadMod()
,loadMods()
, andunloadMods()
now return an array of ModMetadata for each of the mods that are loaded after the operation.- Added the
skipDependencyErrors
parameter toPolymod.init()
.- Defaults to
false
. - While this option is
true
, any dependency issues will cause a warning to be reported, and Polymod will skip the problematic mods and load the rest. - While this option is
false
, any dependency issues (missing dependencies, mismatched versions, or cyclical dependencies) will cause an error to be reported, and Polymod will initialize with NO mods loaded.
- Defaults to
Changed
thx.semver
has been added as a mandatory dependency Haxelib, replacing the existing Semantic Version code.- This provides full support for the features of node-semver when specifying version rules.
- Updated
openfl
sample to showcase dependency features.mod2
now has a mandatory dependency onmod1
.- Added a button to showcase the difference when
skipDependencyErrors
changes.
Polymod.scan()
has been refactored.scan()
now has two modes; the first, used when a parameter object is provided, uses the modRoot and fileSystem given.- This will supercede the modRoot and fileSystem that was used for
Polymod.init()
.
- This will supercede the modRoot and fileSystem that was used for
- The second mode, used when a parameter object is not provided, utilizes the filesystem created in
Polymod.init()
.- If you want to scan the modlist before loading mods, you can initialize Polymod with an empty modlist before scanning, then use
loadMods()
to reinitialize with additional mods. - If no parameters are provided but
init()
has not been called yet, an error will be thrown.
- If you want to scan the modlist before loading mods, you can initialize Polymod with an empty modlist before scanning, then use
- Updated samples to use the
hmm
dependency management tool.- Install
hmm
via Haxelib, then runhmm install
in a sample project to install project-local copies of all necessary dependencies with the correct version.
- Install
IFileSystem.scanMods()
has been refactored.scanMods
now takes an optionalapiVersionRule
parameter, and returnsArray<ModMetadata>
.scanMods
will now parse and return the mod metadata, rather than returning an array of mod IDs.scanMods
will now optionally filter to only mods which match the providedapiVersionRule
(passnull
to skip this).
- Reworked error codes for script-related exceptions and warnings.
Removed
- Several deprecated and obsolete options and variables related to this update's changes have been removed.
- Removed the
SemanticVersion
utility class. - Removed the
apiVersionMatch
option from PolymodConfig. - Removed the
POLYMOD_API_VERSION_MATCH
define. - Removed the
modVersion
parameter ofPolymod.init
- Removed the
Fixed
- Fixed several compilation issues with
hscriptPos
disabled.
Version 1.6.0
[1.6.0] - 2022-07-28
Not much in the way of new features for end users here, but some refactors resulted in breaking changes so this is labelled as a minor version rather than a bugfix version.
Added
- Scripted classes now allow functions with up to 8 arguments, up from 4.
- Added the new
ErrorEx
andPolymodPrinterEx
classes for more detailed and extensible error handling.- Added new error message when attempting to call a custom function on a scripted class improperly.
- Added new error message when attempting to retrieve a custom variable on a scripted class improperly.
- Added new error message when attempting to assign a custom variable on a scripted class improperly.
- New static function
Polymod.clearScripts()
clears all scripted classes and scripted functions. Useful for cleaning up before a script reload.
Changed
- HScriptable has been split into two interfaces: HScriptable and HScriptedClass.
- HScriptable is now used only for
@:hscript
annotations on scripted functions, and HScriptedClass is used for@:hscriptClass
annotations to generate scripted classes. - These two interfaces are considered mutually exclusive, and only one should be used on a given class.
- HScriptable is now used only for
- Moved internal HScript classes to an
_internal
package.
Fixed
- Refactored HScript-related macros for improved maintainability.
- Cached
Reflect.fields()
queries on PolymodScriptedClass proxies to improve performance. - Fixed an issue where attempting to annotate
@:hscriptClass
on a class which utilized variables whose type is a function.- This now allows for FlxUIState to be scripted.
- Fixed an issue where the right-hand side of a variable assignment was being executed twice.
- Cleanup extraneous compile-time logging.
Version 1.5.4
[1.5.4] - 2022-07-16
This patch includes several major bug fixes and convenience improvements.
Added
- Added a new error message which occurs when a script cannot locate a module you try to import.
- If you encounter this message, make sure you typed the package name correctly, and make sure the module is exempt from Haxe's Dead Code Elimination process.
Fixed
- Fixed an issue where attempting to annotate
@:hscriptClass
on a class which utilized nested type parameters would fail to compile.- This now allows for FlxState and FlxSubState to be scripted, among other things.
- Fixed an issue where, if a function in a scripted class calls another function within that class, the local variable scope is destroyed.
- Fixed a compilation issue which occurs when
hscriptPos
is not enabled (hscript.Error has no field line
)- Line numbers will now display as
#???
by default. To enable line numbers on script errors (highly recommended), add<haxedef name="hscriptPos" value="true" />
to yourproject.xml
file.
- Line numbers will now display as
Known Issues
- A build error
hscript.Interp has no field setVar
may occur. If this happens, make sure you are using the latest version of HScript, version 2.5.0.
Version 1.5.1
[1.5.1] - 2022-02-25
A large number of bug fixes for scripted classes.
Changed
- The
dirs
parameter of Polymod is now optional. This is useful if Polymod is only used for localization. - Reduced the amount of compile-time logging created by scripted classes.
Removed
- Removed an unused PolymodErrorCode.
Fixed
- Fixed a bug where scripted classes would fail to build when encountering fields marked with
@:generic
.- These fields are now skipped completely (and cannot be overridden by scripted classes).
- Fixed a bug where scripted classes would fail to build when encountering arguments or return types using a type parameter.
- Fixed a bug where scripted classes would override functions with the return type
Void
with a function that attempts to returnnull
. - Fixed a bug where scripted classes did not properly support overriding functions with optional arguments.
- Fixed a bug related to using macros while using the FlixelBackend.
- Fixed a bug where the library would not build without the
hscript-ex
library installed (the library is no longer required).
Version 1.5.0
[1.5.0] - 2022-02-21
I've been working on this functionality for two weeks and it's finally here and it's beautiful.
Added
- Added new functionality which allows for parsing and instantiation of classes defined in scripts. See Scripted Classes for more information.
- Incorporated the functionality of
hscript-ex
into Polymod.
Removed
- The
POLYMOD_USE_HSCRIPTEX
flag has been made redundant. A fork ofhscript-ex
is now bundled into Polymod.
Version 1.4.3
[1.4.3] - 2022-02-18
Fixed
- OpenFLBackend no longer breaks when you are using the main version of OpenFL.
Version 1.4.2
[1.4.2] - 2022-02-06
Version 1.4.2 includes a large number of bug fixes and tweaks to improve reliability.
Added
- Added the optional
assetsPrefix
option to theframeworkParams
.- Use this if your project's
assets/
folder uses a different name.
- Use this if your project's
- Added a new Flixel sample project which ensures cache clearing when reloading mods.
- Added several convenience functions to handle loading and unloading of mods at runtime.
- These convenience functions perform the proper steps to reload Polymod. Note you may need to call
clearCache()
depending on your framework and your app's current state. loadMod()
andloadMods()
enables an individual (or multiple) mods, by re-initializing the framework with the appropriate mods enabled.unloadMod()
andunloadMods()
disables an individual (or multiple) mods, by re-initializing the framework with the appropriate mods disabled.unloadAllMods()
disables all mods, by re-initializing the framework with no mods enabled.- Localized asset replacements will still work, but no user-defined mods will be loaded.
disable()
fully disables Polymod, destroying the asset handler.- Neither user-defined mods nor localized asset replacements will work until you call
init()
again.
- Neither user-defined mods nor localized asset replacements will work until you call
- These convenience functions perform the proper steps to reload Polymod. Note you may need to call
Changed
- Added additional testing to the
openfl_firetongue
sample.mod5
now loads a different image depending on the selected locale.
- Performed many internal code style improvements (please use template strings)
- Improvements to documentation
- Renamed and cleaned up the
Localization
page (formerly known asTranslation
) - Added a section to the
Localization
page describing its partial support (only available in Lime/OpenFL/Flixel as of this update).
- Renamed and cleaned up the
Fixed
- Fixed several issues that stopped the Flixel backend from working. It's finally actually working I swear check the sample.
- Fixed several bugs related to asset retrieval.
- Fixed a bug where debug printing would sometimes not enable.
- Fixed a bug where the project would not build if Firetongue was not installed.
- Fixed several issues with the HEAPS sample (seriously was it ever working?).
Removed
- Temporarily disabled the
HScript-EX
feature.- Additional work to implement the scripted class functionality is required.
- REMOVED the existing modpack functionality (based on the
_polymod_pack.txt
file).- This will be replaced with a revamped system for modpacks in the future.
- REMOVED the documentation associated with modpacks.
Known Issues
- The
openfl_firetongue
sample mod which implements an additional language is currently broken.
Version 1.4.1
[1.4.1] - 2022-01-20
Version 1.4.1 is a small bugfix update.
Changed
- Added additional codedocs for each error code.
Fixed
- Fixed a compile bug for Flixel backends.
- Fixed a bug where embedded default assets would not load properly.
Version 1.4.0
1.4.0 - 2022-01-17
This release marks the migration of the project documentation to polymod.io, a new website for the project hosted by Github Pages.
Aside from several new configuration options, version 1.4's key feature is integration with the FireTongue. Passing a FireTongue instance to Polymod will cause Polymod to check for custom assets in the locales
folder and load them when the appropriate translation is being used. See the Polymod website for more information.
Added
- Added a new Github Pages site for documentation.
- This page is automatically generated using the
master
branch, with the Jekyll project located at/docs/
.
- This page is automatically generated using the
- Added a new logo for the library.
- Added FireTongue integration for asset localization.
- This incredibly powerful feature allows you to pass a FireTongue instance to Polymod, which will allow loading assets from the locale folder. This allows for locales to override not just strings, but also data files and even audio/visual assets, just by using your framework's asset management system.
- For example, when the locale is set to
en-US
,openfl.Assets.getImage("images/billboard.png")
can return a default image, or a custom image when the locale ispt-BR
. - This not only allows developers to translate audio or graphics with almost no effort, but also allows mods to translate audio and graphics of the base game, or EVEN OTHER MODS.
- With the existing features of Polymod, mods should also be able to reasonably append new locales to the manifest, without requiring the developers to modify the base game.
- Added a new compile definition:
POLYMOD_API_VERSION_MATCH
- This allows you to define how strictly mods must match when loading.
NONE
matches any version,MATCH_MAJOR
requires the major version to match,MATCH_MINOR
requires the minor version to match, andMATCH_PATCH
requires the patch version to match.- This defaults to
MATCH_PATCH
to prevent breaking changes, but you should probably update this to at leastMATCH_MINOR
to reduce strain on your mod developers.
- Added a new compile definition:
POLYMOD_USE_HSCRIPTEX
- This EXPERIMENTAL option allows you to replace the default hscript parser with hscript-ex, which provides support for classes.
- Added the new
FlixelBackend
backend.- This backend provides additional HaxeFlixel-specific fixes to the OpenFLBackend.
- Added
FLIXEL
as a Framework value to manually select this backend. - Updated the framework detector to use the
FlixelBackend
over theOpenFLBackend
when HaxeFlixel is being used.
- Added a new function,
Polymod.clearCache()
, which triggers the backend to clear any cached assets from memory.- This is useful if you want to ensure assets reload after a modlist or locale change.
- Improved the Mod Metadata format with new and useful attributes.
- These changes are backwards compatible; new fields are optional, and changed fields still support the existing format.
- Added the
homepage
attribute to allow mods to provide a URL. - Added the
contributors
attribute to provide a list of contributors.- Each contributor is an object with the following keys:
name
,role
,email
,url
. - New applications are encouraged to use this attribute over the
author
attribute where possible.
- Each contributor is an object with the following keys:
- Added a new sample demonstrating usage with FireTongue.
Changed
- Deprecated the
author
attribute in favor of thecontributors
attribute.- The
author
attribute is still supported for backwards compatibility. - Retrieving
author
whencontributors
is defined will return the name of the first contributor.
- The
- Improved compile-time error output for when
@:hscript({context})
receives an invalid value. - Changed the
openfl_hscript
sample to demonstrate retrieving and calling one or more functions from a single script file. - Cleaned up samples by removing unnecessary project configuration.
Fixed
- Fixed a crash bug which occured when LimeBackend was used without a
frameworkParams
argument. - Fixed a bug where
MOD_LOAD_PREPARE
andMOD_LOAD_DONE
were showing as errors rather than notices.