Merge pull request #1867 from iyzsong/master
onscripter core updates & add SDLPAL core
This commit is contained in:
commit
0dfbcbd96d
|
@ -1,11 +1,11 @@
|
||||||
# Software Information
|
# Software Information
|
||||||
display_name = "ONScripter"
|
display_name = "ONScripter"
|
||||||
display_version = "0.1"
|
display_version = "0.3"
|
||||||
authors = "Studio O.G.A."
|
authors = "Studio O.G.A."
|
||||||
categories = "Game engine"
|
categories = "Game engine"
|
||||||
license = "GPLv3+"
|
license = "GPLv3+"
|
||||||
permissions = ""
|
permissions = ""
|
||||||
supported_extensions = "txt|dat|___"
|
supported_extensions = "txt|dat|___|ons|/"
|
||||||
|
|
||||||
# Hardware Information
|
# Hardware Information
|
||||||
manufacturer = "ONScripter"
|
manufacturer = "ONScripter"
|
||||||
|
@ -19,6 +19,5 @@ libretro_saves = "false"
|
||||||
cheats = "false"
|
cheats = "false"
|
||||||
needs_fullpath = "true"
|
needs_fullpath = "true"
|
||||||
disk_control = "false"
|
disk_control = "false"
|
||||||
is_experimental = "true"
|
|
||||||
|
|
||||||
description = "A port of the ONScripter visual novel games engine to libretro."
|
description = "A port of the ONScripter visual novel games engine to libretro."
|
||||||
|
|
|
@ -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."
|
|
@ -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."
|
|
@ -1622,6 +1622,26 @@ libretro_onscripter_post_fetch_cmd="./update-deps.sh"
|
||||||
libretro_onscripter_build_rule="cmake"
|
libretro_onscripter_build_rule="cmake"
|
||||||
libretro_onscripter_build_args="-DCMAKE_BUILD_TYPE=Release"
|
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() {
|
include_core_virtualxt() {
|
||||||
register_module core "virtualxt"
|
register_module core "virtualxt"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue