Skip to content

Commit

Permalink
Updated by kodi-game-scripting
Browse files Browse the repository at this point in the history
  • Loading branch information
garbear committed Dec 15, 2024
1 parent 5e05b6a commit 26efd88
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 11 deletions.
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ Section: libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, kodi, kodi-game-libretro
Enhances: kodi
Description: 4DO core for kodi's retroplayer
4DO core for kodi's retroplayer
Description: The 3DO Company - 3DO (4DO) core for kodi's retroplayer
The 3DO Company - 3DO (4DO) core for kodi's retroplayer
27 changes: 23 additions & 4 deletions depends/common/4do/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ include(ExternalProject)

string(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UC)

# Jenkins CI jobs can have this env var set
# Use it if available
if(DEFINED ENV{BUILDTHREADS})
set(build_job_count -j$ENV{BUILDTHREADS})
message(STATUS "Using $ENV{BUILDTHREADS} threads from ENV var BUILDTHREADS")
else()
# Most likely a non CI build, so do a best attempt just using ProcessorCount
include(ProcessorCount)
ProcessorCount(cpu_count)
if(NOT cpu_count EQUAL 0)
set(build_job_count -j${cpu_count})
message(STATUS "Using ${cpu_count} threads deduced by ProcessorCount")
endif()
endif()

set(LIBRETRO_BINARY_DIR .)
set(LIBRETRO_SONAME 4do_libretro${CMAKE_SHARED_LIBRARY_SUFFIX})
set(LIBRETRO_JNISONAME libretro${CMAKE_SHARED_LIBRARY_SUFFIX})
Expand All @@ -23,9 +38,9 @@ if(CORE_SYSTEM_NAME STREQUAL windows)
set(MSYSTEM MINGW32)
endif()
set(BUILD_COMMAND ${MINGW_MAKE}
-j$ENV{NUMBER_OF_PROCESSORS}
-C .
-f Makefile
${build_job_count}
${LIBRETRO_DEBUG}
GIT_VERSION=
MSYSTEM=${MSYSTEM}
Expand All @@ -35,6 +50,7 @@ elseif(CORE_SYSTEM_NAME STREQUAL linux)
set(BUILD_COMMAND $(MAKE)
-C .
-f Makefile
${build_job_count}
${LIBRETRO_DEBUG}
GIT_VERSION=
platform=unix
Expand All @@ -48,6 +64,7 @@ elseif(CORE_SYSTEM_NAME STREQUAL osx)
set(BUILD_COMMAND $(MAKE)
-C .
-f Makefile
${build_job_count}
${LIBRETRO_DEBUG}
arch=${ARCH}
CROSS_COMPILE=1
Expand All @@ -67,6 +84,7 @@ elseif(CORE_SYSTEM_NAME STREQUAL ios OR CORE_SYSTEM_NAME STREQUAL darwin_embedde
set(BUILD_COMMAND IOSSDK=${CMAKE_OSX_SYSROOT} $(MAKE)
-C .
-f Makefile
${build_job_count}
${LIBRETRO_DEBUG}
GIT_VERSION=
platform=${PLATFORM}
Expand All @@ -76,6 +94,7 @@ elseif(CORE_SYSTEM_NAME STREQUAL ios OR CORE_SYSTEM_NAME STREQUAL darwin_embedde
set(BUILD_COMMAND IOSSDK=${CMAKE_OSX_SYSROOT} $(MAKE)
-C .
-f Makefile
${build_job_count}
${LIBRETRO_DEBUG}
GIT_VERSION=
platform=tvos-arm64
Expand All @@ -94,6 +113,7 @@ elseif(CORE_SYSTEM_NAME STREQUAL android)
endif()
set(BUILD_COMMAND GNUMAKE=$(MAKE) ${NDKROOT}/ndk-build
-C jni
${build_job_count}
${LIBRETRO_DEBUG}
APP_ABI=${PLATFORM}
APP_SHORT_COMMANDS=true
Expand All @@ -103,13 +123,12 @@ elseif(CORE_SYSTEM_NAME STREQUAL android)
V7NEONOPTIMIZATION=1

&& cp ${PROJECT_SOURCE_DIR}/${LIBRETRO_BINARY_DIR}/${PLATFORM}/${LIBRETRO_JNISONAME} ${PROJECT_SOURCE_DIR}/${LIBRETRO_BINARY_DIR}/${LIBRETRO_SONAME})
elseif(CORE_SYSTEM_NAME STREQUAL rbpi)
message(FATAL_ERROR "${PROJECT_NAME} needs RPi build command in CMakeLists.txt!")
elseif(CORE_SYSTEM_NAME STREQUAL freebsd)
set(BUILD_COMMAND $(MAKE)
-C .
-f Makefile
${LIBRETRO_DEBUG
${build_job_count}
${LIBRETRO_DEBUG}
GIT_VERSION=
platform=unix
)
Expand Down
2 changes: 1 addition & 1 deletion game.libretro.4do/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="game.libretro.4do"
name="The 3DO Company - 3DO (4DO)"
version="1.3.2.11"
version="1.3.2.12"
provider-name="Libretro">
<requires>
<import addon="game.libretro" version="1.0.0"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ msgctxt "Addon Description"
msgid "4DO emulates the 3DO Interactive Multiplayer video game system, often called simply the 3DO.[CR][CR]4DO is based on the FreeDO source code."
msgstr ""

msgctxt "#30000"
msgid "Settings"
msgstr ""
# Empty string with ID 30000

msgctxt "#30001"
msgid "BIOS (rom1)"
Expand Down
2 changes: 1 addition & 1 deletion game.libretro.4do/resources/settings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<settings>
<category label="30000">
<category label="128">
<setting label="30001" type="select" id="4do_bios" values="disabled" default="disabled"/>
<setting label="30002" type="select" id="4do_font" values="disabled" default="disabled"/>
<setting label="30003" type="select" id="4do_cpu_overclock" values="1.0x (12.50Mhz)|1.1x (13.75Mhz)|1.2x (15.00Mhz)|1.5x (18.75Mhz)|1.6x (20.00Mhz)|1.8x (22.50Mhz)|2.0x (25.00Mhz)" default="1.0x (12.50Mhz)"/>
Expand Down

0 comments on commit 26efd88

Please sign in to comment.