Merge pull request #1867 from iyzsong/master

onscripter core updates & add SDLPAL core
This commit is contained in:
LibretroAdmin 2025-02-06 12:46:21 +01:00 committed by GitHub
commit 0dfbcbd96d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 72 additions and 3 deletions

View File

@ -1,11 +1,11 @@
# Software Information
display_name = "ONScripter"
display_version = "0.1"
display_version = "0.3"
authors = "Studio O.G.A."
categories = "Game engine"
license = "GPLv3+"
permissions = ""
supported_extensions = "txt|dat|___"
supported_extensions = "txt|dat|___|ons|/"
# Hardware Information
manufacturer = "ONScripter"
@ -19,6 +19,5 @@ libretro_saves = "false"
cheats = "false"
needs_fullpath = "true"
disk_control = "false"
is_experimental = "true"
description = "A port of the ONScripter visual novel games engine to libretro."

23
dist/info/onsyuri_libretro.info vendored Normal file
View File

@ -0,0 +1,23 @@
# Software Information
display_name = "ONScripter Yuri"
display_version = "0.7.4+2"
authors = "Studio O.G.A.|jh10001|YuriSizuku"
categories = "Game engine"
license = "GPLv2+"
permissions = ""
supported_extensions = "txt|dat|___|nt2|nt3|ons|/"
# Hardware Information
manufacturer = "ONScripter"
systemname = "ONScripter Yuri"
systemid = "onsyuri"
# Libretro Features
database = "ONScripter"
supports_no_game = "false"
libretro_saves = "false"
cheats = "false"
needs_fullpath = "true"
disk_control = "false"
description = "A port of the ONScripter Yuri visual novel games engine to libretro."

27
dist/info/sdlpal_libretro.info vendored Normal file
View File

@ -0,0 +1,27 @@
# Software Information
display_name = "SDLPAL"
display_version = "v2.0.1"
authors = "SDLPAL development team"
categories = "Game"
license = "GPLv3"
permissions = ""
supported_extensions = "cfg"
# Hardware Information
manufacturer = "N/A"
systemname = "SDLPAL"
systemid = "sdlpal"
# Libretro Features
supports_no_game = "true"
single_purpose = "true"
cheats = "false"
libretro_saves = "false"
savestate = "false"
savestate_features = "null"
needs_fullpath = "true"
hw_render = "false"
disk_control = "false"
description = "Libretro port of the classic Chinese-language RPG known as PAL."

View File

@ -1622,6 +1622,26 @@ libretro_onscripter_post_fetch_cmd="./update-deps.sh"
libretro_onscripter_build_rule="cmake"
libretro_onscripter_build_args="-DCMAKE_BUILD_TYPE=Release"
include_core_onsyuri() {
register_module core "onsyuri"
}
libretro_onsyuri_name="ONScripterYuri"
libretro_onsyuri_git_url="https://github.com/YuriSizuku/OnscripterYuri.git"
libretro_onsyuri_git_submodules="yes"
libretro_onsyuri_build_subdir="src/onsyuri_libretro"
libretro_onsyuri_build_rule="cmake"
libretro_onsyuri_build_args="-DCMAKE_BUILD_TYPE=Release"
include_core_sdlpal() {
register_module core "sdlpal"
}
libretro_sdlpal_name="SDLPAL"
libretro_sdlpal_git_url="https://github.com/sdlpal/sdlpal.git"
libretro_sdlpal_git_submodules="yes"
libretro_sdlpal_post_fetch_cmd="pushd 3rd/SDL; git checkout -f v1.2.15; popd"
libretro_sdlpal_build_subdir="libretro"
libretro_sdlpal_build_rule="cmake"
include_core_virtualxt() {
register_module core "virtualxt"
}