mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-07 12:03:24 -04:00
Compare commits
103 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 84c5729c4e | |||
| e0ab36b7d9 | |||
| d40a30ee13 | |||
| 074b43a089 | |||
| 8e8dc305e6 | |||
| 41389f4a8e | |||
| 8145dec2a1 | |||
| 4089a80a17 | |||
| b772b6d952 | |||
| 42910ab2fd | |||
| f54892b2c2 | |||
| f32e069c4b | |||
| 09f087656a | |||
| fe15366912 | |||
| cfadf7607a | |||
| f81d25b425 | |||
| ebf6f31719 | |||
| 590d209f76 | |||
| ed21cd4fd0 | |||
| 277538bb81 | |||
| 5418b1831d | |||
| 2d4e69466b | |||
| 427dcfab82 | |||
| f5642f3073 | |||
| cc9c15de54 | |||
| 1fd8a2ca3c | |||
| 0c9c8795ce | |||
| 9eb9acfa11 | |||
| facbf35343 | |||
| 7a34830dc7 | |||
| e4557efb23 | |||
| 42e12eb5ab | |||
| 16cc37ca10 | |||
| 44cb2c84ba | |||
| 8e9d4d624a | |||
| db87b91954 | |||
| ad53af5c78 | |||
| a6e5160c71 | |||
| 38a0a7be0b | |||
| 02fdde3768 | |||
| 33e13d508b | |||
| afc3376aec | |||
| b07fb50128 | |||
| d0894853d7 | |||
| cacb768725 | |||
| 00707024bb | |||
| 7c5ed6a0e1 | |||
| 131a09f317 | |||
| a58f9c7b43 | |||
| 7290649bb8 | |||
| 34e1e740ab | |||
| a58f64ed80 | |||
| 28a37f6b4f | |||
| 285691cd19 | |||
| 93e33ecf1a | |||
| e26fab71d6 | |||
| 824389f871 | |||
| aa42265041 | |||
| 8b7ed4b5da | |||
| f33746f373 | |||
| 18c1d11335 | |||
| 710f252d53 | |||
| 2a92a67b87 | |||
| 0d05f9b75b | |||
| e27cce0e3c | |||
| 511721f4d5 | |||
| 08e0f4a2ee | |||
| 7a900471bf | |||
| d9d9966f8f | |||
| 8705e75b9d | |||
| 1b42c4ecac | |||
| 24ca190029 | |||
| eefa69b53d | |||
| da3ac9f546 | |||
| 7f306fe1ec | |||
| 358de64570 | |||
| e484a10018 | |||
| 0936115483 | |||
| b00b7f8f1b | |||
| 08c4442fdf | |||
| 74f20c38e0 | |||
| b7d32918bd | |||
| e99b604dd2 | |||
| 2376e0102e | |||
| 5a9bd6f8dc | |||
| 62a26a639d | |||
| 1a247c2977 | |||
| ef122efccd | |||
| deadde352c | |||
| 460b96c709 | |||
| f8ba14ea8f | |||
| bd9b81f700 | |||
| b531936a1f | |||
| 21692d5a78 | |||
| 7af51e53bd | |||
| bd90c3fc69 | |||
| 37abcaf616 | |||
| b26f3f7f51 | |||
| 81caa89e12 | |||
| bc3cdcc955 | |||
| bf0dc85468 | |||
| 656346a900 | |||
| 5269eadfaf |
@@ -52,7 +52,7 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get -y install ninja-build clang lld openssl libcurl4-openssl-dev \
|
sudo apt-get -y install ninja-build clang lld mold openssl libcurl4-openssl-dev \
|
||||||
zlib1g-dev libglu1-mesa-dev libdbus-1-dev libvulkan-dev libxi-dev libxrandr-dev libasound2-dev \
|
zlib1g-dev libglu1-mesa-dev libdbus-1-dev libvulkan-dev libxi-dev libxrandr-dev libasound2-dev \
|
||||||
libpulse-dev libudev-dev libpng-dev libncurses5-dev libx11-xcb-dev libfreetype-dev \
|
libpulse-dev libudev-dev libpng-dev libncurses5-dev libx11-xcb-dev libfreetype-dev \
|
||||||
libxinerama-dev libxcursor-dev python3-markupsafe libgtk-3-dev libssl-dev \
|
libxinerama-dev libxcursor-dev python3-markupsafe libgtk-3-dev libssl-dev \
|
||||||
|
|||||||
+1
-1
@@ -1,3 +1,3 @@
|
|||||||
[submodule "extern/aurora"]
|
[submodule "extern/aurora"]
|
||||||
path = extern/aurora
|
path = extern/aurora
|
||||||
url = https://github.com/Lurs/aurora.git
|
url = https://github.com/encounter/aurora.git
|
||||||
|
|||||||
+69
-19
@@ -126,28 +126,57 @@ set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
|||||||
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||||
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "_cmake")
|
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "_cmake")
|
||||||
|
|
||||||
|
option(ENABLE_ASAN "Enable AddressSanitizer" OFF)
|
||||||
|
if (ENABLE_ASAN)
|
||||||
|
if (CMAKE_C_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC" AND
|
||||||
|
CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC")
|
||||||
|
add_compile_options($<$<COMPILE_LANGUAGE:C,CXX>:/fsanitize=address>)
|
||||||
|
add_link_options(/fsanitize=address /INCREMENTAL:NO)
|
||||||
|
set(CMAKE_MSVC_DEBUG_INFORMATION_FORMAT "ProgramDatabase")
|
||||||
|
foreach (_lang C CXX)
|
||||||
|
foreach (_rtc_flag /RTC1 /RTCc /RTCs /RTCu)
|
||||||
|
string(REPLACE "${_rtc_flag}" "" CMAKE_${_lang}_FLAGS_DEBUG "${CMAKE_${_lang}_FLAGS_DEBUG}")
|
||||||
|
endforeach ()
|
||||||
|
endforeach ()
|
||||||
|
elseif (CMAKE_C_COMPILER_FRONTEND_VARIANT STREQUAL "GNU" AND
|
||||||
|
CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "GNU")
|
||||||
|
add_compile_options(
|
||||||
|
$<$<COMPILE_LANGUAGE:C,CXX,OBJC,OBJCXX>:-fsanitize=address>
|
||||||
|
$<$<COMPILE_LANGUAGE:C,CXX,OBJC,OBJCXX>:-fno-omit-frame-pointer>
|
||||||
|
)
|
||||||
|
add_link_options(-fsanitize=address)
|
||||||
|
else ()
|
||||||
|
message(FATAL_ERROR "ENABLE_ASAN requires GNU-like or MSVC-like C/C++ compiler frontends")
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
add_compile_definitions(NDEBUG_SANITIZER) # Avoids absl issue with SwissTable debug code
|
||||||
|
message(STATUS "dusklight: Enabled AddressSanitizer")
|
||||||
|
endif ()
|
||||||
|
|
||||||
if (CMAKE_SYSTEM_NAME STREQUAL Linux)
|
if (CMAKE_SYSTEM_NAME STREQUAL Linux)
|
||||||
set(DAWN_USE_WAYLAND ON CACHE BOOL "Enable support for Wayland surface" FORCE)
|
set(DAWN_USE_WAYLAND ON CACHE BOOL "Enable support for Wayland surface" FORCE)
|
||||||
endif ()
|
endif ()
|
||||||
set(AURORA_ENABLE_DVD ON CACHE BOOL "Enable DVD API support" FORCE)
|
set(AURORA_ENABLE_DVD ON CACHE BOOL "Enable DVD API support" FORCE)
|
||||||
set(AURORA_ENABLE_CARD ON CACHE BOOL "Enable CARD API support" FORCE)
|
set(AURORA_ENABLE_CARD ON CACHE BOOL "Enable CARD API support" FORCE)
|
||||||
set(AURORA_ENABLE_RMLUI ON CACHE BOOL "Enable RmlUi UI support" FORCE)
|
set(AURORA_ENABLE_RMLUI ON CACHE BOOL "Enable RmlUi UI support" FORCE)
|
||||||
# Force Freetype (pulled by aurora/RmlUi) to use its bundled mini-zlib.
|
|
||||||
# Otherwise its find_package(ZLIB) latches onto our FetchContent'd shared zlib,
|
|
||||||
# duplicating inflate*/inflateInit2_ symbols against zlibstatic.
|
|
||||||
set(FT_DISABLE_ZLIB TRUE CACHE BOOL "" FORCE)
|
|
||||||
add_subdirectory(extern/aurora EXCLUDE_FROM_ALL)
|
add_subdirectory(extern/aurora EXCLUDE_FROM_ALL)
|
||||||
target_compile_definitions(aurora_mtx PRIVATE MTX_USE_PS=1)
|
target_compile_definitions(aurora_mtx PRIVATE MTX_USE_PS=1)
|
||||||
|
|
||||||
add_subdirectory(libs/freeverb)
|
add_subdirectory(libs/freeverb)
|
||||||
|
|
||||||
|
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||||
|
set(DUSK_GFX_DEBUG_GROUPS_DEFAULT ON)
|
||||||
|
else ()
|
||||||
|
set(DUSK_GFX_DEBUG_GROUPS_DEFAULT OFF)
|
||||||
|
endif ()
|
||||||
|
|
||||||
option(DUSK_BUILD_WARNINGS "Enable compiler warnings (off by default)")
|
option(DUSK_BUILD_WARNINGS "Enable compiler warnings (off by default)")
|
||||||
option(DUSK_SELECTED_OPT "If on, selected parts of the project will be compiled with optimizations on Debug, intending to make the game run at 30 FPS. Note for MSVC: you will need to remove '/RTC1' from your debug flags in CMake.")
|
option(DUSK_SELECTED_OPT "If on, selected parts of the project will be compiled with optimizations on Debug, intending to make the game run at 30 FPS. Note for MSVC: you will need to remove '/RTC1' from your debug flags in CMake.")
|
||||||
option(DUSK_MOVIE_SUPPORT "If on, compile against libjpeg-turbo to enable THP file decoding" ON)
|
option(DUSK_MOVIE_SUPPORT "If on, compile against libjpeg-turbo to enable THP file decoding" ON)
|
||||||
option(DUSK_ENABLE_UPDATE_CHECKER "Enable update checking support" ON)
|
option(DUSK_ENABLE_UPDATE_CHECKER "Enable update checking support" ON)
|
||||||
option(DUSK_TPHD "Enable TPHD asset support" ON)
|
|
||||||
|
|
||||||
option(DUSK_ENABLE_SENTRY_NATIVE "Enable sentry-native crash reporting support" OFF)
|
option(DUSK_ENABLE_SENTRY_NATIVE "Enable sentry-native crash reporting support" OFF)
|
||||||
|
option(DUSK_PACKAGE_INSTALL "Install Dusklight with a Linux-native file structure" OFF)
|
||||||
|
option(DUSK_GFX_DEBUG_GROUPS "Report debug groups to the native graphics API" ${DUSK_GFX_DEBUG_GROUPS_DEFAULT})
|
||||||
set(DUSK_SENTRY_DSN "" CACHE STRING "Sentry DSN")
|
set(DUSK_SENTRY_DSN "" CACHE STRING "Sentry DSN")
|
||||||
set(DUSK_SENTRY_ENVIRONMENT "development" CACHE STRING "Sentry environment")
|
set(DUSK_SENTRY_ENVIRONMENT "development" CACHE STRING "Sentry environment")
|
||||||
|
|
||||||
@@ -195,6 +224,8 @@ if (DUSK_MOVIE_SUPPORT)
|
|||||||
CMAKE_MSVC_RUNTIME_LIBRARY
|
CMAKE_MSVC_RUNTIME_LIBRARY
|
||||||
CMAKE_MSVC_DEBUG_INFORMATION_FORMAT
|
CMAKE_MSVC_DEBUG_INFORMATION_FORMAT
|
||||||
CMAKE_OSX_ARCHITECTURES
|
CMAKE_OSX_ARCHITECTURES
|
||||||
|
CMAKE_OSX_DEPLOYMENT_TARGET
|
||||||
|
CMAKE_OSX_SYSROOT
|
||||||
DEPLOYMENT_TARGET
|
DEPLOYMENT_TARGET
|
||||||
ENABLE_ARC
|
ENABLE_ARC
|
||||||
ENABLE_BITCODE
|
ENABLE_BITCODE
|
||||||
@@ -260,13 +291,13 @@ message(STATUS "dusklight: Fetching cxxopts")
|
|||||||
FetchContent_Declare(cxxopts
|
FetchContent_Declare(cxxopts
|
||||||
URL https://github.com/jarro2783/cxxopts/archive/refs/tags/v3.3.1.tar.gz
|
URL https://github.com/jarro2783/cxxopts/archive/refs/tags/v3.3.1.tar.gz
|
||||||
URL_HASH SHA256=3bfc70542c521d4b55a46429d808178916a579b28d048bd8c727ee76c39e2072
|
URL_HASH SHA256=3bfc70542c521d4b55a46429d808178916a579b28d048bd8c727ee76c39e2072
|
||||||
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
|
DOWNLOAD_EXTRACT_TIMESTAMP FALSE
|
||||||
)
|
)
|
||||||
message(STATUS "dusklight: Fetching nlohmann/json")
|
message(STATUS "dusklight: Fetching nlohmann/json")
|
||||||
FetchContent_Declare(json
|
FetchContent_Declare(json
|
||||||
URL https://github.com/nlohmann/json/releases/download/v3.12.0/json.tar.xz
|
URL https://github.com/nlohmann/json/releases/download/v3.12.0/json.tar.xz
|
||||||
URL_HASH SHA256=42f6e95cad6ec532fd372391373363b62a14af6d771056dbfc86160e6dfff7aa
|
URL_HASH SHA256=42f6e95cad6ec532fd372391373363b62a14af6d771056dbfc86160e6dfff7aa
|
||||||
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
|
DOWNLOAD_EXTRACT_TIMESTAMP FALSE
|
||||||
)
|
)
|
||||||
FetchContent_MakeAvailable(cxxopts json)
|
FetchContent_MakeAvailable(cxxopts json)
|
||||||
|
|
||||||
@@ -332,10 +363,8 @@ set(DUSK_COPYRIGHT "Copyright (C) Twilit Realm contributors")
|
|||||||
source_group("dolzel" FILES ${DOLZEL_FILES} ${Z2AUDIOLIB_FILES} ${REL_FILES})
|
source_group("dolzel" FILES ${DOLZEL_FILES} ${Z2AUDIOLIB_FILES} ${REL_FILES})
|
||||||
source_group("dusklight" FILES ${DUSK_FILES} ${DUSK_HTTP_BACKEND_FILES})
|
source_group("dusklight" FILES ${DUSK_FILES} ${DUSK_HTTP_BACKEND_FILES})
|
||||||
|
|
||||||
set(GAME_COMPILE_DEFS TARGET_PC WIDESCREEN_SUPPORT=1 AVOID_UB=1 VERSION=0 MTX_USE_PS=1)
|
# PARTIAL_DEBUG makes debug and release share one struct/vtable ABI so a mod binary loads into either
|
||||||
if (DUSK_TPHD)
|
set(GAME_COMPILE_DEFS TARGET_PC WIDESCREEN_SUPPORT=1 AVOID_UB=1 VERSION=0 MTX_USE_PS=1 PARTIAL_DEBUG=1)
|
||||||
list(APPEND GAME_COMPILE_DEFS DUSK_TPHD=1)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
set(GAME_INCLUDE_DIRS
|
set(GAME_INCLUDE_DIRS
|
||||||
include
|
include
|
||||||
@@ -350,7 +379,7 @@ set(GAME_INCLUDE_DIRS
|
|||||||
find_package(Threads REQUIRED)
|
find_package(Threads REQUIRED)
|
||||||
set(GAME_LIBS aurora::core aurora::gx aurora::gd aurora::si aurora::vi aurora::pad aurora::mtx aurora::os aurora::dvd
|
set(GAME_LIBS aurora::core aurora::gx aurora::gd aurora::si aurora::vi aurora::pad aurora::mtx aurora::os aurora::dvd
|
||||||
aurora::card freeverb cxxopts::cxxopts absl::flat_hash_map nlohmann_json::nlohmann_json TracyClient fmt::fmt
|
aurora::card freeverb cxxopts::cxxopts absl::flat_hash_map nlohmann_json::nlohmann_json TracyClient fmt::fmt
|
||||||
Threads::Threads libzstd_static ZLIB::ZLIB)
|
Threads::Threads zstd::libzstd)
|
||||||
|
|
||||||
if (DUSK_ENABLE_SENTRY_NATIVE)
|
if (DUSK_ENABLE_SENTRY_NATIVE)
|
||||||
list(APPEND GAME_LIBS sentry)
|
list(APPEND GAME_LIBS sentry)
|
||||||
@@ -422,6 +451,16 @@ if(ANDROID)
|
|||||||
list(APPEND GAME_COMPILE_DEFS TARGET_ANDROID=1)
|
list(APPEND GAME_COMPILE_DEFS TARGET_ANDROID=1)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
if (DUSK_PACKAGE_INSTALL)
|
||||||
|
include(GNUInstallDirs)
|
||||||
|
list(APPEND GAME_COMPILE_DEFS DUSK_ASSET_DIR="${CMAKE_INSTALL_FULL_DATADIR}/dusklight/")
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
if (DUSK_GFX_DEBUG_GROUPS)
|
||||||
|
list(APPEND GAME_COMPILE_DEFS DUSK_GFX_DEBUG_GROUPS=1)
|
||||||
|
target_compile_definitions(aurora_gx PRIVATE AURORA_GFX_DEBUG_GROUPS)
|
||||||
|
endif ()
|
||||||
|
|
||||||
# game_debug is for game code files that we know work when compiled with DEBUG=1
|
# game_debug is for game code files that we know work when compiled with DEBUG=1
|
||||||
# Of course, if building a release build, this distinction is irrelevant
|
# Of course, if building a release build, this distinction is irrelevant
|
||||||
set(GAME_DEBUG_FILES
|
set(GAME_DEBUG_FILES
|
||||||
@@ -436,7 +475,7 @@ set(GAME_DEBUG_FILES
|
|||||||
set_source_files_properties(
|
set_source_files_properties(
|
||||||
${GAME_DEBUG_FILES}
|
${GAME_DEBUG_FILES}
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
COMPILE_DEFINITIONS "$<$<CONFIG:Debug>:DEBUG=1>;$<$<CONFIG:Debug>:PARTIAL_DEBUG=1>"
|
COMPILE_DEFINITIONS "$<$<CONFIG:Debug>:DEBUG=1>;PARTIAL_DEBUG=1"
|
||||||
)
|
)
|
||||||
|
|
||||||
# game_base is for all other game code files
|
# game_base is for all other game code files
|
||||||
@@ -450,14 +489,14 @@ set(GAME_BASE_FILES
|
|||||||
set_source_files_properties(
|
set_source_files_properties(
|
||||||
${GAME_BASE_FILES}
|
${GAME_BASE_FILES}
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
COMPILE_DEFINITIONS "NDEBUG=1;NDEBUG_DEFINED=1;DEBUG_DEFINED=0;$<$<CONFIG:Debug>:PARTIAL_DEBUG=1>"
|
COMPILE_DEFINITIONS "NDEBUG=1;NDEBUG_DEFINED=1;DEBUG_DEFINED=0;PARTIAL_DEBUG=1"
|
||||||
)
|
)
|
||||||
|
|
||||||
foreach(jsystem_lib IN LISTS JSYSTEM_LIBRARIES)
|
foreach(jsystem_lib IN LISTS JSYSTEM_LIBRARIES)
|
||||||
target_compile_definitions(${jsystem_lib} PRIVATE
|
target_compile_definitions(${jsystem_lib} PRIVATE
|
||||||
${GAME_COMPILE_DEFS}
|
${GAME_COMPILE_DEFS}
|
||||||
$<$<CONFIG:Debug>:DEBUG=1>
|
$<$<CONFIG:Debug>:DEBUG=1>
|
||||||
$<$<CONFIG:Debug>:PARTIAL_DEBUG=1>
|
PARTIAL_DEBUG=1
|
||||||
)
|
)
|
||||||
target_include_directories(${jsystem_lib} PRIVATE ${GAME_INCLUDE_DIRS})
|
target_include_directories(${jsystem_lib} PRIVATE ${GAME_INCLUDE_DIRS})
|
||||||
target_link_libraries(${jsystem_lib} PRIVATE ${GAME_LIBS})
|
target_link_libraries(${jsystem_lib} PRIVATE ${GAME_LIBS})
|
||||||
@@ -478,6 +517,9 @@ if(ANDROID)
|
|||||||
else ()
|
else ()
|
||||||
add_executable(dusklight ${DUSK_FILES})
|
add_executable(dusklight ${DUSK_FILES})
|
||||||
endif ()
|
endif ()
|
||||||
|
if (ENABLE_ASAN)
|
||||||
|
target_sources(dusklight PRIVATE src/dusk/asan_options.c)
|
||||||
|
endif ()
|
||||||
|
|
||||||
target_compile_definitions(dusklight PRIVATE ${GAME_COMPILE_DEFS})
|
target_compile_definitions(dusklight PRIVATE ${GAME_COMPILE_DEFS})
|
||||||
target_include_directories(dusklight PRIVATE ${GAME_INCLUDE_DIRS})
|
target_include_directories(dusklight PRIVATE ${GAME_INCLUDE_DIRS})
|
||||||
@@ -640,12 +682,20 @@ set(EXTRA_TARGETS "")
|
|||||||
if (TARGET crashpad_handler)
|
if (TARGET crashpad_handler)
|
||||||
list(APPEND EXTRA_TARGETS crashpad_handler)
|
list(APPEND EXTRA_TARGETS crashpad_handler)
|
||||||
endif ()
|
endif ()
|
||||||
install(TARGETS ${BINARY_TARGETS} ${EXTRA_TARGETS} DESTINATION ${CMAKE_INSTALL_PREFIX})
|
if (DUSK_PACKAGE_INSTALL)
|
||||||
|
install(TARGETS ${BINARY_TARGETS} ${EXTRA_TARGETS} DESTINATION ${CMAKE_INSTALL_BINDIR})
|
||||||
|
else()
|
||||||
|
install(TARGETS ${BINARY_TARGETS} ${EXTRA_TARGETS} DESTINATION ${CMAKE_INSTALL_PREFIX})
|
||||||
|
endif()
|
||||||
aurora_install_runtime_dlls(dusklight ${CMAKE_INSTALL_PREFIX})
|
aurora_install_runtime_dlls(dusklight ${CMAKE_INSTALL_PREFIX})
|
||||||
if (NOT APPLE)
|
if (NOT APPLE)
|
||||||
install(DIRECTORY ${CMAKE_SOURCE_DIR}/res DESTINATION ${CMAKE_INSTALL_PREFIX})
|
if (DUSK_PACKAGE_INSTALL)
|
||||||
|
install(DIRECTORY ${CMAKE_SOURCE_DIR}/res DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/dusklight)
|
||||||
|
else()
|
||||||
|
install(DIRECTORY ${CMAKE_SOURCE_DIR}/res DESTINATION ${CMAKE_INSTALL_PREFIX})
|
||||||
|
endif()
|
||||||
endif ()
|
endif ()
|
||||||
if (CMAKE_BUILD_TYPE STREQUAL Debug OR CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo)
|
if (CMAKE_BUILD_TYPE STREQUAL Debug OR CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo AND NOT DUSK_PACKAGE_INSTALL)
|
||||||
set(DEBUG_FILES_LIST "")
|
set(DEBUG_FILES_LIST "")
|
||||||
foreach (target IN LISTS BINARY_TARGETS EXTRA_TARGETS)
|
foreach (target IN LISTS BINARY_TARGETS EXTRA_TARGETS)
|
||||||
get_target_output_name(${target} output_name)
|
get_target_output_name(${target} output_name)
|
||||||
|
|||||||
+116
-21
@@ -19,7 +19,19 @@
|
|||||||
"hidden": true,
|
"hidden": true,
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
|
||||||
"CMAKE_MSVC_RUNTIME_LIBRARY": "MultiThreaded"
|
"CMAKE_MSVC_RUNTIME_LIBRARY": "MultiThreadedDLL"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "release",
|
||||||
|
"hidden": true,
|
||||||
|
"cacheVariables": {
|
||||||
|
"CMAKE_BUILD_TYPE": "Release",
|
||||||
|
"CMAKE_MSVC_RUNTIME_LIBRARY": "MultiThreadedDLL",
|
||||||
|
"CMAKE_INTERPROCEDURAL_OPTIMIZATION": {
|
||||||
|
"type": "BOOL",
|
||||||
|
"value": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -40,12 +52,26 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "asan",
|
||||||
|
"hidden": true,
|
||||||
|
"cacheVariables": {
|
||||||
|
"ENABLE_ASAN": {
|
||||||
|
"type": "BOOL",
|
||||||
|
"value": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-default",
|
"name": "linux-default",
|
||||||
"displayName": "Linux (default)",
|
"displayName": "Linux (default)",
|
||||||
"generator": "Ninja",
|
"generator": "Ninja",
|
||||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
|
"BUILD_SHARED_LIBS": {
|
||||||
|
"type": "BOOL",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install"
|
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install"
|
||||||
},
|
},
|
||||||
"vendor": {
|
"vendor": {
|
||||||
@@ -67,6 +93,15 @@
|
|||||||
"linux-default"
|
"linux-default"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-default-debug-asan",
|
||||||
|
"displayName": "Linux (default) Debug ASan",
|
||||||
|
"inherits": [
|
||||||
|
"debug",
|
||||||
|
"linux-default",
|
||||||
|
"asan"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-default-relwithdebinfo",
|
"name": "linux-default-relwithdebinfo",
|
||||||
"displayName": "Linux (default) RelWithDebInfo",
|
"displayName": "Linux (default) RelWithDebInfo",
|
||||||
@@ -94,6 +129,15 @@
|
|||||||
"linux-clang"
|
"linux-clang"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-clang-debug-asan",
|
||||||
|
"displayName": "Linux (Clang) Debug ASan",
|
||||||
|
"inherits": [
|
||||||
|
"debug",
|
||||||
|
"linux-clang",
|
||||||
|
"asan"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-clang-relwithdebinfo",
|
"name": "linux-clang-relwithdebinfo",
|
||||||
"displayName": "Linux (Clang) RelWithDebInfo",
|
"displayName": "Linux (Clang) RelWithDebInfo",
|
||||||
@@ -114,7 +158,11 @@
|
|||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"CMAKE_C_COMPILER": "cl",
|
"CMAKE_C_COMPILER": "cl",
|
||||||
"CMAKE_CXX_COMPILER": "cl",
|
"CMAKE_CXX_COMPILER": "cl",
|
||||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install"
|
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install",
|
||||||
|
"CMAKE_DISABLE_FIND_PACKAGE_PkgConfig": {
|
||||||
|
"type": "BOOL",
|
||||||
|
"value": true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"vendor": {
|
"vendor": {
|
||||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||||
@@ -132,6 +180,15 @@
|
|||||||
"windows-msvc"
|
"windows-msvc"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "windows-msvc-debug-asan",
|
||||||
|
"displayName": "Windows (MSVC) Debug ASan",
|
||||||
|
"inherits": [
|
||||||
|
"debug",
|
||||||
|
"windows-msvc",
|
||||||
|
"asan"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "windows-msvc-relwithdebinfo",
|
"name": "windows-msvc-relwithdebinfo",
|
||||||
"displayName": "Windows (MSVC) RelWithDebInfo",
|
"displayName": "Windows (MSVC) RelWithDebInfo",
|
||||||
@@ -201,6 +258,10 @@
|
|||||||
"generator": "Ninja",
|
"generator": "Ninja",
|
||||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
|
"BUILD_SHARED_LIBS": {
|
||||||
|
"type": "BOOL",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install"
|
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install"
|
||||||
},
|
},
|
||||||
"vendor": {
|
"vendor": {
|
||||||
@@ -219,6 +280,15 @@
|
|||||||
"macos-default"
|
"macos-default"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "macos-default-debug-asan",
|
||||||
|
"displayName": "macOS (default) Debug ASan",
|
||||||
|
"inherits": [
|
||||||
|
"debug",
|
||||||
|
"macos-default",
|
||||||
|
"asan"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "macos-default-relwithdebinfo",
|
"name": "macos-default-relwithdebinfo",
|
||||||
"displayName": "macOS (default) RelWithDebInfo",
|
"displayName": "macOS (default) RelWithDebInfo",
|
||||||
@@ -284,24 +354,21 @@
|
|||||||
"type": "BOOL",
|
"type": "BOOL",
|
||||||
"value": false
|
"value": false
|
||||||
},
|
},
|
||||||
|
"ENABLE_ARC": {
|
||||||
|
"type": "BOOL",
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
"Rust_CARGO_TARGET": "aarch64-apple-tvos",
|
"Rust_CARGO_TARGET": "aarch64-apple-tvos",
|
||||||
"Rust_TOOLCHAIN": "nightly",
|
"Rust_TOOLCHAIN": "nightly",
|
||||||
"BUILD_SHARED_LIBS": {
|
"BUILD_SHARED_LIBS": {
|
||||||
"type": "BOOL",
|
"type": "BOOL",
|
||||||
"value": false
|
"value": false
|
||||||
},
|
},
|
||||||
"CMAKE_DISABLE_FIND_PACKAGE_BZip2": {
|
"CMAKE_DISABLE_FIND_PACKAGE_PkgConfig": {
|
||||||
"type": "BOOL",
|
"type": "BOOL",
|
||||||
"value": true
|
"value": true
|
||||||
},
|
},
|
||||||
"CMAKE_DISABLE_FIND_PACKAGE_LibLZMA": {
|
"CMAKE_IGNORE_PREFIX_PATH": "/opt/homebrew"
|
||||||
"type": "BOOL",
|
|
||||||
"value": true
|
|
||||||
},
|
|
||||||
"CMAKE_DISABLE_FIND_PACKAGE_zstd": {
|
|
||||||
"type": "BOOL",
|
|
||||||
"value": true
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"vendor": {
|
"vendor": {
|
||||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||||
@@ -327,8 +394,14 @@
|
|||||||
"type": "BOOL",
|
"type": "BOOL",
|
||||||
"value": false
|
"value": false
|
||||||
},
|
},
|
||||||
"AURORA_SDL3_VERSION": "3.4.8",
|
"CMAKE_DISABLE_FIND_PACKAGE_PkgConfig": {
|
||||||
"AURORA_SDL3_REF": "refs/tags/release-3.4.8"
|
"type": "BOOL",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
"CMAKE_DISABLE_FIND_PACKAGE_zstd": {
|
||||||
|
"type": "BOOL",
|
||||||
|
"value": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -356,7 +429,8 @@
|
|||||||
"hidden": true,
|
"hidden": true,
|
||||||
"inherits": [
|
"inherits": [
|
||||||
"android-base",
|
"android-base",
|
||||||
"ci"
|
"ci",
|
||||||
|
"release"
|
||||||
],
|
],
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"DUSK_ENABLE_SENTRY_NATIVE": {
|
"DUSK_ENABLE_SENTRY_NATIVE": {
|
||||||
@@ -384,7 +458,8 @@
|
|||||||
"ci"
|
"ci"
|
||||||
],
|
],
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
"AURORA_SDL3_PROVIDER": "vendor"
|
"AURORA_SDL3_PROVIDER": "vendor",
|
||||||
|
"CMAKE_LINKER_TYPE": "MOLD"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -413,12 +488,8 @@
|
|||||||
"type": "BOOL",
|
"type": "BOOL",
|
||||||
"value": true
|
"value": true
|
||||||
},
|
},
|
||||||
"CMAKE_OSX_DEPLOYMENT_TARGET": "11.0",
|
"CMAKE_OSX_DEPLOYMENT_TARGET": "12.0",
|
||||||
"CMAKE_IGNORE_PREFIX_PATH": "/opt/homebrew",
|
"CMAKE_IGNORE_PREFIX_PATH": "/opt/homebrew"
|
||||||
"BUILD_SHARED_LIBS": {
|
|
||||||
"type": "BOOL",
|
|
||||||
"value": false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -508,6 +579,12 @@
|
|||||||
"description": "Linux (default) debug build",
|
"description": "Linux (default) debug build",
|
||||||
"displayName": "Linux (default) Debug"
|
"displayName": "Linux (default) Debug"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-default-debug-asan",
|
||||||
|
"configurePreset": "linux-default-debug-asan",
|
||||||
|
"description": "Linux (default) debug build with AddressSanitizer",
|
||||||
|
"displayName": "Linux (default) Debug ASan"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-default-relwithdebinfo",
|
"name": "linux-default-relwithdebinfo",
|
||||||
"configurePreset": "linux-default-relwithdebinfo",
|
"configurePreset": "linux-default-relwithdebinfo",
|
||||||
@@ -520,6 +597,12 @@
|
|||||||
"description": "Linux (Clang) debug build",
|
"description": "Linux (Clang) debug build",
|
||||||
"displayName": "Linux (Clang) Debug"
|
"displayName": "Linux (Clang) Debug"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-clang-debug-asan",
|
||||||
|
"configurePreset": "linux-clang-debug-asan",
|
||||||
|
"description": "Linux (Clang) debug build with AddressSanitizer",
|
||||||
|
"displayName": "Linux (Clang) Debug ASan"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-clang-relwithdebinfo",
|
"name": "linux-clang-relwithdebinfo",
|
||||||
"configurePreset": "linux-clang-relwithdebinfo",
|
"configurePreset": "linux-clang-relwithdebinfo",
|
||||||
@@ -532,6 +615,12 @@
|
|||||||
"description": "macOS debug build",
|
"description": "macOS debug build",
|
||||||
"displayName": "macOS Debug"
|
"displayName": "macOS Debug"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "macos-default-debug-asan",
|
||||||
|
"configurePreset": "macos-default-debug-asan",
|
||||||
|
"description": "macOS debug build with AddressSanitizer",
|
||||||
|
"displayName": "macOS Debug ASan"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "macos-default-relwithdebinfo",
|
"name": "macos-default-relwithdebinfo",
|
||||||
"configurePreset": "macos-default-relwithdebinfo",
|
"configurePreset": "macos-default-relwithdebinfo",
|
||||||
@@ -589,6 +678,12 @@
|
|||||||
"description": "Windows (MSVC) debug build",
|
"description": "Windows (MSVC) debug build",
|
||||||
"displayName": "Windows (MSVC) Debug"
|
"displayName": "Windows (MSVC) Debug"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "windows-msvc-debug-asan",
|
||||||
|
"configurePreset": "windows-msvc-debug-asan",
|
||||||
|
"description": "Windows (MSVC) debug build with AddressSanitizer",
|
||||||
|
"displayName": "Windows (MSVC) Debug ASan"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "windows-msvc-relwithdebinfo",
|
"name": "windows-msvc-relwithdebinfo",
|
||||||
"configurePreset": "windows-msvc-relwithdebinfo",
|
"configurePreset": "windows-msvc-relwithdebinfo",
|
||||||
|
|||||||
@@ -20,31 +20,17 @@ It aims to be as accurate as possible to the original while also providing new o
|
|||||||
> Dusklight does *not* provide any copyrighted assets. You must provide your own copy of the original game.
|
> Dusklight does *not* provide any copyrighted assets. You must provide your own copy of the original game.
|
||||||
|
|
||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
> At a minimum, Dusklight requires a GPU with support for either D3D12, Vulkan, or Metal. Your experience with specific hardware, operating systems, and drivers may vary. In particular, older Intel iGPUs have a high likelihood of incompatibility. We are also aware of a number of issues on devices with Adreno GPUs and are working to resolve them.
|
> At a minimum, Dusklight requires a GPU with support for D3D12, Vulkan 1.1+, or Metal. For older devices, best-effort support is provided for D3D11 and OpenGL ES (Android), but will not achieve full accuracy or performance. Your experience with specific hardware, operating systems, and drivers may vary.
|
||||||
|
|
||||||
### 1. Dump your game
|
### 1. Dump your game
|
||||||
|
|
||||||
You must dump your own copy of the game, please see [this article](https://wiki.dolphin-emu.org/index.php?title=Ripping_Games) for instructions. After dumping, you can use a program like [Dolphin](https://dolphin-emu.org/) or [nodtool](https://github.com/encounter/nod/releases) to convert the `.iso` to a `.rvz` to save space.
|
You must dump your own copy of the game. Please see [this article](https://wiki.dolphin-emu.org/index.php?title=Ripping_Games) for instructions. After dumping, you can use a program like [Dolphin](https://dolphin-emu.org/) or [nodtool](https://github.com/encounter/nod/releases) to convert the `.iso` to `.rvz` to save space.
|
||||||
|
|
||||||
Currently, only the GameCube USA and EUR releases are supported. Support for other versions of the game is planned in the future.
|
Currently, only the GameCube USA and EUR releases are supported. Support for other versions of the game is planned in the future.
|
||||||
|
|
||||||
### 2. Download [Dusklight](https://github.com/TwilitRealm/dusklight/releases)
|
### 2. Install Dusklight
|
||||||
|
|
||||||
### 3. Setup the game
|
Visit the [official installation guide](https://twilitrealm.dev/install/) for full instructions.
|
||||||
**Windows / macOS / Linux**
|
|
||||||
- Extract the .zip file
|
|
||||||
- Launch Dusklight
|
|
||||||
- Press **Select Disc Image** and provide the path to your supported game dump
|
|
||||||
- Press **Play**!
|
|
||||||
|
|
||||||
**iOS**
|
|
||||||
- Follow the [iOS setup guide](docs/ios-install-altstore.md)
|
|
||||||
|
|
||||||
**Android**
|
|
||||||
- Install the Dusklight APK
|
|
||||||
- Launch Dusklight
|
|
||||||
- Press **Select Disc Image** and provide the path to your supported game dump
|
|
||||||
- Press **Play**!
|
|
||||||
|
|
||||||
# Building
|
# Building
|
||||||
|
|
||||||
|
|||||||
@@ -180,6 +180,7 @@ cmake --build --preset macos-default-relwithdebinfo
|
|||||||
Alternate presets available:
|
Alternate presets available:
|
||||||
|
|
||||||
* `macos-default-debug`: Clang, Debug
|
* `macos-default-debug`: Clang, Debug
|
||||||
|
* `macos-default-debug-asan`: Clang, Debug, AddressSanitizer
|
||||||
|
|
||||||
**ninja (Linux)**
|
**ninja (Linux)**
|
||||||
|
|
||||||
@@ -191,8 +192,10 @@ cmake --build --preset linux-default-relwithdebinfo
|
|||||||
Alternate presets available:
|
Alternate presets available:
|
||||||
|
|
||||||
* `linux-default-debug`: GCC, Debug
|
* `linux-default-debug`: GCC, Debug
|
||||||
|
* `linux-default-debug-asan`: GCC, Debug, AddressSanitizer
|
||||||
* `linux-clang-relwithdebinfo`: Clang, RelWithDebInfo
|
* `linux-clang-relwithdebinfo`: Clang, RelWithDebInfo
|
||||||
* `linux-clang-debug`: Clang, Debug
|
* `linux-clang-debug`: Clang, Debug
|
||||||
|
* `linux-clang-debug-asan`: Clang, Debug, AddressSanitizer
|
||||||
|
|
||||||
**ninja (Windows)**
|
**ninja (Windows)**
|
||||||
|
|
||||||
@@ -204,6 +207,7 @@ cmake --build --preset windows-msvc-relwithdebinfo
|
|||||||
Alternate presets available:
|
Alternate presets available:
|
||||||
|
|
||||||
* `windows-msvc-debug`: MSVC, Debug
|
* `windows-msvc-debug`: MSVC, Debug
|
||||||
|
* `windows-msvc-debug-asan`: MSVC, Debug, AddressSanitizer
|
||||||
* `windows-clang-relwithdebinfo`: Clang-cl, RelWithDebInfo
|
* `windows-clang-relwithdebinfo`: Clang-cl, RelWithDebInfo
|
||||||
* `windows-clang-debug`: Clang-cl, Debug
|
* `windows-clang-debug`: Clang-cl, Debug
|
||||||
|
|
||||||
|
|||||||
Vendored
+1
-1
Submodule extern/aurora updated: f00825d9f5...9087a409da
+19
-12
@@ -246,18 +246,6 @@ set(DOLZEL_FILES
|
|||||||
if(DEBUG)
|
if(DEBUG)
|
||||||
list(APPEND DOLZEL_FILES src/d/d_event_debug.cpp)
|
list(APPEND DOLZEL_FILES src/d/d_event_debug.cpp)
|
||||||
endif(DEBUG)
|
endif(DEBUG)
|
||||||
if (DUSK_TPHD)
|
|
||||||
list(APPEND DOLZEL_FILES
|
|
||||||
src/dusk/tphd/TphdPack.hpp
|
|
||||||
src/dusk/tphd/TphdPack.cpp
|
|
||||||
src/dusk/tphd/GtxParser.hpp
|
|
||||||
src/dusk/tphd/GtxParser.cpp
|
|
||||||
src/dusk/tphd/AddrLib.hpp
|
|
||||||
src/dusk/tphd/AddrLib.cpp
|
|
||||||
src/dusk/tphd/HdAssetLayer.hpp
|
|
||||||
src/dusk/tphd/HdAssetLayer.cpp
|
|
||||||
)
|
|
||||||
endif(DUSK_TPHD)
|
|
||||||
|
|
||||||
set(Z2AUDIOLIB_FILES
|
set(Z2AUDIOLIB_FILES
|
||||||
src/Z2AudioLib/Z2Calc.cpp
|
src/Z2AudioLib/Z2Calc.cpp
|
||||||
@@ -1430,7 +1418,11 @@ set(DUSK_FILES
|
|||||||
include/dusk/scope_guard.hpp
|
include/dusk/scope_guard.hpp
|
||||||
src/dusk/dvd_asset.cpp
|
src/dusk/dvd_asset.cpp
|
||||||
src/d/actor/d_a_alink_dusk.cpp
|
src/d/actor/d_a_alink_dusk.cpp
|
||||||
|
src/dusk/android_frame_rate.hpp
|
||||||
|
src/dusk/android_frame_rate.cpp
|
||||||
src/dusk/asserts.cpp
|
src/dusk/asserts.cpp
|
||||||
|
src/dusk/batch.cpp
|
||||||
|
src/dusk/batch.hpp
|
||||||
src/dusk/config.cpp
|
src/dusk/config.cpp
|
||||||
src/dusk/crash_handler.cpp
|
src/dusk/crash_handler.cpp
|
||||||
src/dusk/crash_reporting.cpp
|
src/dusk/crash_reporting.cpp
|
||||||
@@ -1444,6 +1436,9 @@ set(DUSK_FILES
|
|||||||
src/dusk/game_clock.cpp
|
src/dusk/game_clock.cpp
|
||||||
src/dusk/globals.cpp
|
src/dusk/globals.cpp
|
||||||
src/dusk/gyro.cpp
|
src/dusk/gyro.cpp
|
||||||
|
include/dusk/menu_pointer.h
|
||||||
|
src/dusk/menu_pointer.cpp
|
||||||
|
src/dusk/mouse.cpp
|
||||||
src/dusk/gamepad_color.cpp
|
src/dusk/gamepad_color.cpp
|
||||||
src/dusk/autosave.cpp
|
src/dusk/autosave.cpp
|
||||||
src/dusk/http/http.hpp
|
src/dusk/http/http.hpp
|
||||||
@@ -1454,6 +1449,9 @@ set(DUSK_FILES
|
|||||||
src/dusk/speedrun.cpp
|
src/dusk/speedrun.cpp
|
||||||
src/dusk/string.cpp
|
src/dusk/string.cpp
|
||||||
src/dusk/stubs.cpp
|
src/dusk/stubs.cpp
|
||||||
|
include/dusk/texture_replacements.hpp
|
||||||
|
src/dusk/texture_replacements.cpp
|
||||||
|
src/dusk/touch_camera.cpp
|
||||||
src/dusk/update_check.cpp
|
src/dusk/update_check.cpp
|
||||||
src/dusk/update_check.hpp
|
src/dusk/update_check.hpp
|
||||||
#src/dusk/m_Do_ext_dusk.cpp
|
#src/dusk/m_Do_ext_dusk.cpp
|
||||||
@@ -1483,6 +1481,7 @@ set(DUSK_FILES
|
|||||||
src/dusk/ui/button.hpp
|
src/dusk/ui/button.hpp
|
||||||
src/dusk/ui/component.cpp
|
src/dusk/ui/component.cpp
|
||||||
src/dusk/ui/component.hpp
|
src/dusk/ui/component.hpp
|
||||||
|
src/dusk/ui/controls.hpp
|
||||||
src/dusk/ui/controller_config.cpp
|
src/dusk/ui/controller_config.cpp
|
||||||
src/dusk/ui/controller_config.hpp
|
src/dusk/ui/controller_config.hpp
|
||||||
src/dusk/ui/document.cpp
|
src/dusk/ui/document.cpp
|
||||||
@@ -1495,6 +1494,8 @@ set(DUSK_FILES
|
|||||||
src/dusk/ui/graphics_tuner.hpp
|
src/dusk/ui/graphics_tuner.hpp
|
||||||
src/dusk/ui/input.cpp
|
src/dusk/ui/input.cpp
|
||||||
src/dusk/ui/input.hpp
|
src/dusk/ui/input.hpp
|
||||||
|
src/dusk/ui/icon_provider.cpp
|
||||||
|
src/dusk/ui/icon_provider.hpp
|
||||||
src/dusk/ui/modal.cpp
|
src/dusk/ui/modal.cpp
|
||||||
src/dusk/ui/modal.hpp
|
src/dusk/ui/modal.hpp
|
||||||
src/dusk/ui/nav_types.hpp
|
src/dusk/ui/nav_types.hpp
|
||||||
@@ -1520,6 +1521,12 @@ set(DUSK_FILES
|
|||||||
src/dusk/ui/string_button.hpp
|
src/dusk/ui/string_button.hpp
|
||||||
src/dusk/ui/tab_bar.cpp
|
src/dusk/ui/tab_bar.cpp
|
||||||
src/dusk/ui/tab_bar.hpp
|
src/dusk/ui/tab_bar.hpp
|
||||||
|
src/dusk/ui/touch_controls_common.cpp
|
||||||
|
src/dusk/ui/touch_controls_common.hpp
|
||||||
|
src/dusk/ui/touch_controls.cpp
|
||||||
|
src/dusk/ui/touch_controls.hpp
|
||||||
|
src/dusk/ui/touch_controls_editor.cpp
|
||||||
|
src/dusk/ui/touch_controls_editor.hpp
|
||||||
src/dusk/ui/ui.cpp
|
src/dusk/ui/ui.cpp
|
||||||
src/dusk/ui/ui.hpp
|
src/dusk/ui/ui.hpp
|
||||||
src/dusk/ui/warp.cpp
|
src/dusk/ui/warp.cpp
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
From f69d29614644f9963f5cb3f828b58575d60a1c5a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Joshua Trees <gh@jtrees.io>
|
||||||
|
Date: Thu, 4 Jun 2026 01:04:04 +0100
|
||||||
|
Subject: [PATCH] fix cmake paths
|
||||||
|
|
||||||
|
---
|
||||||
|
cmake/nodConfig.cmake.in | 6 +++---
|
||||||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/cmake/nodConfig.cmake.in b/cmake/nodConfig.cmake.in
|
||||||
|
index 0969382..2a24a88 100644
|
||||||
|
--- a/cmake/nodConfig.cmake.in
|
||||||
|
+++ b/cmake/nodConfig.cmake.in
|
||||||
|
@@ -1,12 +1,12 @@
|
||||||
|
@PACKAGE_INIT@
|
||||||
|
|
||||||
|
-set(_nod_libdir "${PACKAGE_PREFIX_DIR}/@CMAKE_INSTALL_LIBDIR@")
|
||||||
|
-set(_nod_incdir "${PACKAGE_PREFIX_DIR}/@CMAKE_INSTALL_INCLUDEDIR@")
|
||||||
|
+set(_nod_libdir "@CMAKE_INSTALL_FULL_LIBDIR@")
|
||||||
|
+set(_nod_incdir "@CMAKE_INSTALL_FULL_INCLUDEDIR@")
|
||||||
|
|
||||||
|
if (NOT TARGET nod::nod_shared AND NOT TARGET nod::nod_static)
|
||||||
|
# Shared library
|
||||||
|
if (WIN32)
|
||||||
|
- set(_nod_dll "${PACKAGE_PREFIX_DIR}/@CMAKE_INSTALL_BINDIR@/${CMAKE_SHARED_LIBRARY_PREFIX}nod${CMAKE_SHARED_LIBRARY_SUFFIX}")
|
||||||
|
+ set(_nod_dll "@CMAKE_INSTALL_FULL_BINDIR@/${CMAKE_SHARED_LIBRARY_PREFIX}nod${CMAKE_SHARED_LIBRARY_SUFFIX}")
|
||||||
|
set(_nod_implib "${_nod_libdir}/${CMAKE_IMPORT_LIBRARY_PREFIX}nod${CMAKE_IMPORT_LIBRARY_SUFFIX}")
|
||||||
|
if (EXISTS "${_nod_dll}")
|
||||||
|
add_library(nod::nod_shared SHARED IMPORTED)
|
||||||
|
--
|
||||||
|
2.53.0
|
||||||
|
|
||||||
@@ -16,37 +16,37 @@
|
|||||||
];
|
];
|
||||||
forAllSystems = lib.genAttrs supportedSystems;
|
forAllSystems = lib.genAttrs supportedSystems;
|
||||||
|
|
||||||
dawnVersion = "v20260423.175430";
|
dawnVersion = "v20260618.032059";
|
||||||
nodVersion = "v2.0.0-alpha.8";
|
nodVersion = "v2.0.0-alpha.10";
|
||||||
versionSuffix = "nix-" + (self.shortRev or self.dirtyShortRev or "dirty");
|
versionSuffix = "nix-" + (self.shortRev or self.dirtyShortRev or "dirty");
|
||||||
|
|
||||||
dawnInfo = {
|
dawnInfo = {
|
||||||
"x86_64-linux" = {
|
"x86_64-linux" = {
|
||||||
triple = "linux-x86_64";
|
triple = "linux-x86_64";
|
||||||
hash = "sha256-HXfKTLHtMPwupnFnaflCARtXVPuS/0PoCePXidjE5xs=";
|
hash = "sha256-GFSd573b+VQx/VmFdNQgWDd0V9ayQlcw0Zuopke12ak=";
|
||||||
};
|
};
|
||||||
"aarch64-linux" = {
|
"aarch64-linux" = {
|
||||||
triple = "linux-aarch64";
|
triple = "linux-aarch64";
|
||||||
hash = "sha256-34yyFpfqBZUwoFXQ41F0AwAU78FaNihOSY0oriwn6B0=";
|
hash = "sha256-ZaoP7BAjBMnfAv2/AMRi3FNH2ZtyqASCSFyU/oB2Mzg=";
|
||||||
};
|
};
|
||||||
"aarch64-darwin" = {
|
"aarch64-darwin" = {
|
||||||
triple = "darwin-arm64";
|
triple = "darwin-arm64";
|
||||||
hash = "sha256-eQnzrBp6gjiBek1VYQ9A5W13ClYWrDDKjIqv/7eNTR4=";
|
hash = "sha256-HT+qtlLaSHyoXPrUcXgcTGa877X5YfzbxRD4bJb7i1Y=";
|
||||||
};
|
};
|
||||||
"x86_64-darwin" = {
|
"x86_64-darwin" = {
|
||||||
triple = "darwin-x86_64";
|
triple = "darwin-x86_64";
|
||||||
hash = "sha256-QGWiGdxiI9kci3NPXH6QFFirxn16851zB/w3jqhIBJ4=";
|
hash = "sha256-cUNaCbA7rlKSukDVKGaVEVw0Zt1+mSbaHbmUCMvMVWc=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nodPrebuiltInfo = {
|
nodPrebuiltInfo = {
|
||||||
"x86_64-linux" = {
|
"x86_64-linux" = {
|
||||||
triple = "linux-x86_64";
|
triple = "linux-x86_64";
|
||||||
hash = "sha256-mUqvLsbsqaZ+HAjMmHYPYO+MgtanGRTw7Gzn5uXR5rE=";
|
hash = "sha256-FVQWECVA2gWdc+n5OQ/Tvwn8z0qdgjSd1WlFt5HKOec=";
|
||||||
};
|
};
|
||||||
"aarch64-darwin" = {
|
"aarch64-darwin" = {
|
||||||
triple = "macos-arm64";
|
triple = "macos-arm64";
|
||||||
hash = "sha256-UPy1ywCcv0K6VJOU3uUelJuUdBh3UNaPRlyP5LOBeDw=";
|
hash = "sha256-8ZEejxksVgShNKUVRCBYaLOp9x/qOC9pAeVrElQUGUk=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -57,15 +57,25 @@
|
|||||||
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
||||||
hasNodPrebuilt = nodPrebuiltInfo ? ${system};
|
hasNodPrebuilt = nodPrebuiltInfo ? ${system};
|
||||||
|
|
||||||
aurora = pkgs.fetchFromGitHub {
|
aurora = builtins.pathExists "${self}/extern/aurora/CMakeLists.txt";
|
||||||
owner = "encounter";
|
needSubmodules = ''
|
||||||
repo = "aurora";
|
dusklight: The aurora submodule is not vendored. Add submodules=1 to build.
|
||||||
rev = "10006618ee493f248b8597e4dfa1d2871d76a1d9";
|
|
||||||
hash = "sha256-lY2xuVyB7aPJ9+2wwLRB3F5U/BuPSxdSpegdG+qNd9o=";
|
As a flake input:
|
||||||
};
|
|
||||||
|
dusklight.url = "git+https://github.com/TwilitRealm/dusklight?ref=main&submodules=1";
|
||||||
|
|
||||||
|
nix command:
|
||||||
|
|
||||||
|
nix run 'git+https://github.com/TwilitRealm/dusklight?submodules=1'
|
||||||
|
|
||||||
|
Local checkout:
|
||||||
|
|
||||||
|
nix run '.?submodules=1#dusklight'
|
||||||
|
'';
|
||||||
|
|
||||||
dawn = pkgs.fetchzip {
|
dawn = pkgs.fetchzip {
|
||||||
url = "https://github.com/encounter/dawn-build/releases/download/${dawnVersion}/dawn-${dawnInfo.${system}.triple}.tar.gz";
|
url = "https://github.com/encounter/dawn/releases/download/${dawnVersion}/dawn-${dawnInfo.${system}.triple}.tar.gz";
|
||||||
hash = dawnInfo.${system}.hash;
|
hash = dawnInfo.${system}.hash;
|
||||||
stripRoot = false;
|
stripRoot = false;
|
||||||
};
|
};
|
||||||
@@ -84,8 +94,9 @@
|
|||||||
owner = "encounter";
|
owner = "encounter";
|
||||||
repo = "nod";
|
repo = "nod";
|
||||||
rev = nodVersion;
|
rev = nodVersion;
|
||||||
hash = "sha256-+zrtVzjo0+X/6uMcNUn1+FaSR+jOhrcQSDNBFjw0NDs=";
|
hash = "sha256-r8qDlOVxv5iKiFjJQrcBuL9HVoOM3yEjRVnQIMqaICs=";
|
||||||
};
|
};
|
||||||
|
patches = [ ./fix-cmake-paths.patch ];
|
||||||
cargoDeps = pkgs.rustPlatform.importCargoLock {
|
cargoDeps = pkgs.rustPlatform.importCargoLock {
|
||||||
lockFile = "${finalAttrs.src}/Cargo.lock";
|
lockFile = "${finalAttrs.src}/Cargo.lock";
|
||||||
};
|
};
|
||||||
@@ -127,15 +138,15 @@
|
|||||||
NOD_PREBUILT = nod;
|
NOD_PREBUILT = nod;
|
||||||
CXXOPTS = pkgs.cxxopts.src;
|
CXXOPTS = pkgs.cxxopts.src;
|
||||||
JSON = pkgs.nlohmann_json.src;
|
JSON = pkgs.nlohmann_json.src;
|
||||||
XXHASH = pkgs.xxHash.src;
|
XXHASH = pkgs.xxhash.src;
|
||||||
ZSTD = pkgs.zstd.src;
|
ZSTD = pkgs.zstd.src;
|
||||||
FMT = pkgs.fetchzip {
|
FMT = pkgs.fetchzip {
|
||||||
url = "https://github.com/fmtlib/fmt/archive/refs/tags/11.1.4.tar.gz";
|
url = "https://github.com/fmtlib/fmt/archive/refs/tags/12.1.0.tar.gz";
|
||||||
hash = "sha256-sUbxlYi/Aupaox3JjWFqXIjcaQa0LFjclQAOleT+FRA=";
|
hash = "sha256-ZmI1Dv0ZabPlxa02OpERI47jp7zFfjpeWCy1WyuPYZ0=";
|
||||||
};
|
};
|
||||||
TRACY = pkgs.fetchzip {
|
TRACY = pkgs.fetchzip {
|
||||||
url = "https://github.com/wolfpld/tracy/archive/a64b9a20294d59421a2f57aeca3c6383d8c48169.tar.gz";
|
url = "https://github.com/wolfpld/tracy/archive/6789e7d6f9a65ec98926b602097a33a9676d2606.tar.gz";
|
||||||
hash = "sha256-hbNGOsGeyGSvCJ2No8RkwOib1lX2on3vNZSzyVkZdXw=";
|
hash = "sha256-Xxyd7G/mnXEPpN+ehmwl0AkAhS3CwObpJNDgcqbdUJg=";
|
||||||
};
|
};
|
||||||
IMGUI = pkgs.fetchFromGitHub {
|
IMGUI = pkgs.fetchFromGitHub {
|
||||||
owner = "ocornut";
|
owner = "ocornut";
|
||||||
@@ -153,119 +164,126 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
dusklight = pkgs.stdenv.mkDerivation {
|
dusklight =
|
||||||
pname = "dusklight";
|
if !aurora then
|
||||||
version = versionSuffix;
|
throw needSubmodules
|
||||||
src = ./.;
|
else
|
||||||
|
pkgs.stdenv.mkDerivation {
|
||||||
|
pname = "dusklight";
|
||||||
|
version = versionSuffix;
|
||||||
|
src = ./.;
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
chmod -R u+w "$sourceRoot"
|
chmod -R u+w "$sourceRoot"
|
||||||
rm -rf "$sourceRoot/extern/aurora"
|
substituteInPlace "$sourceRoot/extern/aurora/CMakeLists.txt" \
|
||||||
mkdir -p "$sourceRoot/extern"
|
--replace-warn "add_subdirectory(tests)" ""
|
||||||
cp -r ${aurora} "$sourceRoot/extern/aurora"
|
|
||||||
chmod -R u+w "$sourceRoot/extern/aurora"
|
|
||||||
substituteInPlace "$sourceRoot/extern/aurora/CMakeLists.txt" \
|
|
||||||
--replace-warn "add_subdirectory(tests)" ""
|
|
||||||
'';
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
pkgs.cmake
|
|
||||||
pkgs.ninja
|
|
||||||
pkgs.pkg-config
|
|
||||||
pkgs.python3
|
|
||||||
pkgs.python3Packages.markupsafe
|
|
||||||
]
|
|
||||||
++ lib.optionals (!isDarwin) [ pkgs.autoPatchelfHook ];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
pkgs.sdl3
|
|
||||||
pkgs.freetype
|
|
||||||
pkgs.zstd
|
|
||||||
pkgs.cxxopts
|
|
||||||
pkgs.nlohmann_json
|
|
||||||
pkgs.xxHash
|
|
||||||
pkgs.abseil-cpp
|
|
||||||
pkgs.zlib
|
|
||||||
pkgs.libpng
|
|
||||||
pkgs.libjpeg_turbo
|
|
||||||
pkgs.curl
|
|
||||||
pkgs.openssl
|
|
||||||
]
|
|
||||||
++ lib.optionals isDarwin [
|
|
||||||
pkgs.apple-sdk_15
|
|
||||||
pkgs.libiconv
|
|
||||||
]
|
|
||||||
++ lib.optionals (!isDarwin) [
|
|
||||||
pkgs.libGL
|
|
||||||
pkgs.libGLU
|
|
||||||
pkgs.libglvnd
|
|
||||||
pkgs.vulkan-loader
|
|
||||||
pkgs.libX11
|
|
||||||
pkgs.libxcb
|
|
||||||
pkgs.libXcursor
|
|
||||||
pkgs.libxi
|
|
||||||
pkgs.libxrandr
|
|
||||||
pkgs.libxscrnsaver
|
|
||||||
pkgs.libxtst
|
|
||||||
pkgs.libxinerama
|
|
||||||
pkgs.libxkbcommon
|
|
||||||
pkgs.wayland
|
|
||||||
pkgs.libdecor
|
|
||||||
pkgs.alsa-lib
|
|
||||||
pkgs.libpulseaudio
|
|
||||||
pkgs.pipewire
|
|
||||||
pkgs.dbus
|
|
||||||
pkgs.udev
|
|
||||||
pkgs.libusb1
|
|
||||||
pkgs.libunwind
|
|
||||||
pkgs.gtk3
|
|
||||||
];
|
|
||||||
|
|
||||||
cmakeBuildType = "RelWithDebInfo";
|
|
||||||
ninjaFlags = [ "dusklight" ];
|
|
||||||
|
|
||||||
cmakeFlags = [
|
|
||||||
"-DDUSK_VERSION_OVERRIDE=${versionSuffix}"
|
|
||||||
"-DFETCHCONTENT_FULLY_DISCONNECTED=ON"
|
|
||||||
"-DAURORA_DAWN_PROVIDER=package"
|
|
||||||
"-DAURORA_DAWN_LINKAGE=static"
|
|
||||||
"-DAURORA_NOD_PROVIDER=package"
|
|
||||||
"-DAURORA_NOD_LINKAGE=static"
|
|
||||||
"-DAURORA_SDL3_PROVIDER=system"
|
|
||||||
]
|
|
||||||
++ lib.mapAttrsToList (key: src: "-DFETCHCONTENT_SOURCE_DIR_${key}=${src}") fetchContentDirs;
|
|
||||||
|
|
||||||
installPhase =
|
|
||||||
if isDarwin then
|
|
||||||
''
|
|
||||||
runHook preInstall
|
|
||||||
mkdir -p "$out/Applications"
|
|
||||||
cp -r Dusklight.app "$out/Applications/Dusklight.app"
|
|
||||||
runHook postInstall
|
|
||||||
''
|
|
||||||
else
|
|
||||||
''
|
|
||||||
runHook preInstall
|
|
||||||
install -Dm755 dusklight "$out/bin/dusklight"
|
|
||||||
cp -r "$src/res" "$out/bin/res"
|
|
||||||
install -Dm644 "$src/platforms/freedesktop/dev.twilitrealm.dusk.desktop" \
|
|
||||||
"$out/share/applications/dev.twilitrealm.dusk.desktop"
|
|
||||||
for size in 16 32 48 64 128 256 512 1024; do
|
|
||||||
install -Dm644 "$src/platforms/freedesktop/''${size}x''${size}/apps/dev.twilitrealm.dusk.png" \
|
|
||||||
"$out/share/icons/hicolor/''${size}x''${size}/apps/dev.twilitrealm.dusk.png"
|
|
||||||
done
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
dontStrip = true;
|
nativeBuildInputs = [
|
||||||
|
pkgs.cmake
|
||||||
|
pkgs.ninja
|
||||||
|
pkgs.pkg-config
|
||||||
|
pkgs.python3
|
||||||
|
pkgs.python3Packages.markupsafe
|
||||||
|
]
|
||||||
|
++ lib.optionals (!isDarwin) [ pkgs.autoPatchelfHook ];
|
||||||
|
|
||||||
meta = {
|
buildInputs = [
|
||||||
description = "Dusklight — native PC port of the Twilight Princess decompilation";
|
pkgs.sdl3
|
||||||
homepage = "https://github.com/zeldaret/tp";
|
pkgs.freetype
|
||||||
platforms = supportedSystems;
|
pkgs.zstd
|
||||||
mainProgram = "dusklight";
|
pkgs.cxxopts
|
||||||
};
|
pkgs.nlohmann_json
|
||||||
};
|
pkgs.xxhash
|
||||||
|
pkgs.abseil-cpp
|
||||||
|
pkgs.zlib
|
||||||
|
pkgs.libpng
|
||||||
|
pkgs.libjpeg_turbo
|
||||||
|
pkgs.curl
|
||||||
|
pkgs.openssl
|
||||||
|
]
|
||||||
|
++ lib.optionals isDarwin [
|
||||||
|
pkgs.apple-sdk_15
|
||||||
|
pkgs.libiconv
|
||||||
|
]
|
||||||
|
++ lib.optionals (!isDarwin) [
|
||||||
|
pkgs.libGL
|
||||||
|
pkgs.libGLU
|
||||||
|
pkgs.libglvnd
|
||||||
|
pkgs.vulkan-loader
|
||||||
|
pkgs.libX11
|
||||||
|
pkgs.libxcb
|
||||||
|
pkgs.libXcursor
|
||||||
|
pkgs.libxi
|
||||||
|
pkgs.libxrandr
|
||||||
|
pkgs.libxscrnsaver
|
||||||
|
pkgs.libxtst
|
||||||
|
pkgs.libxinerama
|
||||||
|
pkgs.libxkbcommon
|
||||||
|
pkgs.wayland
|
||||||
|
pkgs.libdecor
|
||||||
|
pkgs.alsa-lib
|
||||||
|
pkgs.libpulseaudio
|
||||||
|
pkgs.pipewire
|
||||||
|
pkgs.dbus
|
||||||
|
pkgs.udev
|
||||||
|
pkgs.libusb1
|
||||||
|
pkgs.libunwind
|
||||||
|
pkgs.gtk3
|
||||||
|
nod
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeBuildType = "RelWithDebInfo";
|
||||||
|
ninjaFlags = [ "dusklight" ];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DDUSK_VERSION_OVERRIDE=${versionSuffix}"
|
||||||
|
"-DFETCHCONTENT_FULLY_DISCONNECTED=ON"
|
||||||
|
"-DAURORA_DAWN_PROVIDER=package"
|
||||||
|
"-DAURORA_DAWN_LINKAGE=static"
|
||||||
|
"-DAURORA_NOD_PROVIDER=system"
|
||||||
|
"-DAURORA_SDL3_PROVIDER=system"
|
||||||
|
"-DBUILD_SHARED_LIBS=OFF"
|
||||||
|
]
|
||||||
|
++ lib.mapAttrsToList (key: src: "-DFETCHCONTENT_SOURCE_DIR_${key}=${src}") fetchContentDirs;
|
||||||
|
|
||||||
|
installPhase =
|
||||||
|
if isDarwin then
|
||||||
|
''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p "$out/Applications"
|
||||||
|
cp -r Dusklight.app "$out/Applications/Dusklight.app"
|
||||||
|
runHook postInstall
|
||||||
|
''
|
||||||
|
else
|
||||||
|
''
|
||||||
|
runHook preInstall
|
||||||
|
install -Dm755 dusklight "$out/bin/dusklight"
|
||||||
|
cp -r "$src/res" "$out/bin/res"
|
||||||
|
install -Dm644 "$src/platforms/freedesktop/dev.twilitrealm.dusk.desktop" \
|
||||||
|
"$out/share/applications/dev.twilitrealm.dusk.desktop"
|
||||||
|
for size in 16 32 48 64 128 256 512 1024; do
|
||||||
|
install -Dm644 "$src/platforms/freedesktop/''${size}x''${size}/apps/dev.twilitrealm.dusk.png" \
|
||||||
|
"$out/share/icons/hicolor/''${size}x''${size}/apps/dev.twilitrealm.dusk.png"
|
||||||
|
done
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = lib.optionalString (!isDarwin) ''
|
||||||
|
patchelf \
|
||||||
|
--add-needed "${pkgs.vulkan-loader}/lib/libvulkan.so" \
|
||||||
|
$out/bin/dusklight
|
||||||
|
'';
|
||||||
|
|
||||||
|
dontStrip = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Dusklight — native PC port of the Twilight Princess decompilation";
|
||||||
|
homepage = "https://github.com/zeldaret/tp";
|
||||||
|
platforms = supportedSystems;
|
||||||
|
mainProgram = "dusklight";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Tooling common to every supported host (Linux and macOS).
|
# Tooling common to every supported host (Linux and macOS).
|
||||||
commonDevTools = [
|
commonDevTools = [
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ public:
|
|||||||
|
|
||||||
/* 0x14 */ cM3dGAab mM3dGAab;
|
/* 0x14 */ cM3dGAab mM3dGAab;
|
||||||
/* 0x30 */ cBgS_ShdwDraw_Callback mCallbackFun;
|
/* 0x30 */ cBgS_ShdwDraw_Callback mCallbackFun;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x34 */ int field_0x34;
|
/* 0x34 */ int field_0x34;
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -48,6 +48,8 @@ public:
|
|||||||
/* 0x1370 */ Z2FxLineMgr mFxLineMgr;
|
/* 0x1370 */ Z2FxLineMgr mFxLineMgr;
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
/* 0x13BC */ Z2DebugSys mDebugSys;
|
/* 0x13BC */ Z2DebugSys mDebugSys;
|
||||||
|
#elif PARTIAL_DEBUG
|
||||||
|
alignas(Z2DebugSys) u8 mDebugSys[sizeof(Z2DebugSys)];
|
||||||
#endif
|
#endif
|
||||||
}; // Size: 0x138C
|
}; // Size: 0x138C
|
||||||
|
|
||||||
|
|||||||
@@ -194,7 +194,7 @@ public:
|
|||||||
JAISoundHandle* getMainBgmHandle() { return &mMainBgmHandle; }
|
JAISoundHandle* getMainBgmHandle() { return &mMainBgmHandle; }
|
||||||
JAISoundHandle* getSubBgmHandle() { return &mSubBgmHandle; }
|
JAISoundHandle* getSubBgmHandle() { return &mSubBgmHandle; }
|
||||||
|
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
f32 field_0x00_debug;
|
f32 field_0x00_debug;
|
||||||
u8 field_0x04_debug;
|
u8 field_0x04_debug;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -100,13 +100,13 @@ public:
|
|||||||
bool isForceBattle() { return forceBattle_; }
|
bool isForceBattle() { return forceBattle_; }
|
||||||
JSUList<Z2CreatureEnemy>* getEnemyList() { return &field_0x0; }
|
JSUList<Z2CreatureEnemy>* getEnemyList() { return &field_0x0; }
|
||||||
|
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
JSUList<Z2SoundObjBase>* getAllList() { return &allList_; }
|
JSUList<Z2SoundObjBase>* getAllList() { return &allList_; }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/* 0x00 */ JSUList<Z2CreatureEnemy> field_0x0;
|
/* 0x00 */ JSUList<Z2CreatureEnemy> field_0x0;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x0C */ JSUList<Z2SoundObjBase> allList_;
|
/* 0x0C */ JSUList<Z2SoundObjBase> allList_;
|
||||||
#endif
|
#endif
|
||||||
/* 0x0C */ Z2EnemyArea enemyArea_;
|
/* 0x0C */ Z2EnemyArea enemyArea_;
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
struct Z2SoundStarter;
|
struct Z2SoundStarter;
|
||||||
|
|
||||||
class Z2SoundObjBase : public Z2SoundHandles
|
class Z2SoundObjBase : public Z2SoundHandles
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
, public JSULink<Z2SoundObjBase>
|
, public JSULink<Z2SoundObjBase>
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -88,6 +88,10 @@ public:
|
|||||||
/* 0x02C */ cXyz field_0x2c;
|
/* 0x02C */ cXyz field_0x2c;
|
||||||
/* 0x038 */ cXyz field_0x38[60];
|
/* 0x038 */ cXyz field_0x38[60];
|
||||||
/* 0x308 */ cXyz field_0x308[60];
|
/* 0x308 */ cXyz field_0x308[60];
|
||||||
|
#if TARGET_PC
|
||||||
|
TGXTexObj mBlurTexObj;
|
||||||
|
ResTIMG* mpCachedBlurTex = nullptr;
|
||||||
|
#endif
|
||||||
}; // Size = 0x5D8
|
}; // Size = 0x5D8
|
||||||
|
|
||||||
class dAlink_bottleWaterPcallBack_c : public JPAParticleCallBack {
|
class dAlink_bottleWaterPcallBack_c : public JPAParticleCallBack {
|
||||||
@@ -4551,7 +4555,8 @@ public:
|
|||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
void handleWolfHowl();
|
void handleWolfHowl();
|
||||||
void handleQuickTransform();
|
void handleQuickTransform();
|
||||||
bool checkGyroAimContext();
|
bool checkAimContext();
|
||||||
|
bool checkAimInputContext();
|
||||||
|
|
||||||
void onIronBallChainInterpCallback();
|
void onIronBallChainInterpCallback();
|
||||||
|
|
||||||
@@ -4564,6 +4569,18 @@ public:
|
|||||||
cXyz mIBChainInterpCurrHandRoot;
|
cXyz mIBChainInterpCurrHandRoot;
|
||||||
bool mIBChainInterpPrevValid;
|
bool mIBChainInterpPrevValid;
|
||||||
bool mIBChainInterpCurrValid;
|
bool mIBChainInterpCurrValid;
|
||||||
|
|
||||||
|
cXyz mHsChainInterpPrevTop;
|
||||||
|
cXyz mHsChainInterpCurrTop;
|
||||||
|
cXyz mHsChainInterpPrevRoot;
|
||||||
|
cXyz mHsChainInterpCurrRoot;
|
||||||
|
cXyz mHsChainInterpPrevSubRoot;
|
||||||
|
cXyz mHsChainInterpCurrSubRoot;
|
||||||
|
cXyz mHsChainInterpPrevSubTop;
|
||||||
|
cXyz mHsChainInterpCurrSubTop;
|
||||||
|
bool mHsChainInterpPrevValid;
|
||||||
|
bool mHsChainInterpCurrValid;
|
||||||
|
|
||||||
bool mIsRollstab = false;
|
bool mIsRollstab = false;
|
||||||
#endif
|
#endif
|
||||||
}; // Size: 0x385C
|
}; // Size: 0x385C
|
||||||
|
|||||||
@@ -88,9 +88,14 @@ public:
|
|||||||
/* 0x396A */ u8 field_0x396A[0x399E - 0x396A];
|
/* 0x396A */ u8 field_0x396A[0x399E - 0x396A];
|
||||||
/* 0x399E */ s16 field_0x399e;
|
/* 0x399E */ s16 field_0x399e;
|
||||||
/* 0x39A0 */ u8 field_0x39A0[0x39A4 - 0x39A0];
|
/* 0x39A0 */ u8 field_0x39A0[0x39A4 - 0x39A0];
|
||||||
|
#if TARGET_PC
|
||||||
|
/* 0x39A4 */ cM_rnd_c mMantRng;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
#if TARGET_PC
|
||||||
|
STATIC_ASSERT(sizeof(mant_class) == 0x39ac);
|
||||||
|
#else
|
||||||
STATIC_ASSERT(sizeof(mant_class) == 0x39a4);
|
STATIC_ASSERT(sizeof(mant_class) == 0x39a4);
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* D_A_MANT_H */
|
#endif /* D_A_MANT_H */
|
||||||
|
|||||||
@@ -299,8 +299,13 @@ public:
|
|||||||
/* 0x168C */ u8 field_0x168c;
|
/* 0x168C */ u8 field_0x168c;
|
||||||
/* 0x168D */ u8 field_0x168d;
|
/* 0x168D */ u8 field_0x168d;
|
||||||
/* 0x168E */ u8 HIOInit;
|
/* 0x168E */ u8 HIOInit;
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
cXyz mLineInterpPrev[MG_ROD_LURE_LINE_LEN];
|
||||||
|
cXyz mLineInterpCurr[MG_ROD_LURE_LINE_LEN];
|
||||||
|
bool mLineInterpPrevValid;
|
||||||
|
bool mLineInterpCurrValid;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
STATIC_ASSERT(sizeof(dmg_rod_class) == 0x1690);
|
|
||||||
|
|
||||||
#endif /* D_A_MG_ROD_H */
|
#endif /* D_A_MG_ROD_H */
|
||||||
|
|||||||
@@ -66,9 +66,18 @@ public:
|
|||||||
/* 0x2CA7 */ s8 hide_lock;
|
/* 0x2CA7 */ s8 hide_lock;
|
||||||
/* 0x2CA8 */ cXyz field_0x2ca8;
|
/* 0x2CA8 */ cXyz field_0x2ca8;
|
||||||
/* 0x2CB4 */ u8 field_0x2cb4;
|
/* 0x2CB4 */ u8 field_0x2cb4;
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
Mtx mChainInterpPrev[6][16];
|
||||||
|
Mtx mChainInterpCurr[6][16];
|
||||||
|
bool mChainInterpPrevValid;
|
||||||
|
bool mChainInterpCurrValid;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if !TARGET_PC
|
||||||
STATIC_ASSERT(sizeof(obj_keyhole_class) == 0x2CB8);
|
STATIC_ASSERT(sizeof(obj_keyhole_class) == 0x2CB8);
|
||||||
|
#endif
|
||||||
|
|
||||||
class daObj_Keyhole_HIO_c : public JORReflexible {
|
class daObj_Keyhole_HIO_c : public JORReflexible {
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -50,6 +50,10 @@ public:
|
|||||||
/* 0x14 */ Mtx mProjMtx;
|
/* 0x14 */ Mtx mProjMtx;
|
||||||
/* 0x44 */ ResTIMG* mpImg;
|
/* 0x44 */ ResTIMG* mpImg;
|
||||||
/* 0x48 */ u8* mpData;
|
/* 0x48 */ u8* mpData;
|
||||||
|
#if TARGET_PC
|
||||||
|
TGXTexObj mTexObj;
|
||||||
|
ResTIMG* mpCachedImg = nullptr;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
class daPy_boomerangMove_c {
|
class daPy_boomerangMove_c {
|
||||||
|
|||||||
@@ -4,6 +4,10 @@
|
|||||||
#include "JSystem/J3DGraphBase/J3DPacket.h"
|
#include "JSystem/J3DGraphBase/J3DPacket.h"
|
||||||
#include "SSystem/SComponent/c_xyz.h"
|
#include "SSystem/SComponent/c_xyz.h"
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
#include "dusk/batch.hpp"
|
||||||
|
#endif
|
||||||
|
|
||||||
class cCcD_Obj;
|
class cCcD_Obj;
|
||||||
class dCcMassS_HitInf;
|
class dCcMassS_HitInf;
|
||||||
class fopAc_ac_c;
|
class fopAc_ac_c;
|
||||||
@@ -107,6 +111,12 @@ public:
|
|||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
TGXTexObj mTexObj_l_J_Ohana00_64TEX;
|
TGXTexObj mTexObj_l_J_Ohana00_64TEX;
|
||||||
TGXTexObj mTexObj_l_J_Ohana01_64128_0419TEX;
|
TGXTexObj mTexObj_l_J_Ohana01_64128_0419TEX;
|
||||||
|
|
||||||
|
dusk::batch::LeafTemplate mTplHana00; // l_J_hana00DL
|
||||||
|
dusk::batch::LeafTemplate mTplHana00Cut; // l_J_hana00_cDL
|
||||||
|
dusk::batch::LeafTemplate mTplHana01; // l_J_hana01DL
|
||||||
|
dusk::batch::LeafTemplate mTplHana01Cut00; // l_J_hana01_c_00DL
|
||||||
|
dusk::batch::LeafTemplate mTplHana01Cut; // l_J_hana01_c_01DL
|
||||||
#endif
|
#endif
|
||||||
}; // Size: 0x12A54
|
}; // Size: 0x12A54
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,10 @@
|
|||||||
#include "JSystem/J3DGraphBase/J3DPacket.h"
|
#include "JSystem/J3DGraphBase/J3DPacket.h"
|
||||||
#include "SSystem/SComponent/c_xyz.h"
|
#include "SSystem/SComponent/c_xyz.h"
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
#include "../../../src/dusk/batch.hpp"
|
||||||
|
#endif
|
||||||
|
|
||||||
class cCcD_Obj;
|
class cCcD_Obj;
|
||||||
class csXyz;
|
class csXyz;
|
||||||
class dCcMassS_HitInf;
|
class dCcMassS_HitInf;
|
||||||
@@ -110,6 +114,10 @@ public:
|
|||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
TGXTexObj mTexObj_l_M_Hijiki00TEX;
|
TGXTexObj mTexObj_l_M_Hijiki00TEX;
|
||||||
TGXTexObj mTexObj_l_M_kusa05_RGBATEX;
|
TGXTexObj mTexObj_l_M_kusa05_RGBATEX;
|
||||||
|
|
||||||
|
dusk::batch::LeafTemplate mTplKusa9q; // l_M_Kusa_9qDL
|
||||||
|
dusk::batch::LeafTemplate mTplKusa9qCut; // l_M_Kusa_9q_cDL
|
||||||
|
dusk::batch::LeafTemplate mTplTengusa; // l_M_TenGusaDL
|
||||||
#endif
|
#endif
|
||||||
}; // Size: 0x1D718
|
}; // Size: 0x1D718
|
||||||
|
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ private:
|
|||||||
|
|
||||||
class dAttParam_c : public JORReflexible {
|
class dAttParam_c : public JORReflexible {
|
||||||
public:
|
public:
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x04 */ s8 mHIOChildNo;
|
/* 0x04 */ s8 mHIOChildNo;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -66,7 +66,7 @@ public:
|
|||||||
/* 0x35 */ u8 mAttnCursorDisappearFrames;
|
/* 0x35 */ u8 mAttnCursorDisappearFrames;
|
||||||
/* 0x38 */ f32 field_0x38;
|
/* 0x38 */ f32 field_0x38;
|
||||||
/* 0x3C */ f32 field_0x3c;
|
/* 0x3C */ f32 field_0x3c;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x44 */ s32 mDebugDispPosX;
|
/* 0x44 */ s32 mDebugDispPosX;
|
||||||
/* 0x48 */ s32 mDebugDispPosY;
|
/* 0x48 */ s32 mDebugDispPosY;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -201,7 +201,7 @@ private:
|
|||||||
/* 0x02C */ u32 m_flags;
|
/* 0x02C */ u32 m_flags;
|
||||||
/* 0x030 */ cXyz* pm_pos;
|
/* 0x030 */ cXyz* pm_pos;
|
||||||
/* 0x034 */ cXyz* pm_old_pos;
|
/* 0x034 */ cXyz* pm_old_pos;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x038 */ cXyz unk_0x38;
|
/* 0x038 */ cXyz unk_0x38;
|
||||||
#endif
|
#endif
|
||||||
/* 0x038 */ cXyz* pm_speed;
|
/* 0x038 */ cXyz* pm_speed;
|
||||||
@@ -229,7 +229,7 @@ private:
|
|||||||
/* 0x0CC */ f32 field_0xcc;
|
/* 0x0CC */ f32 field_0xcc;
|
||||||
/* 0x0D0 */ f32 m_wtr_chk_offset;
|
/* 0x0D0 */ f32 m_wtr_chk_offset;
|
||||||
/* 0x0D4 */ cBgS_PolyInfo* pm_out_poly_info;
|
/* 0x0D4 */ cBgS_PolyInfo* pm_out_poly_info;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x0E4 */ cXyz unk_0xe4;
|
/* 0x0E4 */ cXyz unk_0xe4;
|
||||||
#endif
|
#endif
|
||||||
/* 0x0D8 */ f32 field_0xd8;
|
/* 0x0D8 */ f32 field_0xd8;
|
||||||
|
|||||||
@@ -1037,6 +1037,7 @@ public:
|
|||||||
bool test1Camera(s32);
|
bool test1Camera(s32);
|
||||||
bool test2Camera(s32);
|
bool test2Camera(s32);
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
|
static bool isAimActive();
|
||||||
bool freeCamera();
|
bool freeCamera();
|
||||||
bool executeDebugFlyCam();
|
bool executeDebugFlyCam();
|
||||||
void deactivateDebugFlyCam();
|
void deactivateDebugFlyCam();
|
||||||
|
|||||||
+1
-1
@@ -79,7 +79,7 @@ public:
|
|||||||
|
|
||||||
// /* 0x0000 */ cCcS mCCcS;
|
// /* 0x0000 */ cCcS mCCcS;
|
||||||
/* 0x284C */ dCcMassS_Mng mMass_Mng;
|
/* 0x284C */ dCcMassS_Mng mMass_Mng;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x2AD0 */ u8 m_is_mass_all_timer;
|
/* 0x2AD0 */ u8 m_is_mass_all_timer;
|
||||||
#endif
|
#endif
|
||||||
}; // Size = 0x2AC4
|
}; // Size = 0x2AC4
|
||||||
|
|||||||
@@ -1037,7 +1037,7 @@ public:
|
|||||||
/* 0x1DE09 */ u8 field_0x1de09;
|
/* 0x1DE09 */ u8 field_0x1de09;
|
||||||
/* 0x1DE0A */ u8 field_0x1de0a;
|
/* 0x1DE0A */ u8 field_0x1de0a;
|
||||||
/* 0x1DE0B */ u8 mIsDebugMode;
|
/* 0x1DE0B */ u8 mIsDebugMode;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x1DE0C */ OSStopwatch mStopwatch;
|
/* 0x1DE0C */ OSStopwatch mStopwatch;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ public:
|
|||||||
BASE_ROOM5,
|
BASE_ROOM5,
|
||||||
BASE_DEMO,
|
BASE_DEMO,
|
||||||
|
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
BASE_DEBUG,
|
BASE_DEBUG,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -287,6 +287,11 @@ public:
|
|||||||
MEMCARDCHECKPROC_ERR_YESNO_CURSOR_MOVE_ANM,
|
MEMCARDCHECKPROC_ERR_YESNO_CURSOR_MOVE_ANM,
|
||||||
MEMCARDCHECKPROC_SAVEDATA_CLEAR,
|
MEMCARDCHECKPROC_SAVEDATA_CLEAR,
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
MEMCARDCHECKPROC_AUTO_MAKE_GAMEFILE,
|
||||||
|
MEMCARDCHECKPROC_AUTO_MAKE_GAMEFILE_ERR_WAIT,
|
||||||
|
#endif
|
||||||
|
|
||||||
#if PLATFORM_WII || PLATFORM_SHIELD
|
#if PLATFORM_WII || PLATFORM_SHIELD
|
||||||
MEMCARDCHECKPROC_NAND_STAT_CHECK,
|
MEMCARDCHECKPROC_NAND_STAT_CHECK,
|
||||||
MEMCARDCHECKPROC_GAMEFILE_INIT_SEL,
|
MEMCARDCHECKPROC_GAMEFILE_INIT_SEL,
|
||||||
@@ -411,6 +416,10 @@ public:
|
|||||||
bool yesnoWakuAlpahAnm(u8);
|
bool yesnoWakuAlpahAnm(u8);
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
void fileSelectWide();
|
void fileSelectWide();
|
||||||
|
bool pointerDataSelect();
|
||||||
|
bool pointerMenuSelect();
|
||||||
|
bool pointerCopyDataToSelect();
|
||||||
|
bool pointerYesNoSelect(bool errorSelect);
|
||||||
#endif
|
#endif
|
||||||
void _draw();
|
void _draw();
|
||||||
void errorMoveAnmInitSet(int, int);
|
void errorMoveAnmInitSet(int, int);
|
||||||
@@ -445,6 +454,10 @@ public:
|
|||||||
void MemCardMakeGameFile();
|
void MemCardMakeGameFile();
|
||||||
void MemCardMakeGameFileWait();
|
void MemCardMakeGameFileWait();
|
||||||
void MemCardMakeGameFileCheck();
|
void MemCardMakeGameFileCheck();
|
||||||
|
#if TARGET_PC
|
||||||
|
void MemCardAutoMakeGameFile();
|
||||||
|
void MemCardAutoMakeGameFileErrWait();
|
||||||
|
#endif
|
||||||
void MemCardMsgWindowInitOpen();
|
void MemCardMsgWindowInitOpen();
|
||||||
void MemCardMsgWindowOpen();
|
void MemCardMsgWindowOpen();
|
||||||
void MemCardMsgWindowClose();
|
void MemCardMsgWindowClose();
|
||||||
|
|||||||
@@ -259,7 +259,7 @@ public:
|
|||||||
/* 0x09B8 */ DUNGEON_LIGHT dungeonlight[8];
|
/* 0x09B8 */ DUNGEON_LIGHT dungeonlight[8];
|
||||||
/* 0x0C18 */ BOSS_LIGHT field_0x0c18[8];
|
/* 0x0C18 */ BOSS_LIGHT field_0x0c18[8];
|
||||||
/* 0x0D58 */ BOSS_LIGHT field_0x0d58[6];
|
/* 0x0D58 */ BOSS_LIGHT field_0x0d58[6];
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x0E48 */ NAVYCHAN navy;
|
/* 0x0E48 */ NAVYCHAN navy;
|
||||||
/* 0x0E58 */ u8 field_0xe58[0xE68 - 0xE58]; // part of NAVYCHAN?
|
/* 0x0E58 */ u8 field_0xe58[0xE68 - 0xE58]; // part of NAVYCHAN?
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -198,6 +198,7 @@ struct HOUSI_EFF {
|
|||||||
/* 0x4C */ u16 field_0x4c;
|
/* 0x4C */ u16 field_0x4c;
|
||||||
}; // Size: 0x50
|
}; // Size: 0x50
|
||||||
|
|
||||||
|
// Housi is the rising square particles in Twilight
|
||||||
class dKankyo_housi_Packet : public J3DPacket {
|
class dKankyo_housi_Packet : public J3DPacket {
|
||||||
public:
|
public:
|
||||||
virtual void draw();
|
virtual void draw();
|
||||||
@@ -208,7 +209,7 @@ public:
|
|||||||
/* 0x0020 */ HOUSI_EFF mHousiEff[300];
|
/* 0x0020 */ HOUSI_EFF mHousiEff[300];
|
||||||
/* 0x5DE0 */ u8 field_0x5de0[8];
|
/* 0x5DE0 */ u8 field_0x5de0[8];
|
||||||
/* 0x5DE8 */ f32 field_0x5de8;
|
/* 0x5DE8 */ f32 field_0x5de8;
|
||||||
/* 0x5DEC */ s16 field_0x5dec;
|
/* 0x5DEC */ s16 mHousiCount;
|
||||||
}; // Size: 0x5DF0
|
}; // Size: 0x5DF0
|
||||||
|
|
||||||
struct CLOUD_EFF {
|
struct CLOUD_EFF {
|
||||||
|
|||||||
@@ -157,6 +157,9 @@ public:
|
|||||||
int getDispType() const;
|
int getDispType() const;
|
||||||
void _move(f32, f32, int, f32);
|
void _move(f32, f32, int, f32);
|
||||||
void _draw();
|
void _draw();
|
||||||
|
#if TARGET_PC
|
||||||
|
bool refreshTextureSize();
|
||||||
|
#endif
|
||||||
|
|
||||||
virtual ~dMap_c() {
|
virtual ~dMap_c() {
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
|
|||||||
@@ -74,6 +74,8 @@ public:
|
|||||||
|
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
void menuCollectWide();
|
void menuCollectWide();
|
||||||
|
bool pointerWait();
|
||||||
|
void pointerActivateCurrent();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void _create();
|
void _create();
|
||||||
|
|||||||
@@ -51,6 +51,10 @@ public:
|
|||||||
void setBButtonString(u16);
|
void setBButtonString(u16);
|
||||||
void setHIO(bool);
|
void setHIO(bool);
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
bool pointerWait();
|
||||||
|
#endif
|
||||||
|
|
||||||
virtual void draw() { _draw(); }
|
virtual void draw() { _draw(); }
|
||||||
virtual ~dMenu_Insect_c();
|
virtual ~dMenu_Insect_c();
|
||||||
|
|
||||||
|
|||||||
@@ -55,6 +55,10 @@ public:
|
|||||||
u8 getLetterNum();
|
u8 getLetterNum();
|
||||||
void setHIO(bool);
|
void setHIO(bool);
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
bool pointerWait();
|
||||||
|
#endif
|
||||||
|
|
||||||
virtual void draw() { _draw(); }
|
virtual void draw() { _draw(); }
|
||||||
virtual ~dMenu_Letter_c();
|
virtual ~dMenu_Letter_c();
|
||||||
|
|
||||||
|
|||||||
@@ -80,6 +80,9 @@ public:
|
|||||||
void setBButtonString(u16);
|
void setBButtonString(u16);
|
||||||
bool isRumbleSupported();
|
bool isRumbleSupported();
|
||||||
bool dpdMenuMove();
|
bool dpdMenuMove();
|
||||||
|
#if TARGET_PC
|
||||||
|
bool pointerConfirmSelect();
|
||||||
|
#endif
|
||||||
void paneResize(u64);
|
void paneResize(u64);
|
||||||
void initialize();
|
void initialize();
|
||||||
void yesnoMenuMoveAnmInitSet(int, int);
|
void yesnoMenuMoveAnmInitSet(int, int);
|
||||||
|
|||||||
@@ -74,6 +74,9 @@ public:
|
|||||||
void clacEllipsePlotAverage(int, f32, f32);
|
void clacEllipsePlotAverage(int, f32, f32);
|
||||||
bool dpdMove();
|
bool dpdMove();
|
||||||
u8 openExplain(u8);
|
u8 openExplain(u8);
|
||||||
|
#if TARGET_PC
|
||||||
|
bool pointerMove();
|
||||||
|
#endif
|
||||||
|
|
||||||
virtual void draw() { _draw(); }
|
virtual void draw() { _draw(); }
|
||||||
virtual ~dMenu_Ring_c();
|
virtual ~dMenu_Ring_c();
|
||||||
@@ -215,6 +218,7 @@ private:
|
|||||||
bool mCursorInterpPrevAngular;
|
bool mCursorInterpPrevAngular;
|
||||||
bool mCursorInterpCurrAngular;
|
bool mCursorInterpCurrAngular;
|
||||||
bool mCursorInterpInit;
|
bool mCursorInterpInit;
|
||||||
|
bool mPointerTouchPressHoveredCurrent;
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -266,6 +266,8 @@ public:
|
|||||||
|
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
void menuSaveWide();
|
void menuSaveWide();
|
||||||
|
bool pointerSaveSelect();
|
||||||
|
bool pointerYesNoSelect(bool errorSelect, u8 errParam = 0, u8 soundParam = 0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void _draw2();
|
void _draw2();
|
||||||
|
|||||||
@@ -49,6 +49,10 @@ public:
|
|||||||
u8 getSkillNum();
|
u8 getSkillNum();
|
||||||
void setHIO(bool);
|
void setHIO(bool);
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
bool pointerWait();
|
||||||
|
#endif
|
||||||
|
|
||||||
virtual void draw() { _draw(); }
|
virtual void draw() { _draw(); }
|
||||||
virtual ~dMenu_Skill_c();
|
virtual ~dMenu_Skill_c();
|
||||||
|
|
||||||
|
|||||||
@@ -360,7 +360,12 @@ inline void dMsgObject_demoMessageGroup() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
inline bool dMsgObject_isTalkNowCheck() {
|
inline bool dMsgObject_isTalkNowCheck() {
|
||||||
|
#if TARGET_PC
|
||||||
|
dMsgObject_c* msgObject = dMsgObject_getMsgObjectClass();
|
||||||
|
return msgObject != NULL && msgObject->getStatus() != 1;
|
||||||
|
#else
|
||||||
return dMsgObject_getMsgObjectClass()->getStatus() == 1 ? false : true;
|
return dMsgObject_getMsgObjectClass()->getStatus() == 1 ? false : true;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool dMsgObject_isKillMessageFlag() {
|
inline bool dMsgObject_isKillMessageFlag() {
|
||||||
@@ -497,7 +502,12 @@ inline void dMsgObject_onMsgSend() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
inline bool dMsgObject_isFukidashiCheck() {
|
inline bool dMsgObject_isFukidashiCheck() {
|
||||||
|
#if TARGET_PC
|
||||||
|
dMsgObject_c* msgObject = dMsgObject_getMsgObjectClass();
|
||||||
|
return msgObject != NULL && msgObject->getScrnDrawPtr() != NULL;
|
||||||
|
#else
|
||||||
return dMsgObject_getMsgObjectClass()->getScrnDrawPtr() == NULL ? false : true;
|
return dMsgObject_getMsgObjectClass()->getScrnDrawPtr() == NULL ? false : true;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void* dMsgObject_getTalkHeap() {
|
inline void* dMsgObject_getTalkHeap() {
|
||||||
|
|||||||
@@ -49,6 +49,10 @@ public:
|
|||||||
void selectScale();
|
void selectScale();
|
||||||
void selectTrans();
|
void selectTrans();
|
||||||
void selectAnimeTransform(int);
|
void selectAnimeTransform(int);
|
||||||
|
#if TARGET_PC
|
||||||
|
bool pointerMove();
|
||||||
|
bool consumePointerClick();
|
||||||
|
#endif
|
||||||
|
|
||||||
void setOffsetX(f32 i_offsetX) { mOffsetX = i_offsetX; }
|
void setOffsetX(f32 i_offsetX) { mOffsetX = i_offsetX; }
|
||||||
bool isAnimeUpdate(int param_0) { return (field_0x114 & (u8)(1 << param_0)) ? TRUE : FALSE; }
|
bool isAnimeUpdate(int param_0) { return (field_0x114 & (u8)(1 << param_0)) ? TRUE : FALSE; }
|
||||||
|
|||||||
@@ -521,13 +521,13 @@ private:
|
|||||||
/* 0x019 */ u8 field_0x19;
|
/* 0x019 */ u8 field_0x19;
|
||||||
/* 0x01A */ u8 field_0x1a;
|
/* 0x01A */ u8 field_0x1a;
|
||||||
/* 0x01B */ u8 field_0x1b;
|
/* 0x01B */ u8 field_0x1b;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x01C */ dPa_simpleEcallBack field_0x1c[48];
|
/* 0x01C */ dPa_simpleEcallBack field_0x1c[48];
|
||||||
#else
|
#else
|
||||||
/* 0x01C */ dPa_simpleEcallBack field_0x1c[25];
|
/* 0x01C */ dPa_simpleEcallBack field_0x1c[25];
|
||||||
#endif
|
#endif
|
||||||
/* 0x210 */ level_c field_0x210;
|
/* 0x210 */ level_c field_0x210;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
u8 mSceneCount;
|
u8 mSceneCount;
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ private:
|
|||||||
/* 0x18 */ JKRHeap* heap;
|
/* 0x18 */ JKRHeap* heap;
|
||||||
/* 0x1C */ JKRSolidHeap* mDataHeap;
|
/* 0x1C */ JKRSolidHeap* mDataHeap;
|
||||||
/* 0x20 */ void** mRes;
|
/* 0x20 */ void** mRes;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x24 */ int mSize;
|
/* 0x24 */ int mSize;
|
||||||
#endif
|
#endif
|
||||||
}; // Size: 0x24
|
}; // Size: 0x24
|
||||||
|
|||||||
+4
-1
@@ -1008,7 +1008,7 @@ public:
|
|||||||
|
|
||||||
static const int ZONE_MAX = 0x20;
|
static const int ZONE_MAX = 0x20;
|
||||||
|
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x000 */ u8 unk_0x0;
|
/* 0x000 */ u8 unk_0x0;
|
||||||
/* 0x001 */ char unk_0x1;
|
/* 0x001 */ char unk_0x1;
|
||||||
/* 0x000 */ u8 unk_0x2[0x48 - 0x2];
|
/* 0x000 */ u8 unk_0x2[0x48 - 0x2];
|
||||||
@@ -1029,6 +1029,9 @@ public:
|
|||||||
/* 0xF30 */ s64 mSaveTotalTime;
|
/* 0xF30 */ s64 mSaveTotalTime;
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
/* 0xF80 */ flagFile_c mFlagFile;
|
/* 0xF80 */ flagFile_c mFlagFile;
|
||||||
|
#elif PARTIAL_DEBUG
|
||||||
|
// flagFile_c's ctor/virtuals are only defined under #if DEBUG (d_save.cpp)
|
||||||
|
alignas(flagFile_c) u8 mFlagFile[sizeof(flagFile_c)];
|
||||||
#endif
|
#endif
|
||||||
}; // Size: 0xF38
|
}; // Size: 0xF38
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -538,7 +538,7 @@ public:
|
|||||||
/* vt[86] */ virtual stage_tgsc_class* getDrTg(void) const = 0;
|
/* vt[86] */ virtual stage_tgsc_class* getDrTg(void) const = 0;
|
||||||
/* vt[87] */ virtual void setDoor(stage_tgsc_class*) = 0;
|
/* vt[87] */ virtual void setDoor(stage_tgsc_class*) = 0;
|
||||||
/* vt[88] */ virtual stage_tgsc_class* getDoor(void) const = 0;
|
/* vt[88] */ virtual stage_tgsc_class* getDoor(void) const = 0;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
virtual void setUnit(void*) = 0;
|
virtual void setUnit(void*) = 0;
|
||||||
virtual void* getUnit() = 0;
|
virtual void* getUnit() = 0;
|
||||||
#endif
|
#endif
|
||||||
@@ -796,7 +796,7 @@ public:
|
|||||||
virtual stage_tgsc_class* getDrTg(void) const { return mDrTg; }
|
virtual stage_tgsc_class* getDrTg(void) const { return mDrTg; }
|
||||||
virtual void setDoor(stage_tgsc_class* i_Door) { mDoor = i_Door; }
|
virtual void setDoor(stage_tgsc_class* i_Door) { mDoor = i_Door; }
|
||||||
virtual stage_tgsc_class* getDoor(void) const { return mDoor; }
|
virtual stage_tgsc_class* getDoor(void) const { return mDoor; }
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
virtual void setUnit(void* i_Unit) { mUnit = i_Unit; }
|
virtual void setUnit(void* i_Unit) { mUnit = i_Unit; }
|
||||||
virtual void* getUnit() { return mUnit; }
|
virtual void* getUnit() { return mUnit; }
|
||||||
#endif
|
#endif
|
||||||
@@ -845,7 +845,7 @@ public:
|
|||||||
/* 0x54 */ stage_tgsc_class* mDrTg;
|
/* 0x54 */ stage_tgsc_class* mDrTg;
|
||||||
/* 0x58 */ stage_tgsc_class* mDoor;
|
/* 0x58 */ stage_tgsc_class* mDoor;
|
||||||
/* 0x5C */ dStage_FloorInfo_c* mFloorInfo;
|
/* 0x5C */ dStage_FloorInfo_c* mFloorInfo;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x60 */ void* mUnit;
|
/* 0x60 */ void* mUnit;
|
||||||
#endif
|
#endif
|
||||||
/* 0x60 */ u16 mPlayerNum;
|
/* 0x60 */ u16 mPlayerNum;
|
||||||
@@ -990,7 +990,7 @@ public:
|
|||||||
/* vt[86] */ virtual stage_tgsc_class* getDrTg(void) const { return mDrTg; }
|
/* vt[86] */ virtual stage_tgsc_class* getDrTg(void) const { return mDrTg; }
|
||||||
/* vt[87] */ virtual void setDoor(stage_tgsc_class* i_Door) { mDoor = i_Door; }
|
/* vt[87] */ virtual void setDoor(stage_tgsc_class* i_Door) { mDoor = i_Door; }
|
||||||
/* vt[88] */ virtual stage_tgsc_class* getDoor(void) const { return mDoor; }
|
/* vt[88] */ virtual stage_tgsc_class* getDoor(void) const { return mDoor; }
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
virtual void setUnit(void* i_Unit) {
|
virtual void setUnit(void* i_Unit) {
|
||||||
UNUSED(i_Unit);
|
UNUSED(i_Unit);
|
||||||
OSReport("stage non unit list data !!\n");
|
OSReport("stage non unit list data !!\n");
|
||||||
|
|||||||
@@ -97,6 +97,9 @@ public:
|
|||||||
private:
|
private:
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
/* 0x00 */ dVibTest_c mVibTest;
|
/* 0x00 */ dVibTest_c mVibTest;
|
||||||
|
#elif PARTIAL_DEBUG
|
||||||
|
// dVibTest_c's ctor/virtuals are only defined under #if DEBUG (d_vibration.cpp)
|
||||||
|
alignas(dVibTest_c) u8 mVibTest[sizeof(dVibTest_c)];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class {
|
class {
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ namespace dusk {
|
|||||||
enum class ActionBinds {
|
enum class ActionBinds {
|
||||||
FIRST_PERSON_CAMERA,
|
FIRST_PERSON_CAMERA,
|
||||||
CALL_MIDNA,
|
CALL_MIDNA,
|
||||||
|
OPEN_MAP_SCREEN,
|
||||||
|
TOGGLE_MINIMAP,
|
||||||
OPEN_DUSKLIGHT_MENU,
|
OPEN_DUSKLIGHT_MENU,
|
||||||
TURBO_SPEED_BUTTON,
|
TURBO_SPEED_BUTTON,
|
||||||
COUNT,
|
COUNT,
|
||||||
@@ -32,6 +34,12 @@ bool isActionBound(ActionBinds action, u32 port);
|
|||||||
|
|
||||||
void updateActionBindings();
|
void updateActionBindings();
|
||||||
|
|
||||||
|
void setVirtualActionBind(ActionBinds action, u32 port, bool pressed, bool available = true);
|
||||||
|
|
||||||
|
void clearVirtualActionBind(ActionBinds action, u32 port);
|
||||||
|
|
||||||
|
void clearAllVirtualActionBinds();
|
||||||
|
|
||||||
bool getActionBindTrig(ActionBinds action, u32 port);
|
bool getActionBindTrig(ActionBinds action, u32 port);
|
||||||
|
|
||||||
bool getActionBindHold(ActionBinds action, u32 port);
|
bool getActionBindHold(ActionBinds action, u32 port);
|
||||||
|
|||||||
+70
-7
@@ -1,9 +1,11 @@
|
|||||||
#ifndef DUSK_CONFIG_HPP
|
#ifndef DUSK_CONFIG_HPP
|
||||||
#define DUSK_CONFIG_HPP
|
#define DUSK_CONFIG_HPP
|
||||||
|
|
||||||
|
#include <concepts>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
#include <nlohmann/json.hpp>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include "nlohmann/json.hpp"
|
|
||||||
#include "config_var.hpp"
|
#include "config_var.hpp"
|
||||||
|
|
||||||
namespace dusk::config {
|
namespace dusk::config {
|
||||||
@@ -40,7 +42,7 @@ public:
|
|||||||
[[nodiscard]] virtual nlohmann::json dumpToJson(const ConfigVarBase& cVar) const = 0;
|
[[nodiscard]] virtual nlohmann::json dumpToJson(const ConfigVarBase& cVar) const = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
template<ConfigValue T>
|
template <ConfigValue T>
|
||||||
class ConfigImpl : public ConfigImplBase {
|
class ConfigImpl : public ConfigImplBase {
|
||||||
// Just downcasting the references...
|
// Just downcasting the references...
|
||||||
void loadFromJson(ConfigVarBase& cVar, const nlohmann::json& jsonValue) const final {
|
void loadFromJson(ConfigVarBase& cVar, const nlohmann::json& jsonValue) const final {
|
||||||
@@ -90,20 +92,28 @@ public:
|
|||||||
void Register(ConfigVarBase& configVar);
|
void Register(ConfigVarBase& configVar);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Indicate that all registrations have happened and everything should lock in.
|
* \brief Unregister a CVar, detaching it from the config system.
|
||||||
|
*
|
||||||
|
* If the CVar carries a user-set value (Value or Speedrun layer), it is stashed as an
|
||||||
|
* unregistered key: Save() keeps writing it, and a later Register() of the same name restores
|
||||||
|
* it through the normal back-fill path. The CVar may be destroyed after this returns.
|
||||||
*/
|
*/
|
||||||
void FinishRegistration();
|
void unregister(ConfigVarBase& configVar);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Load config from the standard user preferences location.
|
* \brief Load config from the standard user preferences location.
|
||||||
*/
|
*/
|
||||||
void LoadFromUserPreferences();
|
void load_from_user_preferences();
|
||||||
void LoadFromFileName(const char* path);
|
void load_from_file_name(const char* path);
|
||||||
|
|
||||||
|
void load_arg_override(std::string_view name, std::string_view value);
|
||||||
|
|
||||||
|
void shutdown();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Save the config to file.
|
* \brief Save the config to file.
|
||||||
*/
|
*/
|
||||||
void Save();
|
void save();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Get a registered CVar by name.
|
* \brief Get a registered CVar by name.
|
||||||
@@ -124,6 +134,59 @@ void ClearAllActionBindings(int port);
|
|||||||
*/
|
*/
|
||||||
void EnumerateRegistered(std::function<void(ConfigVarBase&)> callback);
|
void EnumerateRegistered(std::function<void(ConfigVarBase&)> callback);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Type-erased change callback. previousValue points at the value before the mutation
|
||||||
|
* (a `const T*` for a `ConfigVar<T>`) and is valid only for the duration of the call.
|
||||||
|
*/
|
||||||
|
using ChangeCallback = std::function<void(ConfigVarBase& cVar, const void* previousValue)>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Token identifying a change subscription. 0 is never a valid token.
|
||||||
|
*/
|
||||||
|
using Subscription = u64;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Subscribe to changes of the named CVar (registered or not yet registered).
|
||||||
|
*
|
||||||
|
* Fired synchronously on the mutating thread (in practice the game thread) whenever the CVar's
|
||||||
|
* effective value changes at runtime: setValue, override/speedrun setters and clears. Values
|
||||||
|
* applied by config load or launch arguments do *not* notify: loads happen during startup
|
||||||
|
* before the subsystems callbacks push values into are initialized, and each subsystem reads
|
||||||
|
* its initial value itself at its own init. Callbacks may mutate other CVars; a nested
|
||||||
|
* mutation of the same CVar applies but does not re-notify.
|
||||||
|
*/
|
||||||
|
Subscription subscribe(std::string_view name, ChangeCallback callback);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Typed convenience overload: the callback receives the current and previous values.
|
||||||
|
*/
|
||||||
|
template <ConfigValue T, typename Callback>
|
||||||
|
requires std::invocable<Callback, const T&, const T&> Subscription subscribe(
|
||||||
|
ConfigVar<T>& cVar, Callback&& callback) {
|
||||||
|
return subscribe(cVar.getName(),
|
||||||
|
[&cVar, cb = std::forward<Callback>(callback)](ConfigVarBase&, const void* previousValue) {
|
||||||
|
cb(cVar.getValue(), *static_cast<const T*>(previousValue));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void unsubscribe(Subscription token);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Register a CVar and attach a change callback in one step.
|
||||||
|
*
|
||||||
|
* Useful for pushing settings into external systems (e.g. aurora) from one place instead of
|
||||||
|
* every UI setter. The callback fires only for runtime changes (see subscribe); the value
|
||||||
|
* loaded from config or launch arguments does not fire it — the external system reads its
|
||||||
|
* initial value itself at its own initialization.
|
||||||
|
*/
|
||||||
|
template <ConfigValue T, typename Callback>
|
||||||
|
requires std::invocable<Callback, const T&, const T&> Subscription Register(
|
||||||
|
ConfigVar<T>& cVar, Callback&& onChange) {
|
||||||
|
auto subscription = subscribe(cVar, std::forward<Callback>(onChange));
|
||||||
|
Register(static_cast<ConfigVarBase&>(cVar));
|
||||||
|
return subscription;
|
||||||
|
}
|
||||||
|
|
||||||
template <ConfigValue T>
|
template <ConfigValue T>
|
||||||
const ConfigImplBase* GetConfigImpl() {
|
const ConfigImplBase* GetConfigImpl() {
|
||||||
static ConfigImpl<T> config;
|
static ConfigImpl<T> config;
|
||||||
|
|||||||
@@ -2,9 +2,12 @@
|
|||||||
#define DUSK_CONFIG_VAR_HPP
|
#define DUSK_CONFIG_VAR_HPP
|
||||||
|
|
||||||
#include "dolphin/types.h"
|
#include "dolphin/types.h"
|
||||||
#include <type_traits>
|
#include <concepts>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
#include <limits>
|
||||||
|
#include <optional>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <type_traits>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The configuration system.
|
* The configuration system.
|
||||||
@@ -68,7 +71,7 @@ protected:
|
|||||||
/**
|
/**
|
||||||
* The name of this CVar, used in the configuration file.
|
* The name of this CVar, used in the configuration file.
|
||||||
*/
|
*/
|
||||||
const char* name;
|
std::string name;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether this CVar has been registered with the global managing logic.
|
* Whether this CVar has been registered with the global managing logic.
|
||||||
@@ -86,8 +89,8 @@ protected:
|
|||||||
*/
|
*/
|
||||||
const ConfigImplBase* impl;
|
const ConfigImplBase* impl;
|
||||||
|
|
||||||
ConfigVarBase(const char* name, const ConfigImplBase* impl);
|
ConfigVarBase(const ConfigVarBase&) = delete;
|
||||||
virtual ~ConfigVarBase() = default;
|
ConfigVarBase(std::string name, const ConfigImplBase* impl);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check that the CVar is registered, aborting if this is not the case.
|
* Check that the CVar is registered, aborting if this is not the case.
|
||||||
@@ -97,7 +100,22 @@ protected:
|
|||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether any change subscriber (see config::subscribe) is attached to this CVar's name.
|
||||||
|
*/
|
||||||
|
[[nodiscard]] bool has_subscribers() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Notify change subscribers (see config::subscribe) that the effective value of this CVar
|
||||||
|
* changed. Called by mutators after the change has been applied; previousValue points at
|
||||||
|
* the old value (a `const T*` for a `ConfigVar<T>`), valid only for the duration of the
|
||||||
|
* call.
|
||||||
|
*/
|
||||||
|
void notify_changed(const void* previousValue);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
virtual ~ConfigVarBase();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the name of this CVar, used in the configuration file.
|
* Get the name of this CVar, used in the configuration file.
|
||||||
*/
|
*/
|
||||||
@@ -120,6 +138,7 @@ public:
|
|||||||
* This is necessary to make it legal to access.
|
* This is necessary to make it legal to access.
|
||||||
*/
|
*/
|
||||||
void markRegistered();
|
void markRegistered();
|
||||||
|
void unmarkRegistered();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clear a speedrun-mode override if one is active on this CVar.
|
* Clear a speedrun-mode override if one is active on this CVar.
|
||||||
@@ -139,26 +158,36 @@ concept ConfigValueInteger =
|
|||||||
|| std::is_same_v<T, s64>
|
|| std::is_same_v<T, s64>
|
||||||
|| std::is_same_v<T, u64>;
|
|| std::is_same_v<T, u64>;
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
struct ConfigValueTraits {
|
||||||
|
static constexpr bool enabled = false;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Concept that defines the legal set of types that can be used for CVar values.
|
* \brief Concept that defines the legal set of types that can be used for CVar values.
|
||||||
*
|
*
|
||||||
* Valid types cannot be cv-qualified and must be basic primitive types (int, float, bool),
|
* Valid types cannot be cv-qualified and must be basic primitive types (int, float, bool),
|
||||||
* strings, or enums of the basic primitives.
|
* strings, enums of the basic primitives, or explicitly-enabled structured settings.
|
||||||
*/
|
*/
|
||||||
template <typename T>
|
template <typename T>
|
||||||
concept ConfigValue =
|
concept ConfigValue =
|
||||||
!std::is_const_v<T>
|
!std::is_const_v<T>
|
||||||
&& !std::is_volatile_v<T>
|
&& !std::is_volatile_v<T>
|
||||||
|
&& std::equality_comparable<T>
|
||||||
&& (std::is_same_v<T, bool>
|
&& (std::is_same_v<T, bool>
|
||||||
|| ConfigValueInteger<T>
|
|| ConfigValueInteger<T>
|
||||||
|| std::is_same_v<T, f32>
|
|| std::is_same_v<T, f32>
|
||||||
|| std::is_same_v<T, f64>
|
|| std::is_same_v<T, f64>
|
||||||
|| std::is_same_v<T, std::string>
|
|| std::is_same_v<T, std::string>
|
||||||
|| (std::is_enum_v<T> && ConfigValueInteger<std::underlying_type_t<T>>));
|
|| (std::is_enum_v<T> && ConfigValueInteger<std::underlying_type_t<T>>)
|
||||||
|
|| ConfigValueTraits<T>::enabled);
|
||||||
|
|
||||||
template <ConfigValue T>
|
template <ConfigValue T>
|
||||||
const ConfigImplBase* GetConfigImpl();
|
const ConfigImplBase* GetConfigImpl();
|
||||||
|
|
||||||
|
template <ConfigValue T>
|
||||||
|
class ConfigImpl;
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct ConfigEnumRange {
|
struct ConfigEnumRange {
|
||||||
static constexpr auto min = std::numeric_limits<std::underlying_type_t<T>>::min();
|
static constexpr auto min = std::numeric_limits<std::underlying_type_t<T>>::min();
|
||||||
@@ -185,10 +214,12 @@ public:
|
|||||||
* @param arg Arguments to forward to construct the default value.
|
* @param arg Arguments to forward to construct the default value.
|
||||||
*/
|
*/
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
ConfigVar(const char* name, Args&&... arg)
|
ConfigVar(std::string name, Args&&... arg)
|
||||||
: ConfigVarBase(name, GetConfigImpl<T>()), defaultValue(std::forward<Args>(arg)...),
|
: ConfigVarBase(std::move(name), GetConfigImpl<T>()), defaultValue(std::forward<Args>(arg)...),
|
||||||
value(), overrideValue() {}
|
value(), overrideValue() {}
|
||||||
|
|
||||||
|
ConfigVar(ConfigVar const&) = delete;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Get the current value of the CVar.
|
* \brief Get the current value of the CVar.
|
||||||
*
|
*
|
||||||
@@ -227,6 +258,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
void setValue(T newValue, bool replaceOverride = true) {
|
void setValue(T newValue, bool replaceOverride = true) {
|
||||||
checkRegistered();
|
checkRegistered();
|
||||||
|
const auto previous = previous_for_notify();
|
||||||
value = std::move(newValue);
|
value = std::move(newValue);
|
||||||
|
|
||||||
if (replaceOverride) {
|
if (replaceOverride) {
|
||||||
@@ -235,6 +267,7 @@ public:
|
|||||||
} else if (layer != ConfigVarLayer::Override) {
|
} else if (layer != ConfigVarLayer::Override) {
|
||||||
layer = ConfigVarLayer::Value;
|
layer = ConfigVarLayer::Value;
|
||||||
}
|
}
|
||||||
|
notify_if_changed(previous);
|
||||||
}
|
}
|
||||||
|
|
||||||
operator const T&() {
|
operator const T&() {
|
||||||
@@ -251,8 +284,10 @@ public:
|
|||||||
*/
|
*/
|
||||||
void setOverrideValue(T newValue) {
|
void setOverrideValue(T newValue) {
|
||||||
checkRegistered();
|
checkRegistered();
|
||||||
|
const auto previous = previous_for_notify();
|
||||||
overrideValue = std::move(newValue);
|
overrideValue = std::move(newValue);
|
||||||
layer = ConfigVarLayer::Override;
|
layer = ConfigVarLayer::Override;
|
||||||
|
notify_if_changed(previous);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -266,25 +301,31 @@ public:
|
|||||||
void setSpeedrunValue(T newValue) {
|
void setSpeedrunValue(T newValue) {
|
||||||
checkRegistered();
|
checkRegistered();
|
||||||
if (layer != ConfigVarLayer::Override) {
|
if (layer != ConfigVarLayer::Override) {
|
||||||
|
const auto previous = previous_for_notify();
|
||||||
priorLayer = layer;
|
priorLayer = layer;
|
||||||
overrideValue = std::move(newValue);
|
overrideValue = std::move(newValue);
|
||||||
layer = ConfigVarLayer::Speedrun;
|
layer = ConfigVarLayer::Speedrun;
|
||||||
|
notify_if_changed(previous);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void clearOverride() {
|
void clearOverride() {
|
||||||
checkRegistered();
|
checkRegistered();
|
||||||
if (layer == ConfigVarLayer::Override) {
|
if (layer == ConfigVarLayer::Override) {
|
||||||
|
const auto previous = previous_for_notify();
|
||||||
overrideValue = {};
|
overrideValue = {};
|
||||||
layer = ConfigVarLayer::Value;
|
layer = ConfigVarLayer::Value;
|
||||||
|
notify_if_changed(previous);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void clearSpeedrunOverride() override {
|
void clearSpeedrunOverride() override {
|
||||||
checkRegistered();
|
checkRegistered();
|
||||||
if (layer == ConfigVarLayer::Speedrun) {
|
if (layer == ConfigVarLayer::Speedrun) {
|
||||||
|
const auto previous = previous_for_notify();
|
||||||
overrideValue = {};
|
overrideValue = {};
|
||||||
layer = priorLayer;
|
layer = priorLayer;
|
||||||
|
notify_if_changed(previous);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -298,6 +339,48 @@ public:
|
|||||||
const ConfigVarLayer effectiveLayer = (layer == ConfigVarLayer::Speedrun) ? priorLayer : layer;
|
const ConfigVarLayer effectiveLayer = (layer == ConfigVarLayer::Speedrun) ? priorLayer : layer;
|
||||||
return effectiveLayer == ConfigVarLayer::Default ? defaultValue : value;
|
return effectiveLayer == ConfigVarLayer::Default ? defaultValue : value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
// The config loader applies values through the silent load_* methods below.
|
||||||
|
friend class ConfigImpl<T>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copy of the effective value before a mutation, taken only when someone is subscribed.
|
||||||
|
*/
|
||||||
|
[[nodiscard]] std::optional<T> previous_for_notify() const {
|
||||||
|
return has_subscribers() ? std::optional<T>{getValue()} : std::nullopt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Notify subscribers if the effective value actually changed across a mutation.
|
||||||
|
*/
|
||||||
|
void notify_if_changed(const std::optional<T>& previous) {
|
||||||
|
if (previous.has_value() && !(getValue() == *previous)) {
|
||||||
|
notify_changed(&*previous);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* setValue(newValue, false) without notifying change subscribers. Used when loading config:
|
||||||
|
* loads happen during startup before the subsystems change callbacks push values into are
|
||||||
|
* initialized, and each subsystem applies the loaded value itself at its own init.
|
||||||
|
*/
|
||||||
|
void load_value(T newValue) {
|
||||||
|
checkRegistered();
|
||||||
|
value = std::move(newValue);
|
||||||
|
if (layer != ConfigVarLayer::Override) {
|
||||||
|
layer = ConfigVarLayer::Value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* setOverrideValue without notifying change subscribers (see load_value).
|
||||||
|
*/
|
||||||
|
void load_override_value(T newValue) {
|
||||||
|
checkRegistered();
|
||||||
|
overrideValue = std::move(newValue);
|
||||||
|
layer = ConfigVarLayer::Override;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
using ActionBindConfigVar = ConfigVar<int>;
|
using ActionBindConfigVar = ConfigVar<int>;
|
||||||
|
|||||||
@@ -7,12 +7,16 @@
|
|||||||
#include <dolphin/gx/GXExtra.h>
|
#include <dolphin/gx/GXExtra.h>
|
||||||
#include "tracy/Tracy.hpp"
|
#include "tracy/Tracy.hpp"
|
||||||
|
|
||||||
|
#if DUSK_GFX_DEBUG_GROUPS
|
||||||
#define GX_DEBUG_GROUP(name, ...) \
|
#define GX_DEBUG_GROUP(name, ...) \
|
||||||
do { \
|
do { \
|
||||||
GXPushDebugGroup(#name); \
|
GXPushDebugGroup(#name); \
|
||||||
name(__VA_ARGS__); \
|
name(__VA_ARGS__); \
|
||||||
GXPopDebugGroup(); \
|
GXPopDebugGroup(); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
#else
|
||||||
|
#define GX_DEBUG_GROUP(name, ...) name(__VA_ARGS__)
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef TARGET_PC
|
#ifdef TARGET_PC
|
||||||
class GXTexObjRAII : public GXTexObj {
|
class GXTexObjRAII : public GXTexObj {
|
||||||
@@ -39,16 +43,37 @@ public:
|
|||||||
static_assert(sizeof(GXTexObjRAII) == sizeof(GXTexObj),
|
static_assert(sizeof(GXTexObjRAII) == sizeof(GXTexObj),
|
||||||
"GXTexObjRAII should have the same size as GXTexObj");
|
"GXTexObjRAII should have the same size as GXTexObj");
|
||||||
typedef GXTexObjRAII TGXTexObj;
|
typedef GXTexObjRAII TGXTexObj;
|
||||||
|
|
||||||
|
class GXTlutObjRAII : public GXTlutObj {
|
||||||
|
public:
|
||||||
|
GXTlutObjRAII() : GXTlutObj() {}
|
||||||
|
~GXTlutObjRAII() { GXDestroyTlutObj(this); }
|
||||||
|
|
||||||
|
void reset() { GXDestroyTlutObj(this); }
|
||||||
|
|
||||||
|
GXTlutObjRAII(const GXTlutObjRAII&) = delete;
|
||||||
|
GXTlutObjRAII& operator=(const GXTlutObjRAII&) = delete;
|
||||||
|
GXTlutObjRAII(GXTlutObjRAII&&) = delete;
|
||||||
|
GXTlutObjRAII& operator=(GXTlutObjRAII&&) = delete;
|
||||||
|
};
|
||||||
|
static_assert(sizeof(GXTlutObjRAII) == sizeof(GXTlutObj),
|
||||||
|
"GXTlutObjRAII should have the same size as GXTlutObj");
|
||||||
|
typedef GXTlutObjRAII TGXTlutObj;
|
||||||
#else
|
#else
|
||||||
typedef GXTexObj TGXTexObj;
|
typedef GXTexObj TGXTexObj;
|
||||||
|
typedef GXTlutObj TGXTlutObj;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct GXScopedDebugGroup {
|
struct GXScopedDebugGroup {
|
||||||
explicit GXScopedDebugGroup(const char* text) {
|
explicit GXScopedDebugGroup(const char* text) {
|
||||||
|
#if DUSK_GFX_DEBUG_GROUPS
|
||||||
GXPushDebugGroup(text);
|
GXPushDebugGroup(text);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
~GXScopedDebugGroup() {
|
~GXScopedDebugGroup() {
|
||||||
|
#if DUSK_GFX_DEBUG_GROUPS
|
||||||
GXPopDebugGroup();
|
GXPopDebugGroup();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+1
-4
@@ -1,5 +1,4 @@
|
|||||||
#ifndef DUSK_GYRO_H
|
#pragma once
|
||||||
#define DUSK_GYRO_H
|
|
||||||
|
|
||||||
namespace dusk::gyro {
|
namespace dusk::gyro {
|
||||||
void read(float dt);
|
void read(float dt);
|
||||||
@@ -14,5 +13,3 @@ bool get_sensor_keep_alive();
|
|||||||
void set_sensor_keep_alive(bool value);
|
void set_sensor_keep_alive(bool value);
|
||||||
bool rollgoal_gyro_enabled();
|
bool rollgoal_gyro_enabled();
|
||||||
} // namespace dusk::gyro
|
} // namespace dusk::gyro
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|||||||
@@ -0,0 +1,65 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "dolphin/types.h"
|
||||||
|
|
||||||
|
class CPaneMgr;
|
||||||
|
|
||||||
|
namespace dusk::menu_pointer {
|
||||||
|
|
||||||
|
using TargetId = u16;
|
||||||
|
constexpr TargetId InvalidTarget = 0xffff;
|
||||||
|
|
||||||
|
enum class Context {
|
||||||
|
None,
|
||||||
|
FileSelect,
|
||||||
|
Save,
|
||||||
|
ItemWheel,
|
||||||
|
Collection,
|
||||||
|
Options,
|
||||||
|
Dialog,
|
||||||
|
};
|
||||||
|
|
||||||
|
enum class Phase {
|
||||||
|
Move,
|
||||||
|
Press,
|
||||||
|
Release,
|
||||||
|
Cancel,
|
||||||
|
};
|
||||||
|
|
||||||
|
struct State {
|
||||||
|
f32 x = 0.0f;
|
||||||
|
f32 y = 0.0f;
|
||||||
|
bool valid = false;
|
||||||
|
bool down = false;
|
||||||
|
bool pressed = false;
|
||||||
|
bool released = false;
|
||||||
|
bool clicked = false;
|
||||||
|
bool touch = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
void begin_game_frame() noexcept;
|
||||||
|
void end_game_frame() noexcept;
|
||||||
|
void begin_context(Context context) noexcept;
|
||||||
|
bool handle_fallthrough_pointer(f32 x, f32 y, Phase phase, bool touch, s32 mouseButton = -1) noexcept;
|
||||||
|
|
||||||
|
bool active() noexcept;
|
||||||
|
bool enabled() noexcept;
|
||||||
|
bool mouse_capture_active() noexcept;
|
||||||
|
const State& state() noexcept;
|
||||||
|
void set_hover_target(TargetId target) noexcept;
|
||||||
|
bool consume_click() noexcept;
|
||||||
|
bool peek_click() noexcept;
|
||||||
|
void set_dialog_choice(u8 choice, bool clicked) noexcept;
|
||||||
|
bool get_dialog_choice(u8& choice) noexcept;
|
||||||
|
bool consume_dialog_click(u8& choice) noexcept;
|
||||||
|
void defer_activation(Context context, TargetId target) noexcept;
|
||||||
|
bool consume_deferred_activation(Context context, TargetId target) noexcept;
|
||||||
|
void clear_deferred_activation(Context context) noexcept;
|
||||||
|
u32 suppressed_pad_buttons(u32 port) noexcept;
|
||||||
|
void finish_pad_suppression_read(u32 port) noexcept;
|
||||||
|
|
||||||
|
bool hit_rect(f32 left, f32 top, f32 right, f32 bottom, f32 padding = 0.0f) noexcept;
|
||||||
|
bool hit_pane(CPaneMgr* pane, f32 padding = 0.0f) noexcept;
|
||||||
|
bool hit_pane(J2DPane* pane, f32 padding = 0.0f) noexcept;
|
||||||
|
|
||||||
|
} // namespace dusk::menu_pointer
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <SDL3/SDL_events.h>
|
||||||
|
|
||||||
|
namespace dusk::mouse {
|
||||||
|
void read();
|
||||||
|
void get_aim_deltas(float& out_yaw, float& out_pitch);
|
||||||
|
void get_camera_deltas(float& out_yaw, float& out_pitch);
|
||||||
|
void handle_event(const SDL_Event& event) noexcept;
|
||||||
|
void on_focus_lost();
|
||||||
|
void on_focus_gained();
|
||||||
|
} // namespace dusk::mouse
|
||||||
+55
-26
@@ -1,13 +1,14 @@
|
|||||||
#ifndef DUSK_CONFIG_H
|
#pragma once
|
||||||
#define DUSK_CONFIG_H
|
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
|
|
||||||
#include "dusk/config_var.hpp"
|
#include "dusk/config_var.hpp"
|
||||||
|
#include "dusk/ui/controls.hpp"
|
||||||
|
|
||||||
namespace dusk {
|
namespace dusk {
|
||||||
|
|
||||||
using namespace config;
|
using config::ConfigVar;
|
||||||
|
using config::ActionBindConfigVar;
|
||||||
|
|
||||||
enum class BloomMode : int {
|
enum class BloomMode : int {
|
||||||
Off = 0,
|
Off = 0,
|
||||||
@@ -40,23 +41,32 @@ enum class DiscVerificationState : u8 {
|
|||||||
HashMismatch,
|
HashMismatch,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class GyroMode : u8 {
|
|
||||||
Sensor = 0,
|
|
||||||
Mouse = 1,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum class FrameInterpMode : u8 {
|
enum class FrameInterpMode : u8 {
|
||||||
Off = 0,
|
Off = 0,
|
||||||
Capped = 1,
|
Capped = 1,
|
||||||
Unlimited = 2,
|
Unlimited = 2,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum class TouchTargeting : u8 {
|
||||||
|
Hybrid = 0,
|
||||||
|
Hold = 1,
|
||||||
|
Switch = 2,
|
||||||
|
};
|
||||||
|
|
||||||
enum class MenuScaling : u8 {
|
enum class MenuScaling : u8 {
|
||||||
GameCube = 0,
|
GameCube = 0,
|
||||||
Wii = 1,
|
Wii = 1,
|
||||||
Dusklight = 2,
|
Dusklight = 2,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum class MagicArmorMode : u8 {
|
||||||
|
NORMAL = 0,
|
||||||
|
ON_DAMAGE = 1,
|
||||||
|
DOUBLE_DEFENSE = 2,
|
||||||
|
INVINCIBLE = 3,
|
||||||
|
COSMETIC = 4,
|
||||||
|
};
|
||||||
|
|
||||||
namespace config {
|
namespace config {
|
||||||
template <>
|
template <>
|
||||||
struct ConfigEnumRange<BloomMode> {
|
struct ConfigEnumRange<BloomMode> {
|
||||||
@@ -88,23 +98,34 @@ struct ConfigEnumRange<DiscVerificationState> {
|
|||||||
static constexpr auto max = DiscVerificationState::HashMismatch;
|
static constexpr auto max = DiscVerificationState::HashMismatch;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <>
|
|
||||||
struct ConfigEnumRange<GyroMode> {
|
|
||||||
static constexpr auto min = GyroMode::Sensor;
|
|
||||||
static constexpr auto max = GyroMode::Mouse;
|
|
||||||
};
|
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
struct ConfigEnumRange<FrameInterpMode> {
|
struct ConfigEnumRange<FrameInterpMode> {
|
||||||
static constexpr auto min = FrameInterpMode::Off;
|
static constexpr auto min = FrameInterpMode::Off;
|
||||||
static constexpr auto max = FrameInterpMode::Unlimited;
|
static constexpr auto max = FrameInterpMode::Unlimited;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct ConfigEnumRange<TouchTargeting> {
|
||||||
|
static constexpr auto min = TouchTargeting::Hybrid;
|
||||||
|
static constexpr auto max = TouchTargeting::Switch;
|
||||||
|
};
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
struct ConfigEnumRange<MenuScaling> {
|
struct ConfigEnumRange<MenuScaling> {
|
||||||
static constexpr auto min = MenuScaling::GameCube;
|
static constexpr auto min = MenuScaling::GameCube;
|
||||||
static constexpr auto max = MenuScaling::Dusklight;
|
static constexpr auto max = MenuScaling::Dusklight;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct ConfigEnumRange<MagicArmorMode> {
|
||||||
|
static constexpr auto min = MagicArmorMode::NORMAL;
|
||||||
|
static constexpr auto max = MagicArmorMode::COSMETIC;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct ConfigValueTraits<ui::ControlLayout> {
|
||||||
|
static constexpr bool enabled = true;
|
||||||
|
};
|
||||||
} // namespace config
|
} // namespace config
|
||||||
|
|
||||||
// Persistent user settings
|
// Persistent user settings
|
||||||
@@ -120,6 +141,9 @@ struct UserSettings {
|
|||||||
ConfigVar<bool> enableFpsOverlay;
|
ConfigVar<bool> enableFpsOverlay;
|
||||||
ConfigVar<int> fpsOverlayCorner;
|
ConfigVar<int> fpsOverlayCorner;
|
||||||
ConfigVar<int> maxFrameRate;
|
ConfigVar<int> maxFrameRate;
|
||||||
|
ConfigVar<bool> rememberWindowSize;
|
||||||
|
ConfigVar<int> lastWindowWidth;
|
||||||
|
ConfigVar<int> lastWindowHeight;
|
||||||
} video;
|
} video;
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
@@ -153,6 +177,7 @@ struct UserSettings {
|
|||||||
ConfigVar<bool> noMissClimbing;
|
ConfigVar<bool> noMissClimbing;
|
||||||
ConfigVar<bool> fastTears;
|
ConfigVar<bool> fastTears;
|
||||||
ConfigVar<bool> no2ndFishForCat;
|
ConfigVar<bool> no2ndFishForCat;
|
||||||
|
ConfigVar<bool> buttonFishing;
|
||||||
ConfigVar<bool> instantSaves;
|
ConfigVar<bool> instantSaves;
|
||||||
ConfigVar<bool> instantText;
|
ConfigVar<bool> instantText;
|
||||||
ConfigVar<bool> sunsSong;
|
ConfigVar<bool> sunsSong;
|
||||||
@@ -162,6 +187,7 @@ struct UserSettings {
|
|||||||
// Preferences
|
// Preferences
|
||||||
ConfigVar<bool> enableMirrorMode;
|
ConfigVar<bool> enableMirrorMode;
|
||||||
ConfigVar<bool> minimalHUD;
|
ConfigVar<bool> minimalHUD;
|
||||||
|
ConfigVar<float> hudScale;
|
||||||
ConfigVar<bool> pauseOnFocusLost;
|
ConfigVar<bool> pauseOnFocusLost;
|
||||||
ConfigVar<bool> enableLinkDollRotation;
|
ConfigVar<bool> enableLinkDollRotation;
|
||||||
ConfigVar<bool> enableAchievementToasts;
|
ConfigVar<bool> enableAchievementToasts;
|
||||||
@@ -187,7 +213,6 @@ struct UserSettings {
|
|||||||
ConfigVar<bool> midnasLamentNonStop;
|
ConfigVar<bool> midnasLamentNonStop;
|
||||||
|
|
||||||
// Input
|
// Input
|
||||||
ConfigVar<GyroMode> gyroMode;
|
|
||||||
ConfigVar<bool> enableGyroAim;
|
ConfigVar<bool> enableGyroAim;
|
||||||
ConfigVar<bool> enableGyroRollgoal;
|
ConfigVar<bool> enableGyroRollgoal;
|
||||||
ConfigVar<float> gyroSensitivityX;
|
ConfigVar<float> gyroSensitivityX;
|
||||||
@@ -197,7 +222,16 @@ struct UserSettings {
|
|||||||
ConfigVar<float> gyroDeadband;
|
ConfigVar<float> gyroDeadband;
|
||||||
ConfigVar<bool> gyroInvertPitch;
|
ConfigVar<bool> gyroInvertPitch;
|
||||||
ConfigVar<bool> gyroInvertYaw;
|
ConfigVar<bool> gyroInvertYaw;
|
||||||
|
ConfigVar<bool> enableMouseCamera;
|
||||||
|
ConfigVar<bool> enableMouseAim;
|
||||||
|
ConfigVar<float> mouseAimSensitivity;
|
||||||
|
ConfigVar<float> mouseCameraSensitivity;
|
||||||
|
ConfigVar<bool> invertMouseY;
|
||||||
ConfigVar<bool> freeCamera;
|
ConfigVar<bool> freeCamera;
|
||||||
|
ConfigVar<bool> enableTouchControls;
|
||||||
|
ConfigVar<TouchTargeting> touchTargeting;
|
||||||
|
ConfigVar<bool> enableMenuPointer;
|
||||||
|
ConfigVar<ui::ControlLayout> touchControlsLayout;
|
||||||
ConfigVar<bool> invertCameraXAxis;
|
ConfigVar<bool> invertCameraXAxis;
|
||||||
ConfigVar<bool> invertCameraYAxis;
|
ConfigVar<bool> invertCameraYAxis;
|
||||||
ConfigVar<bool> invertFirstPersonXAxis;
|
ConfigVar<bool> invertFirstPersonXAxis;
|
||||||
@@ -206,6 +240,8 @@ struct UserSettings {
|
|||||||
ConfigVar<bool> invertAirSwimY;
|
ConfigVar<bool> invertAirSwimY;
|
||||||
ConfigVar<float> freeCameraXSensitivity;
|
ConfigVar<float> freeCameraXSensitivity;
|
||||||
ConfigVar<float> freeCameraYSensitivity;
|
ConfigVar<float> freeCameraYSensitivity;
|
||||||
|
ConfigVar<float> touchCameraXSensitivity;
|
||||||
|
ConfigVar<float> touchCameraYSensitivity;
|
||||||
ConfigVar<bool> debugFlyCam;
|
ConfigVar<bool> debugFlyCam;
|
||||||
ConfigVar<bool> debugFlyCamLockEvents;
|
ConfigVar<bool> debugFlyCamLockEvents;
|
||||||
ConfigVar<bool> allowBackgroundInput;
|
ConfigVar<bool> allowBackgroundInput;
|
||||||
@@ -228,9 +264,8 @@ struct UserSettings {
|
|||||||
ConfigVar<bool> canTransformAnywhere;
|
ConfigVar<bool> canTransformAnywhere;
|
||||||
ConfigVar<bool> fastRoll;
|
ConfigVar<bool> fastRoll;
|
||||||
ConfigVar<bool> fastSpinner;
|
ConfigVar<bool> fastSpinner;
|
||||||
ConfigVar<bool> freeMagicArmor;
|
ConfigVar<MagicArmorMode> armorRupeeDrain;
|
||||||
ConfigVar<bool> invincibleEnemies;
|
ConfigVar<bool> invincibleEnemies;
|
||||||
ConfigVar<bool> transformWithoutShadowCrystal;
|
|
||||||
|
|
||||||
// Technical
|
// Technical
|
||||||
ConfigVar<bool> restoreWiiGlitches;
|
ConfigVar<bool> restoreWiiGlitches;
|
||||||
@@ -252,12 +287,8 @@ struct UserSettings {
|
|||||||
struct {
|
struct {
|
||||||
ConfigVar<std::string> isoPath;
|
ConfigVar<std::string> isoPath;
|
||||||
ConfigVar<DiscVerificationState> isoVerification;
|
ConfigVar<DiscVerificationState> isoVerification;
|
||||||
#if DUSK_TPHD
|
|
||||||
ConfigVar<std::string> hdContentPath;
|
|
||||||
#endif
|
|
||||||
ConfigVar<std::string> graphicsBackend;
|
ConfigVar<std::string> graphicsBackend;
|
||||||
ConfigVar<bool> skipPreLaunchUI;
|
ConfigVar<bool> skipPreLaunchUI;
|
||||||
ConfigVar<bool> showPipelineCompilation;
|
|
||||||
ConfigVar<bool> wasPresetChosen;
|
ConfigVar<bool> wasPresetChosen;
|
||||||
ConfigVar<bool> checkForUpdates;
|
ConfigVar<bool> checkForUpdates;
|
||||||
ConfigVar<int> cardFileType;
|
ConfigVar<int> cardFileType;
|
||||||
@@ -268,6 +299,8 @@ struct UserSettings {
|
|||||||
struct {
|
struct {
|
||||||
std::array<ActionBindConfigVar, 4> firstPersonCamera;
|
std::array<ActionBindConfigVar, 4> firstPersonCamera;
|
||||||
std::array<ActionBindConfigVar, 4> callMidna;
|
std::array<ActionBindConfigVar, 4> callMidna;
|
||||||
|
std::array<ActionBindConfigVar, 4> openMapScreen;
|
||||||
|
std::array<ActionBindConfigVar, 4> toggleMinimap;
|
||||||
std::array<ActionBindConfigVar, 4> openDusklightMenu;
|
std::array<ActionBindConfigVar, 4> openDusklightMenu;
|
||||||
std::array<ActionBindConfigVar, 4> turboSpeedButton;
|
std::array<ActionBindConfigVar, 4> turboSpeedButton;
|
||||||
} actionBindings;
|
} actionBindings;
|
||||||
@@ -275,8 +308,6 @@ struct UserSettings {
|
|||||||
|
|
||||||
UserSettings& getSettings();
|
UserSettings& getSettings();
|
||||||
|
|
||||||
bool tphd_active();
|
|
||||||
|
|
||||||
void registerSettings();
|
void registerSettings();
|
||||||
|
|
||||||
// Transient settings
|
// Transient settings
|
||||||
@@ -301,6 +332,4 @@ struct TransientSettings {
|
|||||||
|
|
||||||
TransientSettings& getTransientSettings();
|
TransientSettings& getTransientSettings();
|
||||||
|
|
||||||
}
|
} // namespace dusk
|
||||||
|
|
||||||
#endif // DUSK_CONFIG_H
|
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
#ifndef DUSK_TEXTURE_REPLACEMENTS_HPP
|
||||||
|
#define DUSK_TEXTURE_REPLACEMENTS_HPP
|
||||||
|
|
||||||
|
namespace dusk::texture_replacements {
|
||||||
|
|
||||||
|
void reload();
|
||||||
|
void set_enabled(bool enabled);
|
||||||
|
void shutdown();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
namespace dusk::touch_camera {
|
||||||
|
|
||||||
|
constexpr float YAW_DEGREES_PER_DP = 0.34f;
|
||||||
|
constexpr float PITCH_DEGREES_PER_DP = 0.22f;
|
||||||
|
|
||||||
|
void add_delta(float yaw_dp, float pitch_dp) noexcept;
|
||||||
|
bool consume_delta(float& yaw_dp, float& pitch_dp) noexcept;
|
||||||
|
void clear() noexcept;
|
||||||
|
|
||||||
|
} // namespace dusk::touch_camera
|
||||||
@@ -36,7 +36,7 @@ typedef struct node_create_request {
|
|||||||
/* 0x58 */ s16 name;
|
/* 0x58 */ s16 name;
|
||||||
/* 0x5C */ void* data;
|
/* 0x5C */ void* data;
|
||||||
/* 0x60 */ s16 unk_0x60;
|
/* 0x60 */ s16 unk_0x60;
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x64 */ int unk_0x64;
|
/* 0x64 */ int unk_0x64;
|
||||||
/* 0x68 */ int unk_0x68;
|
/* 0x68 */ int unk_0x68;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -11,13 +11,13 @@ class mDoAud_zelAudio_c : public Z2AudioMgr {
|
|||||||
public:
|
public:
|
||||||
void reset();
|
void reset();
|
||||||
mDoAud_zelAudio_c() {
|
mDoAud_zelAudio_c() {
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
setMode(2);
|
setMode(2);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
~mDoAud_zelAudio_c() {}
|
~mDoAud_zelAudio_c() {}
|
||||||
|
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
u8 getMode() { return field_0x13bd; }
|
u8 getMode() { return field_0x13bd; }
|
||||||
void setMode(u8 mode) { field_0x13bd = mode; }
|
void setMode(u8 mode) { field_0x13bd = mode; }
|
||||||
|
|
||||||
|
|||||||
@@ -35,6 +35,11 @@ public:
|
|||||||
/* 0x4 */ s8 mNo;
|
/* 0x4 */ s8 mNo;
|
||||||
/* 0x5 */ u8 mCount;
|
/* 0x5 */ u8 mCount;
|
||||||
#else
|
#else
|
||||||
|
#if PARTIAL_DEBUG
|
||||||
|
// Initialized here since the DEBUG ctor doesn't run.
|
||||||
|
/* 0x4 */ s8 mNo = -1;
|
||||||
|
/* 0x5 */ u8 mCount = 0;
|
||||||
|
#endif
|
||||||
virtual ~mDoHIO_entry_c() {}
|
virtual ~mDoHIO_entry_c() {}
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ struct mDoLib_clipper {
|
|||||||
|
|
||||||
void mDoLib_project(Vec* src, Vec* dst);
|
void mDoLib_project(Vec* src, Vec* dst);
|
||||||
u32 mDoLib_setResTimgObj(ResTIMG const* res, TGXTexObj* o_texObj, u32 tlut_name,
|
u32 mDoLib_setResTimgObj(ResTIMG const* res, TGXTexObj* o_texObj, u32 tlut_name,
|
||||||
GXTlutObj* o_tlutObj);
|
TGXTlutObj* o_tlutObj);
|
||||||
void mDoLib_pos2camera(Vec* src, Vec* dst);
|
void mDoLib_pos2camera(Vec* src, Vec* dst);
|
||||||
|
|
||||||
#if PLATFORM_WII
|
#if PLATFORM_WII
|
||||||
|
|||||||
+41
-16
@@ -952,45 +952,70 @@ if(DEFINED APPLE_TARGET_TRIPLE)
|
|||||||
set(APPLE_TARGET_TRIPLE_FLAG "-target ${APPLE_TARGET_TRIPLE}")
|
set(APPLE_TARGET_TRIPLE_FLAG "-target ${APPLE_TARGET_TRIPLE}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
function(ios_toolchain_set_cached_flags variable description)
|
||||||
|
set(clean_flags "${${variable}}")
|
||||||
|
foreach(toolchain_flag IN LISTS ARGN)
|
||||||
|
if(NOT "${toolchain_flag}" STREQUAL "")
|
||||||
|
string(REPLACE "${toolchain_flag}" "" clean_flags "${clean_flags}")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
string(REGEX REPLACE "[ \t]+" " " clean_flags "${clean_flags}")
|
||||||
|
string(STRIP "${clean_flags}" clean_flags)
|
||||||
|
|
||||||
|
set(final_flags "")
|
||||||
|
foreach(toolchain_flag IN LISTS ARGN)
|
||||||
|
if(NOT "${toolchain_flag}" STREQUAL "")
|
||||||
|
string(APPEND final_flags " ${toolchain_flag}")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
if(NOT "${clean_flags}" STREQUAL "")
|
||||||
|
string(APPEND final_flags " ${clean_flags}")
|
||||||
|
endif()
|
||||||
|
string(REGEX REPLACE "[ \t]+" " " final_flags "${final_flags}")
|
||||||
|
string(STRIP "${final_flags}" final_flags)
|
||||||
|
|
||||||
|
set(${variable} "${final_flags}" CACHE INTERNAL "${description}")
|
||||||
|
endfunction()
|
||||||
|
|
||||||
#Check if Xcode generator is used since that will handle these flags automagically
|
#Check if Xcode generator is used since that will handle these flags automagically
|
||||||
if(CMAKE_GENERATOR MATCHES "Xcode")
|
if(CMAKE_GENERATOR MATCHES "Xcode")
|
||||||
message(STATUS "Not setting any manual command-line buildflags, since Xcode is selected as the generator. Modifying the Xcode build-settings directly instead.")
|
message(STATUS "Not setting any manual command-line buildflags, since Xcode is selected as the generator. Modifying the Xcode build-settings directly instead.")
|
||||||
else()
|
else()
|
||||||
set(CMAKE_C_FLAGS "${C_TARGET_FLAGS} ${APPLE_TARGET_TRIPLE_FLAG} ${SDK_NAME_VERSION_FLAGS} ${OBJC_LEGACY_VARS} ${BITCODE} ${VISIBILITY} ${CMAKE_C_FLAGS}" CACHE INTERNAL
|
ios_toolchain_set_cached_flags(CMAKE_C_FLAGS "Flags used by the compiler during all C build types."
|
||||||
"Flags used by the compiler during all C build types.")
|
"${C_TARGET_FLAGS}" "${APPLE_TARGET_TRIPLE_FLAG}" "${SDK_NAME_VERSION_FLAGS}" "${OBJC_LEGACY_VARS}" "${BITCODE}" "${VISIBILITY}")
|
||||||
set(CMAKE_C_FLAGS_DEBUG "-O0 -g ${CMAKE_C_FLAGS_DEBUG}")
|
set(CMAKE_C_FLAGS_DEBUG "-O0 -g ${CMAKE_C_FLAGS_DEBUG}")
|
||||||
set(CMAKE_C_FLAGS_MINSIZEREL "-DNDEBUG -Os ${CMAKE_C_FLAGS_MINSIZEREL}")
|
set(CMAKE_C_FLAGS_MINSIZEREL "-DNDEBUG -Os ${CMAKE_C_FLAGS_MINSIZEREL}")
|
||||||
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-DNDEBUG -O2 -g ${CMAKE_C_FLAGS_RELWITHDEBINFO}")
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-DNDEBUG -O2 -g ${CMAKE_C_FLAGS_RELWITHDEBINFO}")
|
||||||
set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG -O3 ${CMAKE_C_FLAGS_RELEASE}")
|
set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG -O3 ${CMAKE_C_FLAGS_RELEASE}")
|
||||||
set(CMAKE_CXX_FLAGS "${C_TARGET_FLAGS} ${APPLE_TARGET_TRIPLE_FLAG} ${SDK_NAME_VERSION_FLAGS} ${OBJC_LEGACY_VARS} ${BITCODE} ${VISIBILITY} ${CMAKE_CXX_FLAGS}" CACHE INTERNAL
|
ios_toolchain_set_cached_flags(CMAKE_CXX_FLAGS "Flags used by the compiler during all CXX build types."
|
||||||
"Flags used by the compiler during all CXX build types.")
|
"${C_TARGET_FLAGS}" "${APPLE_TARGET_TRIPLE_FLAG}" "${SDK_NAME_VERSION_FLAGS}" "${OBJC_LEGACY_VARS}" "${BITCODE}" "${VISIBILITY}")
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "-O0 -g ${CMAKE_CXX_FLAGS_DEBUG}")
|
set(CMAKE_CXX_FLAGS_DEBUG "-O0 -g ${CMAKE_CXX_FLAGS_DEBUG}")
|
||||||
set(CMAKE_CXX_FLAGS_MINSIZEREL "-DNDEBUG -Os ${CMAKE_CXX_FLAGS_MINSIZEREL}")
|
set(CMAKE_CXX_FLAGS_MINSIZEREL "-DNDEBUG -Os ${CMAKE_CXX_FLAGS_MINSIZEREL}")
|
||||||
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-DNDEBUG -O2 -g ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-DNDEBUG -O2 -g ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG -O3 ${CMAKE_CXX_FLAGS_RELEASE}")
|
set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG -O3 ${CMAKE_CXX_FLAGS_RELEASE}")
|
||||||
if(NAMED_LANGUAGE_SUPPORT_INT)
|
if(NAMED_LANGUAGE_SUPPORT_INT)
|
||||||
set(CMAKE_OBJC_FLAGS "${C_TARGET_FLAGS} ${APPLE_TARGET_TRIPLE_FLAG} ${SDK_NAME_VERSION_FLAGS} ${BITCODE} ${VISIBILITY} ${FOBJC_ARC} ${OBJC_VARS} ${CMAKE_OBJC_FLAGS}" CACHE INTERNAL
|
ios_toolchain_set_cached_flags(CMAKE_OBJC_FLAGS "Flags used by the compiler during all OBJC build types."
|
||||||
"Flags used by the compiler during all OBJC build types.")
|
"${C_TARGET_FLAGS}" "${APPLE_TARGET_TRIPLE_FLAG}" "${SDK_NAME_VERSION_FLAGS}" "${BITCODE}" "${VISIBILITY}" "${FOBJC_ARC}" "${OBJC_VARS}")
|
||||||
set(CMAKE_OBJC_FLAGS_DEBUG "-O0 -g ${CMAKE_OBJC_FLAGS_DEBUG}")
|
set(CMAKE_OBJC_FLAGS_DEBUG "-O0 -g ${CMAKE_OBJC_FLAGS_DEBUG}")
|
||||||
set(CMAKE_OBJC_FLAGS_MINSIZEREL "-DNDEBUG -Os ${CMAKE_OBJC_FLAGS_MINSIZEREL}")
|
set(CMAKE_OBJC_FLAGS_MINSIZEREL "-DNDEBUG -Os ${CMAKE_OBJC_FLAGS_MINSIZEREL}")
|
||||||
set(CMAKE_OBJC_FLAGS_RELWITHDEBINFO "-DNDEBUG -O2 -g ${CMAKE_OBJC_FLAGS_RELWITHDEBINFO}")
|
set(CMAKE_OBJC_FLAGS_RELWITHDEBINFO "-DNDEBUG -O2 -g ${CMAKE_OBJC_FLAGS_RELWITHDEBINFO}")
|
||||||
set(CMAKE_OBJC_FLAGS_RELEASE "-DNDEBUG -O3 ${CMAKE_OBJC_FLAGS_RELEASE}")
|
set(CMAKE_OBJC_FLAGS_RELEASE "-DNDEBUG -O3 ${CMAKE_OBJC_FLAGS_RELEASE}")
|
||||||
set(CMAKE_OBJCXX_FLAGS "${C_TARGET_FLAGS} ${APPLE_TARGET_TRIPLE_FLAG} ${SDK_NAME_VERSION_FLAGS} ${BITCODE} ${VISIBILITY} ${FOBJC_ARC} ${OBJC_VARS} ${CMAKE_OBJCXX_FLAGS}" CACHE INTERNAL
|
ios_toolchain_set_cached_flags(CMAKE_OBJCXX_FLAGS "Flags used by the compiler during all OBJCXX build types."
|
||||||
"Flags used by the compiler during all OBJCXX build types.")
|
"${C_TARGET_FLAGS}" "${APPLE_TARGET_TRIPLE_FLAG}" "${SDK_NAME_VERSION_FLAGS}" "${BITCODE}" "${VISIBILITY}" "${FOBJC_ARC}" "${OBJC_VARS}")
|
||||||
set(CMAKE_OBJCXX_FLAGS_DEBUG "-O0 -g ${CMAKE_OBJCXX_FLAGS_DEBUG}")
|
set(CMAKE_OBJCXX_FLAGS_DEBUG "-O0 -g ${CMAKE_OBJCXX_FLAGS_DEBUG}")
|
||||||
set(CMAKE_OBJCXX_FLAGS_MINSIZEREL "-DNDEBUG -Os ${CMAKE_OBJCXX_FLAGS_MINSIZEREL}")
|
set(CMAKE_OBJCXX_FLAGS_MINSIZEREL "-DNDEBUG -Os ${CMAKE_OBJCXX_FLAGS_MINSIZEREL}")
|
||||||
set(CMAKE_OBJCXX_FLAGS_RELWITHDEBINFO "-DNDEBUG -O2 -g ${CMAKE_OBJCXX_FLAGS_RELWITHDEBINFO}")
|
set(CMAKE_OBJCXX_FLAGS_RELWITHDEBINFO "-DNDEBUG -O2 -g ${CMAKE_OBJCXX_FLAGS_RELWITHDEBINFO}")
|
||||||
set(CMAKE_OBJCXX_FLAGS_RELEASE "-DNDEBUG -O3 ${CMAKE_OBJCXX_FLAGS_RELEASE}")
|
set(CMAKE_OBJCXX_FLAGS_RELEASE "-DNDEBUG -O3 ${CMAKE_OBJCXX_FLAGS_RELEASE}")
|
||||||
endif()
|
endif()
|
||||||
set(CMAKE_C_LINK_FLAGS "${C_TARGET_FLAGS} ${SDK_NAME_VERSION_FLAGS} -Wl,-search_paths_first ${CMAKE_C_LINK_FLAGS}" CACHE INTERNAL
|
ios_toolchain_set_cached_flags(CMAKE_C_LINK_FLAGS "Flags used by the compiler for all C link types."
|
||||||
"Flags used by the compiler for all C link types.")
|
"${C_TARGET_FLAGS}" "${SDK_NAME_VERSION_FLAGS}" "-Wl,-search_paths_first")
|
||||||
set(CMAKE_CXX_LINK_FLAGS "${C_TARGET_FLAGS} ${SDK_NAME_VERSION_FLAGS} -Wl,-search_paths_first ${CMAKE_CXX_LINK_FLAGS}" CACHE INTERNAL
|
ios_toolchain_set_cached_flags(CMAKE_CXX_LINK_FLAGS "Flags used by the compiler for all CXX link types."
|
||||||
"Flags used by the compiler for all CXX link types.")
|
"${C_TARGET_FLAGS}" "${SDK_NAME_VERSION_FLAGS}" "-Wl,-search_paths_first")
|
||||||
if(NAMED_LANGUAGE_SUPPORT_INT)
|
if(NAMED_LANGUAGE_SUPPORT_INT)
|
||||||
set(CMAKE_OBJC_LINK_FLAGS "${C_TARGET_FLAGS} ${SDK_NAME_VERSION_FLAGS} -Wl,-search_paths_first ${CMAKE_OBJC_LINK_FLAGS}" CACHE INTERNAL
|
ios_toolchain_set_cached_flags(CMAKE_OBJC_LINK_FLAGS "Flags used by the compiler for all OBJC link types."
|
||||||
"Flags used by the compiler for all OBJC link types.")
|
"${C_TARGET_FLAGS}" "${SDK_NAME_VERSION_FLAGS}" "-Wl,-search_paths_first")
|
||||||
set(CMAKE_OBJCXX_LINK_FLAGS "${C_TARGET_FLAGS} ${SDK_NAME_VERSION_FLAGS} -Wl,-search_paths_first ${CMAKE_OBJCXX_LINK_FLAGS}" CACHE INTERNAL
|
ios_toolchain_set_cached_flags(CMAKE_OBJCXX_LINK_FLAGS "Flags used by the compiler for all OBJCXX link types."
|
||||||
"Flags used by the compiler for all OBJCXX link types.")
|
"${C_TARGET_FLAGS}" "${SDK_NAME_VERSION_FLAGS}" "-Wl,-search_paths_first")
|
||||||
endif()
|
endif()
|
||||||
set(CMAKE_ASM_FLAGS "${CMAKE_C_FLAGS} -x assembler-with-cpp" CACHE INTERNAL
|
set(CMAKE_ASM_FLAGS "${CMAKE_C_FLAGS} -x assembler-with-cpp" CACHE INTERNAL
|
||||||
"Flags used by the compiler for all ASM build types.")
|
"Flags used by the compiler for all ASM build types.")
|
||||||
|
|||||||
@@ -212,6 +212,9 @@ public:
|
|||||||
void setCornerColor(JUtility::TColor c0) {
|
void setCornerColor(JUtility::TColor c0) {
|
||||||
setCornerColor(c0, c0, c0, c0);
|
setCornerColor(c0, c0, c0, c0);
|
||||||
}
|
}
|
||||||
|
#if TARGET_PC
|
||||||
|
JUtility::TColor corner(size_t index) const { return mCornerColor[index]; }
|
||||||
|
#endif
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/* 0x100 */ JUTTexture* mTexture[2];
|
/* 0x100 */ JUTTexture* mTexture[2];
|
||||||
|
|||||||
@@ -1761,16 +1761,6 @@ public:
|
|||||||
virtual ~J3DIndBlockNull() {}
|
virtual ~J3DIndBlockNull() {}
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
struct PolygonOffset {
|
|
||||||
BE(f32) mFrontOffset;
|
|
||||||
BE(f32) mFrontScale;
|
|
||||||
BE(f32) mBackOffset;
|
|
||||||
BE(f32) mBackScale;
|
|
||||||
BE(f32) mClamp;
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup jsystem-j3d
|
* @ingroup jsystem-j3d
|
||||||
*
|
*
|
||||||
@@ -1803,10 +1793,6 @@ public:
|
|||||||
virtual void setDither(u8 const*) {}
|
virtual void setDither(u8 const*) {}
|
||||||
virtual void setDither(u8) {}
|
virtual void setDither(u8) {}
|
||||||
virtual u8 getDither() const { return 0; }
|
virtual u8 getDither() const { return 0; }
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
virtual void setPolygonOffset(const PolygonOffset&) {}
|
|
||||||
virtual PolygonOffset* getPolygonOffset() { return NULL; }
|
|
||||||
#endif
|
|
||||||
virtual u32 getFogOffset() const { return 0; }
|
virtual u32 getFogOffset() const { return 0; }
|
||||||
virtual void setFogOffset(u32) {}
|
virtual void setFogOffset(u32) {}
|
||||||
virtual ~J3DPEBlock() {}
|
virtual ~J3DPEBlock() {}
|
||||||
@@ -1970,25 +1956,12 @@ public:
|
|||||||
virtual void setFogOffset(u32 fogOffset) { mFogOffset = fogOffset; }
|
virtual void setFogOffset(u32 fogOffset) { mFogOffset = fogOffset; }
|
||||||
virtual ~J3DPEBlockFull() {}
|
virtual ~J3DPEBlockFull() {}
|
||||||
|
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
virtual void setPolygonOffset(const PolygonOffset& offset) {
|
|
||||||
mPolygonOffset = offset;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual PolygonOffset* getPolygonOffset() {
|
|
||||||
return &mPolygonOffset;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* 0x04 */ J3DFog mFog;
|
/* 0x04 */ J3DFog mFog;
|
||||||
/* 0x30 */ J3DAlphaComp mAlphaComp;
|
/* 0x30 */ J3DAlphaComp mAlphaComp;
|
||||||
/* 0x34 */ J3DBlend mBlend;
|
/* 0x34 */ J3DBlend mBlend;
|
||||||
/* 0x38 */ J3DZMode mZMode;
|
/* 0x38 */ J3DZMode mZMode;
|
||||||
/* 0x3A */ u8 mZCompLoc;
|
/* 0x3A */ u8 mZCompLoc;
|
||||||
/* 0x3B */ u8 mDither;
|
/* 0x3B */ u8 mDither;
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
PolygonOffset mPolygonOffset;
|
|
||||||
#endif
|
|
||||||
/* 0x3C */ u32 mFogOffset;
|
/* 0x3C */ u32 mFogOffset;
|
||||||
}; // Size: 0x40
|
}; // Size: 0x40
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
#ifndef J3DSHAPEDRAW_H
|
#ifndef J3DSHAPEDRAW_H
|
||||||
#define J3DSHAPEDRAW_H
|
#define J3DSHAPEDRAW_H
|
||||||
|
|
||||||
|
#include <gx.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -12,6 +13,9 @@ public:
|
|||||||
u32 countVertex(u32);
|
u32 countVertex(u32);
|
||||||
void addTexMtxIndexInDL(u32, u32, u32);
|
void addTexMtxIndexInDL(u32, u32, u32);
|
||||||
J3DShapeDraw(u8 const*, u32);
|
J3DShapeDraw(u8 const*, u32);
|
||||||
|
#if TARGET_PC
|
||||||
|
J3DShapeDraw(u8 const*, u32, const GXVtxDescList*);
|
||||||
|
#endif
|
||||||
void draw() const;
|
void draw() const;
|
||||||
|
|
||||||
virtual ~J3DShapeDraw();
|
virtual ~J3DShapeDraw();
|
||||||
|
|||||||
@@ -46,13 +46,6 @@ struct J3DMaterialInitData {
|
|||||||
/* 0x14A */ BE(u16) mNBTScaleIdx;
|
/* 0x14A */ BE(u16) mNBTScaleIdx;
|
||||||
}; // size 0x14C
|
}; // size 0x14C
|
||||||
|
|
||||||
|
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
struct J3DMaterialInitData_MAT4 : public J3DMaterialInitData {
|
|
||||||
/* 0x14C */ BE(u16) mPolygonOffsetIdx;
|
|
||||||
}; // size 0x14E
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup jsystem-j3d
|
* @ingroup jsystem-j3d
|
||||||
*
|
*
|
||||||
@@ -150,29 +143,10 @@ public:
|
|||||||
J3DNBTScale newNBTScale(int) const;
|
J3DNBTScale newNBTScale(int) const;
|
||||||
|
|
||||||
u16 getMaterialID(int idx) const { return mpMaterialID[idx]; }
|
u16 getMaterialID(int idx) const { return mpMaterialID[idx]; }
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
u8 getMaterialMode(int idx) const { return getMatInitData(idx)->mMaterialMode; }
|
|
||||||
#else
|
|
||||||
u8 getMaterialMode(int idx) const { return mpMaterialInitData[mpMaterialID[idx]].mMaterialMode; }
|
u8 getMaterialMode(int idx) const { return mpMaterialInitData[mpMaterialID[idx]].mMaterialMode; }
|
||||||
#endif
|
|
||||||
|
|
||||||
#if DUSK_TPHD
|
|
||||||
const PolygonOffset newPolygonOffset(int) const;
|
|
||||||
|
|
||||||
J3DMaterialInitData* getMatInitData(int idx) const {
|
|
||||||
static const u32 sInitDataSizes[] = {0, 0, 0x138, 0x14C, 0x14E};
|
|
||||||
|
|
||||||
return (J3DMaterialInitData*)((u8*)mpMaterialInitData + sInitDataSizes[mBlockType] * getMaterialID(idx));
|
|
||||||
}
|
|
||||||
|
|
||||||
u16 mBlockType;
|
|
||||||
#endif
|
|
||||||
/* 0x00 */ u16 mMaterialNum;
|
/* 0x00 */ u16 mMaterialNum;
|
||||||
#if DUSK_TPHD
|
|
||||||
/* 0x04 */ void* mpMaterialInitData;
|
|
||||||
#else
|
|
||||||
/* 0x04 */ J3DMaterialInitData* mpMaterialInitData;
|
/* 0x04 */ J3DMaterialInitData* mpMaterialInitData;
|
||||||
#endif
|
|
||||||
/* 0x08 */ BE(u16)* mpMaterialID;
|
/* 0x08 */ BE(u16)* mpMaterialID;
|
||||||
/* 0x0C */ J3DIndInitData* mpIndInitData;
|
/* 0x0C */ J3DIndInitData* mpIndInitData;
|
||||||
/* 0x10 */ GXColor* mpMatColor;
|
/* 0x10 */ GXColor* mpMatColor;
|
||||||
@@ -201,9 +175,6 @@ public:
|
|||||||
/* 0x6C */ u8* mpZCompLoc;
|
/* 0x6C */ u8* mpZCompLoc;
|
||||||
/* 0x70 */ u8* mpDither;
|
/* 0x70 */ u8* mpDither;
|
||||||
/* 0x74 */ J3DNBTScaleInfo* mpNBTScaleInfo;
|
/* 0x74 */ J3DNBTScaleInfo* mpNBTScaleInfo;
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
PolygonOffset* mpPolygonOffsets;
|
|
||||||
#endif
|
|
||||||
/* 0x78 */ J3DDisplayListInit* mpDisplayListInit;
|
/* 0x78 */ J3DDisplayListInit* mpDisplayListInit;
|
||||||
/* 0x7C */ J3DPatchingInfo* mpPatchingInfo;
|
/* 0x7C */ J3DPatchingInfo* mpPatchingInfo;
|
||||||
/* 0x80 */ J3DCurrentMtxInfo* mpCurrentMtxInfo;
|
/* 0x80 */ J3DCurrentMtxInfo* mpCurrentMtxInfo;
|
||||||
|
|||||||
@@ -169,12 +169,6 @@ struct J3DMaterialBlock_v21 : public J3DModelBlock {
|
|||||||
/* 0x74 */ OFFSET_PTR_V0 mpNBTScaleInfo;
|
/* 0x74 */ OFFSET_PTR_V0 mpNBTScaleInfo;
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
struct J3DMaterialBlock_MAT4 : public J3DMaterialBlock {
|
|
||||||
/* 0x84 */ OFFSET_PTR_V0 mpPolygonOffsets;
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup jsystem-j3d
|
* @ingroup jsystem-j3d
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -12,12 +12,23 @@ struct JORNodeEvent;
|
|||||||
class JORMContext;
|
class JORMContext;
|
||||||
class JORServer;
|
class JORServer;
|
||||||
|
|
||||||
|
// NOTE (stable game ABI): these classes stay non-polymorphic outside DEBUG
|
||||||
|
// on purpose. Making them polymorphic under PARTIAL_DEBUG would give every one of the ~250
|
||||||
|
// derived HIO classes a vptr and turn their plain `void genMessage(JORMContext*);`
|
||||||
|
// declarations into implicit virtual overrides whose definitions are #if DEBUG-gated; every
|
||||||
|
// instantiated one then fails to link (missing vtable). Closure types shared with DEBUG TUs
|
||||||
|
// either declare their own unconditional virtuals (vptr in all TUs anyway) or add a
|
||||||
|
// PARTIAL_DEBUG-only virtual dtor for vptr parity (see dAttParam_c).
|
||||||
class JOREventListener {
|
class JOREventListener {
|
||||||
public:
|
public:
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
JOREventListener() {}
|
JOREventListener() {}
|
||||||
|
#if TARGET_PC
|
||||||
|
virtual void listenPropertyEvent(const JORPropertyEvent*) {}
|
||||||
|
#else
|
||||||
virtual void listenPropertyEvent(const JORPropertyEvent*) = 0;
|
virtual void listenPropertyEvent(const JORPropertyEvent*) = 0;
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
class JORReflexible : public JOREventListener {
|
class JORReflexible : public JOREventListener {
|
||||||
@@ -30,7 +41,11 @@ public:
|
|||||||
virtual void listenPropertyEvent(const JORPropertyEvent*);
|
virtual void listenPropertyEvent(const JORPropertyEvent*);
|
||||||
virtual void listen(u32, const JOREvent*);
|
virtual void listen(u32, const JOREvent*);
|
||||||
virtual void genObjectInfo(const JORGenEvent*);
|
virtual void genObjectInfo(const JORGenEvent*);
|
||||||
|
#if TARGET_PC
|
||||||
|
virtual void genMessage(JORMContext*) {}
|
||||||
|
#else
|
||||||
virtual void genMessage(JORMContext*) = 0;
|
virtual void genMessage(JORMContext*) = 0;
|
||||||
|
#endif
|
||||||
virtual void listenNodeEvent(const JORNodeEvent*);
|
virtual void listenNodeEvent(const JORNodeEvent*);
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -3,6 +3,20 @@
|
|||||||
|
|
||||||
#include <gx.h>
|
#include <gx.h>
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
#include <mtx.h>
|
||||||
|
|
||||||
|
struct ParticleDrawCtx {
|
||||||
|
bool batch; // off = immediate mode
|
||||||
|
bool useTexMtx; // UVs transformed by texMtx
|
||||||
|
bool useClr0; // prm color in GX_VA_CLR0
|
||||||
|
bool useClr1; // env color in GX_VA_CLR1
|
||||||
|
Mtx texMtx;
|
||||||
|
GXColor clr0;
|
||||||
|
GXColor clr1;
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
struct JPAEmitterWorkData;
|
struct JPAEmitterWorkData;
|
||||||
class JPABaseParticle;
|
class JPABaseParticle;
|
||||||
class JKRHeap;
|
class JKRHeap;
|
||||||
@@ -75,6 +89,9 @@ public:
|
|||||||
|
|
||||||
const GXTevColorArg* getTevColorArg() const { return st_ca[(pBsd->mFlags >> 0x0F) & 0x07]; }
|
const GXTevColorArg* getTevColorArg() const { return st_ca[(pBsd->mFlags >> 0x0F) & 0x07]; }
|
||||||
const GXTevAlphaArg* getTevAlphaArg() const { return st_aa[(pBsd->mFlags >> 0x12) & 0x01]; }
|
const GXTevAlphaArg* getTevAlphaArg() const { return st_aa[(pBsd->mFlags >> 0x12) & 0x01]; }
|
||||||
|
#if TARGET_PC
|
||||||
|
u32 getTevColorArgSel() const { return (pBsd->mFlags >> 0x0F) & 0x07; }
|
||||||
|
#endif
|
||||||
|
|
||||||
u32 getType() const { return (pBsd->mFlags >> 0) & 0x0F; }
|
u32 getType() const { return (pBsd->mFlags >> 0) & 0x0F; }
|
||||||
u32 getDirType() const { return (pBsd->mFlags >> 4) & 0x07; }
|
u32 getDirType() const { return (pBsd->mFlags >> 4) & 0x07; }
|
||||||
@@ -186,26 +203,34 @@ void JPARegistPrm(JPAEmitterWorkData*);
|
|||||||
void JPARegistEnv(JPAEmitterWorkData*);
|
void JPARegistEnv(JPAEmitterWorkData*);
|
||||||
void JPARegistPrmEnv(JPAEmitterWorkData*);
|
void JPARegistPrmEnv(JPAEmitterWorkData*);
|
||||||
|
|
||||||
void JPADrawPoint(JPAEmitterWorkData*, JPABaseParticle*);
|
#if TARGET_PC
|
||||||
void JPADrawLine(JPAEmitterWorkData*, JPABaseParticle*);
|
#define JPA_DRAW_PARTICLE_ARGS JPAEmitterWorkData*, JPABaseParticle*, ParticleDrawCtx*
|
||||||
void JPADrawRotBillboard(JPAEmitterWorkData*, JPABaseParticle*);
|
#else
|
||||||
void JPADrawBillboard(JPAEmitterWorkData*, JPABaseParticle*);
|
#define JPA_DRAW_PARTICLE_ARGS JPAEmitterWorkData*, JPABaseParticle*
|
||||||
void JPADrawRotDirection(JPAEmitterWorkData*, JPABaseParticle*);
|
#endif
|
||||||
void JPADrawDirection(JPAEmitterWorkData*, JPABaseParticle*);
|
|
||||||
void JPADrawRotation(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawPoint(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPADrawDBillboard(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawLine(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPADrawRotYBillboard(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawRotBillboard(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPADrawYBillboard(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawBillboard(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPADrawParticleCallBack(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawRotDirection(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPALoadTexAnm(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawDirection(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPASetPointSize(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawRotation(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPASetLineWidth(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawDBillboard(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPALoadCalcTexCrdMtxAnm(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawRotYBillboard(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPARegistAlpha(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawYBillboard(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPARegistEnv(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPADrawParticleCallBack(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPARegistAlphaEnv(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPALoadTexAnm(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPARegistPrmAlpha(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPASetPointSize(JPA_DRAW_PARTICLE_ARGS);
|
||||||
void JPARegistPrmAlphaEnv(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPASetLineWidth(JPA_DRAW_PARTICLE_ARGS);
|
||||||
|
void JPALoadCalcTexCrdMtxAnm(JPA_DRAW_PARTICLE_ARGS);
|
||||||
|
void JPARegistAlpha(JPA_DRAW_PARTICLE_ARGS);
|
||||||
|
void JPARegistEnv(JPA_DRAW_PARTICLE_ARGS);
|
||||||
|
void JPARegistAlphaEnv(JPA_DRAW_PARTICLE_ARGS);
|
||||||
|
void JPARegistPrmAlpha(JPA_DRAW_PARTICLE_ARGS);
|
||||||
|
void JPARegistPrmAlphaEnv(JPA_DRAW_PARTICLE_ARGS);
|
||||||
|
|
||||||
|
#undef JPA_DRAW_PARTICLE_ARGS
|
||||||
|
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
void JPAInterpBillboard(JPAEmitterWorkData*, JPABaseParticle*);
|
void JPAInterpBillboard(JPAEmitterWorkData*, JPABaseParticle*);
|
||||||
|
|||||||
@@ -17,6 +17,10 @@ class JPADynamicsBlock;
|
|||||||
class JPAFieldBlock;
|
class JPAFieldBlock;
|
||||||
class JPAKeyBlock;
|
class JPAKeyBlock;
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
struct ParticleDrawCtx;
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup jsystem-jparticle
|
* @ingroup jsystem-jparticle
|
||||||
*
|
*
|
||||||
@@ -50,13 +54,19 @@ public:
|
|||||||
public:
|
public:
|
||||||
typedef void (*EmitterFunc)(JPAEmitterWorkData*);
|
typedef void (*EmitterFunc)(JPAEmitterWorkData*);
|
||||||
typedef void (*ParticleFunc)(JPAEmitterWorkData*, JPABaseParticle*);
|
typedef void (*ParticleFunc)(JPAEmitterWorkData*, JPABaseParticle*);
|
||||||
|
#if TARGET_PC
|
||||||
|
typedef void (*DrawParticleFunc)(JPAEmitterWorkData*, JPABaseParticle*,
|
||||||
|
ParticleDrawCtx*);
|
||||||
|
#else
|
||||||
|
typedef ParticleFunc DrawParticleFunc;
|
||||||
|
#endif
|
||||||
/* 0x00 */ EmitterFunc* mpCalcEmitterFuncList;
|
/* 0x00 */ EmitterFunc* mpCalcEmitterFuncList;
|
||||||
/* 0x04 */ EmitterFunc* mpDrawEmitterFuncList;
|
/* 0x04 */ EmitterFunc* mpDrawEmitterFuncList;
|
||||||
/* 0x08 */ EmitterFunc* mpDrawEmitterChildFuncList;
|
/* 0x08 */ EmitterFunc* mpDrawEmitterChildFuncList;
|
||||||
/* 0x0C */ ParticleFunc* mpCalcParticleFuncList;
|
/* 0x0C */ ParticleFunc* mpCalcParticleFuncList;
|
||||||
/* 0x10 */ ParticleFunc* mpDrawParticleFuncList;
|
/* 0x10 */ DrawParticleFunc* mpDrawParticleFuncList;
|
||||||
/* 0x14 */ ParticleFunc* mpCalcParticleChildFuncList;
|
/* 0x14 */ ParticleFunc* mpCalcParticleChildFuncList;
|
||||||
/* 0x18 */ ParticleFunc* mpDrawParticleChildFuncList;
|
/* 0x18 */ DrawParticleFunc* mpDrawParticleChildFuncList;
|
||||||
|
|
||||||
/* 0x1C */ JPABaseShape* pBsp;
|
/* 0x1C */ JPABaseShape* pBsp;
|
||||||
/* 0x20 */ JPAExtraShape* pEsp;
|
/* 0x20 */ JPAExtraShape* pEsp;
|
||||||
@@ -77,6 +87,20 @@ public:
|
|||||||
/* 0x45 */ u8 mpDrawParticleFuncListNum;
|
/* 0x45 */ u8 mpDrawParticleFuncListNum;
|
||||||
/* 0x46 */ u8 mpCalcParticleChildFuncListNum;
|
/* 0x46 */ u8 mpCalcParticleChildFuncListNum;
|
||||||
/* 0x47 */ u8 mpDrawParticleChildFuncListNum;
|
/* 0x47 */ u8 mpDrawParticleChildFuncListNum;
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
struct BatchInfo {
|
||||||
|
f32 vtxPos[8][3];
|
||||||
|
f32 vtxUv[8][2];
|
||||||
|
u8 vtxCount; // 4 (quad) or 8 (cross)
|
||||||
|
bool supported; // draw func list contains only batchable funcs
|
||||||
|
bool hasPtclColor; // per-particle JPARegist* func is present
|
||||||
|
bool hasPtclTexMtx; // JPALoadCalcTexCrdMtxAnm is present
|
||||||
|
};
|
||||||
|
BatchInfo mBatchInfo;
|
||||||
|
|
||||||
|
void initBatchInfo();
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* JPARESOURCE_H */
|
#endif /* JPARESOURCE_H */
|
||||||
|
|||||||
@@ -314,7 +314,7 @@ public:
|
|||||||
>
|
>
|
||||||
{
|
{
|
||||||
TIterator_data_(const TFunctionValue_list_parameter& rParent, const f32* value) {
|
TIterator_data_(const TFunctionValue_list_parameter& rParent, const f32* value) {
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
pOwn_ = &rParent;
|
pOwn_ = &rParent;
|
||||||
#endif
|
#endif
|
||||||
pf_ = value;
|
pf_ = value;
|
||||||
@@ -372,7 +372,7 @@ public:
|
|||||||
return (r1.pf_ - r2.pf_) / suData_size;
|
return (r1.pf_ - r2.pf_) / suData_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x00 */ const TFunctionValue_list_parameter* pOwn_;
|
/* 0x00 */ const TFunctionValue_list_parameter* pOwn_;
|
||||||
#endif
|
#endif
|
||||||
/* 0x00 */ const f32* pf_;
|
/* 0x00 */ const f32* pf_;
|
||||||
@@ -425,7 +425,7 @@ public:
|
|||||||
>
|
>
|
||||||
{
|
{
|
||||||
TIterator_data_(const TFunctionValue_hermite& rParent, const f32* value) {
|
TIterator_data_(const TFunctionValue_hermite& rParent, const f32* value) {
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
pOwn_ = &rParent;
|
pOwn_ = &rParent;
|
||||||
#endif
|
#endif
|
||||||
pf_ = value;
|
pf_ = value;
|
||||||
@@ -491,7 +491,7 @@ public:
|
|||||||
return (r1.pf_ - r2.pf_) / r1.uSize_;
|
return (r1.pf_ - r2.pf_) / r1.uSize_;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
/* 0x00 */ const TFunctionValue_hermite* pOwn_;
|
/* 0x00 */ const TFunctionValue_hermite* pOwn_;
|
||||||
/* 0x04 */ const f32* pf_;
|
/* 0x04 */ const f32* pf_;
|
||||||
/* 0x08 */ u32 uSize_;
|
/* 0x08 */ u32 uSize_;
|
||||||
|
|||||||
@@ -3,6 +3,8 @@
|
|||||||
#include "JSystem/J2DGraph/J2DGrafContext.h"
|
#include "JSystem/J2DGraph/J2DGrafContext.h"
|
||||||
#include <gx.h>
|
#include <gx.h>
|
||||||
|
|
||||||
|
#include <tracy/Tracy.hpp>
|
||||||
|
|
||||||
J2DGrafContext::J2DGrafContext(f32 x, f32 y, f32 width, f32 height)
|
J2DGrafContext::J2DGrafContext(f32 x, f32 y, f32 width, f32 height)
|
||||||
: mBounds(x, y, x + width, y + height), mScissorBounds(x, y, x + width, y + height) {
|
: mBounds(x, y, x + width, y + height), mScissorBounds(x, y, x + width, y + height) {
|
||||||
if (x < 0.0f || y < 0.0f) {
|
if (x < 0.0f || y < 0.0f) {
|
||||||
@@ -137,6 +139,7 @@ void J2DGrafContext::setLineWidth(u8 lineWidth) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void J2DGrafContext::fillBox(JGeometry::TBox2<f32> const& box) {
|
void J2DGrafContext::fillBox(JGeometry::TBox2<f32> const& box) {
|
||||||
|
ZoneScoped;
|
||||||
GXSetBlendMode((GXBlendMode)mBoxPart.mType, (GXBlendFactor)mBoxPart.mSrcFactor,
|
GXSetBlendMode((GXBlendMode)mBoxPart.mType, (GXBlendFactor)mBoxPart.mSrcFactor,
|
||||||
(GXBlendFactor)mBoxPart.mDstFactor, GX_LO_SET);
|
(GXBlendFactor)mBoxPart.mDstFactor, GX_LO_SET);
|
||||||
GXLoadPosMtxImm(mPosMtx, 0);
|
GXLoadPosMtxImm(mPosMtx, 0);
|
||||||
@@ -155,6 +158,7 @@ void J2DGrafContext::fillBox(JGeometry::TBox2<f32> const& box) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void J2DGrafContext::drawFrame(JGeometry::TBox2<f32> const& box) {
|
void J2DGrafContext::drawFrame(JGeometry::TBox2<f32> const& box) {
|
||||||
|
ZoneScoped;
|
||||||
GXSetBlendMode((GXBlendMode)mBoxPart.mType, (GXBlendFactor)mBoxPart.mSrcFactor,
|
GXSetBlendMode((GXBlendMode)mBoxPart.mType, (GXBlendFactor)mBoxPart.mSrcFactor,
|
||||||
(GXBlendFactor)mBoxPart.mDstFactor, GX_LO_SET);
|
(GXBlendFactor)mBoxPart.mDstFactor, GX_LO_SET);
|
||||||
GXLoadPosMtxImm(mPosMtx, 0);
|
GXLoadPosMtxImm(mPosMtx, 0);
|
||||||
@@ -175,6 +179,7 @@ void J2DGrafContext::drawFrame(JGeometry::TBox2<f32> const& box) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void J2DGrafContext::line(JGeometry::TVec2<f32> start, JGeometry::TVec2<f32> end) {
|
void J2DGrafContext::line(JGeometry::TVec2<f32> start, JGeometry::TVec2<f32> end) {
|
||||||
|
ZoneScoped;
|
||||||
GXSetBlendMode((GXBlendMode)mLinePart.mType, (GXBlendFactor)mLinePart.mSrcFactor,
|
GXSetBlendMode((GXBlendMode)mLinePart.mType, (GXBlendFactor)mLinePart.mSrcFactor,
|
||||||
(GXBlendFactor)mLinePart.mDstFactor, GX_LO_SET);
|
(GXBlendFactor)mLinePart.mDstFactor, GX_LO_SET);
|
||||||
GXLoadPosMtxImm(mPosMtx, 0);
|
GXLoadPosMtxImm(mPosMtx, 0);
|
||||||
|
|||||||
@@ -542,8 +542,11 @@ void J3DModel::viewCalc() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef TARGET_PC
|
#ifdef TARGET_PC
|
||||||
for (u16 i = 0; i < mModelData->getDrawMtxNum(); ++i) {
|
Mtx* drawMtx = getDrawMtxPtr();
|
||||||
dusk::frame_interp::record_final_mtx(getDrawMtxPtr()[i]);
|
if (drawMtx != J3DMtxBuffer::sNoUseDrawMtxPtr) {
|
||||||
|
for (u16 i = 0; i < mModelData->getDrawMtxNum(); ++i) {
|
||||||
|
dusk::frame_interp::record_final_mtx(drawMtx[i]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -222,9 +222,6 @@ void J3DMatPacket::draw() {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
PolygonOffset* temp = mpMaterial->getPEBlock()->getPolygonOffset();
|
|
||||||
GX2SetPolygonOffset(temp->mFrontOffset, temp->mFrontScale, temp->mBackOffset, temp->mBackScale, temp->mClamp);
|
|
||||||
|
|
||||||
callDL();
|
callDL();
|
||||||
|
|
||||||
J3DShapePacket* packet = getShapePacket();
|
J3DShapePacket* packet = getShapePacket();
|
||||||
@@ -233,8 +230,6 @@ void J3DMatPacket::draw() {
|
|||||||
#endif
|
#endif
|
||||||
packet->getShape()->loadPreDrawSetting();
|
packet->getShape()->loadPreDrawSetting();
|
||||||
|
|
||||||
// TODO: MAT4 sets polygon offset here in HD
|
|
||||||
|
|
||||||
while (packet != NULL) {
|
while (packet != NULL) {
|
||||||
if (packet->getDisplayListObj() != NULL) {
|
if (packet->getDisplayListObj() != NULL) {
|
||||||
packet->getDisplayListObj()->callDL();
|
packet->getDisplayListObj()->callDL();
|
||||||
|
|||||||
@@ -136,8 +136,8 @@ void J3DLoadCPCmd(u8 addr, u32 val) {
|
|||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
static void J3DLoadArrayBasePtr(GXAttr attr, void* data, u32 size, bool le) {
|
static void J3DLoadArrayBasePtr(GXAttr attr, void* data, u32 size, bool le) {
|
||||||
u32 idx = (attr == GX_VA_NBT) ? 1 : (attr - GX_VA_POS);
|
u32 idx = (attr == GX_VA_NBT) ? 1 : (attr - GX_VA_POS);
|
||||||
GXCmd1u8(GX_LOAD_AURORA);
|
GXCmd1u8(GX_AURORA);
|
||||||
GXCmd1u16(GX_LOAD_AURORA_ARRAYBASE | idx);
|
GXCmd1u16(GX_AURORA_LOAD_ARRAYBASE | idx);
|
||||||
GXCmd1u64((u64)data);
|
GXCmd1u64((u64)data);
|
||||||
GXCmd1u32(size);
|
GXCmd1u32(size);
|
||||||
GXCmd1u8(le ? 1 : 0);
|
GXCmd1u8(le ? 1 : 0);
|
||||||
|
|||||||
@@ -1,15 +1,47 @@
|
|||||||
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
#include <gx.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include "JSystem/J3DGraphBase/J3DShapeDraw.h"
|
#include "JSystem/J3DGraphBase/J3DShapeDraw.h"
|
||||||
#include "JSystem/JKernel/JKRHeap.h"
|
#include "JSystem/JKernel/JKRHeap.h"
|
||||||
#include <cstring>
|
|
||||||
#include <stdint.h>
|
#if TARGET_PC
|
||||||
#include <gx.h>
|
#include <aurora/dl.hpp>
|
||||||
|
#include <tracy/Tracy.hpp>
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
void set_display_list_copy(void*& displayList, u32& displayListSize, const u8* data, u32 size) {
|
||||||
|
const u32 alignedSize = ALIGN_NEXT(size, 0x20);
|
||||||
|
u8* newDL = JKR_NEW_ARRAY_ARGS(u8, alignedSize, 0x20);
|
||||||
|
if (size != 0) {
|
||||||
|
std::memcpy(newDL, data, size);
|
||||||
|
}
|
||||||
|
for (u32 i = size; i < alignedSize; i++) {
|
||||||
|
newDL[i] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
displayList = newDL;
|
||||||
|
displayListSize = alignedSize;
|
||||||
|
DCStoreRange(newDL, displayListSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
#endif
|
||||||
|
|
||||||
u32 J3DShapeDraw::countVertex(u32 stride) {
|
u32 J3DShapeDraw::countVertex(u32 stride) {
|
||||||
u32 count = 0;
|
u32 count = 0;
|
||||||
u8* dlStart = (u8*)getDisplayList();
|
u8* dlStart = (u8*)getDisplayList();
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
aurora::gx::dl::Reader reader{dlStart, getDisplayListSize(), static_cast<u8>(stride)};
|
||||||
|
while (const auto cmd = reader.next()) {
|
||||||
|
if (cmd->kind != aurora::gx::dl::Command::Kind::Passthrough) {
|
||||||
|
count += cmd->draw.vtxCount;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#else
|
||||||
for (u8* dl = dlStart; (dl - dlStart) < getDisplayListSize();) {
|
for (u8* dl = dlStart; (dl - dlStart) < getDisplayListSize();) {
|
||||||
u8 cmd = *(u8*)dl;
|
u8 cmd = *(u8*)dl;
|
||||||
dl++;
|
dl++;
|
||||||
@@ -20,10 +52,58 @@ u32 J3DShapeDraw::countVertex(u32 stride) {
|
|||||||
count += vtxNum;
|
count += vtxNum;
|
||||||
dl = (u8*)dl + stride * vtxNum;
|
dl = (u8*)dl + stride * vtxNum;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
void J3DShapeDraw::addTexMtxIndexInDL(u32 stride, u32 attrOffs, u32 valueBase) {
|
||||||
|
u32 byteNum = countVertex(stride);
|
||||||
|
u32 oldSize = mDisplayListSize;
|
||||||
|
u32 newSize = ALIGN_NEXT(oldSize + byteNum, 0x20);
|
||||||
|
u8* newDLStart = JKR_NEW_ARRAY_ARGS(u8, newSize, 0x20);
|
||||||
|
u8* oldDLStart = (u8*)mDisplayList;
|
||||||
|
u8* newDL = newDLStart;
|
||||||
|
|
||||||
|
aurora::gx::dl::Reader reader{oldDLStart, mDisplayListSize, static_cast<u8>(stride)};
|
||||||
|
while (const auto cmd = reader.next()) {
|
||||||
|
if (cmd->kind == aurora::gx::dl::Command::Kind::Passthrough) {
|
||||||
|
std::memcpy(newDL, cmd->data, cmd->size);
|
||||||
|
newDL += cmd->size;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const auto& draw = cmd->draw;
|
||||||
|
const u32 headerSize = draw.vertices - cmd->data;
|
||||||
|
std::memcpy(newDL, cmd->data, headerSize);
|
||||||
|
newDL += headerSize;
|
||||||
|
|
||||||
|
for (u32 i = 0; i < draw.vtxCount; i++) {
|
||||||
|
const u8* oldVtx = draw.vertices + stride * i;
|
||||||
|
u8 pnmtxidx = oldVtx[0];
|
||||||
|
std::memcpy(newDL, oldVtx, attrOffs);
|
||||||
|
newDL += attrOffs;
|
||||||
|
*newDL++ = valueBase + pnmtxidx;
|
||||||
|
std::memcpy(newDL, oldVtx + attrOffs, stride - attrOffs);
|
||||||
|
newDL += stride - attrOffs;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (reader.failed()) {
|
||||||
|
// preserve the remainder untouched
|
||||||
|
std::memcpy(newDL, oldDLStart + reader.pos(), mDisplayListSize - reader.pos());
|
||||||
|
newDL += mDisplayListSize - reader.pos();
|
||||||
|
}
|
||||||
|
|
||||||
|
u32 realSize = ALIGN_NEXT((uintptr_t)newDL - (uintptr_t)newDLStart, 0x20);
|
||||||
|
for (; (newDL - newDLStart) < newSize; newDL++)
|
||||||
|
*newDL = 0;
|
||||||
|
|
||||||
|
mDisplayListSize = realSize;
|
||||||
|
mDisplayList = newDLStart;
|
||||||
|
DCStoreRange(newDLStart, mDisplayListSize);
|
||||||
|
}
|
||||||
|
#else
|
||||||
void J3DShapeDraw::addTexMtxIndexInDL(u32 stride, u32 attrOffs, u32 valueBase) {
|
void J3DShapeDraw::addTexMtxIndexInDL(u32 stride, u32 attrOffs, u32 valueBase) {
|
||||||
u32 byteNum = countVertex(stride);
|
u32 byteNum = countVertex(stride);
|
||||||
u32 oldSize = mDisplayListSize;
|
u32 oldSize = mDisplayListSize;
|
||||||
@@ -69,13 +149,30 @@ void J3DShapeDraw::addTexMtxIndexInDL(u32 stride, u32 attrOffs, u32 valueBase) {
|
|||||||
mDisplayList = newDLStart;
|
mDisplayList = newDLStart;
|
||||||
DCStoreRange(newDLStart, mDisplayListSize);
|
DCStoreRange(newDLStart, mDisplayListSize);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
J3DShapeDraw::J3DShapeDraw(const u8* displayList, u32 displayListSize) {
|
J3DShapeDraw::J3DShapeDraw(const u8* displayList, u32 displayListSize) {
|
||||||
|
#if TARGET_PC
|
||||||
|
set_display_list_copy(mDisplayList, mDisplayListSize, displayList, displayListSize);
|
||||||
|
#else
|
||||||
mDisplayList = (void*)displayList;
|
mDisplayList = (void*)displayList;
|
||||||
mDisplayListSize = displayListSize;
|
mDisplayListSize = displayListSize;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
J3DShapeDraw::J3DShapeDraw(
|
||||||
|
const u8* displayList, u32 displayListSize, const GXVtxDescList* vtxDesc) {
|
||||||
|
if (const auto optimized = aurora::gx::dl::optimize(displayList, displayListSize, vtxDesc)) {
|
||||||
|
set_display_list_copy(mDisplayList, mDisplayListSize, optimized->data(), optimized->size());
|
||||||
|
} else {
|
||||||
|
set_display_list_copy(mDisplayList, mDisplayListSize, displayList, displayListSize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void J3DShapeDraw::draw() const {
|
void J3DShapeDraw::draw() const {
|
||||||
|
ZoneScoped;
|
||||||
GXCallDisplayList(mDisplayList, mDisplayListSize);
|
GXCallDisplayList(mDisplayList, mDisplayListSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,9 +12,6 @@
|
|||||||
#include "dusk/logging.h"
|
#include "dusk/logging.h"
|
||||||
|
|
||||||
J3DMaterialFactory::J3DMaterialFactory(J3DMaterialBlock const& i_block) {
|
J3DMaterialFactory::J3DMaterialFactory(J3DMaterialBlock const& i_block) {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
mBlockType = (i_block.mBlockType & 0xFF) - 0x30; // get number at last byte of block name
|
|
||||||
#endif
|
|
||||||
mMaterialNum = i_block.mMaterialNum;
|
mMaterialNum = i_block.mMaterialNum;
|
||||||
mpMaterialInitData = JSUConvertOffsetToPtr<J3DMaterialInitData>(&i_block, i_block.mpMaterialInitData);
|
mpMaterialInitData = JSUConvertOffsetToPtr<J3DMaterialInitData>(&i_block, i_block.mpMaterialInitData);
|
||||||
mpMaterialID = JSUConvertOffsetToPtr<BE(u16)>(&i_block, i_block.mpMaterialID);
|
mpMaterialID = JSUConvertOffsetToPtr<BE(u16)>(&i_block, i_block.mpMaterialID);
|
||||||
@@ -49,11 +46,6 @@ J3DMaterialFactory::J3DMaterialFactory(J3DMaterialBlock const& i_block) {
|
|||||||
mpZCompLoc = JSUConvertOffsetToPtr<u8>(&i_block, i_block.mpZCompLoc);
|
mpZCompLoc = JSUConvertOffsetToPtr<u8>(&i_block, i_block.mpZCompLoc);
|
||||||
mpDither = JSUConvertOffsetToPtr<u8>(&i_block, i_block.mpDither);
|
mpDither = JSUConvertOffsetToPtr<u8>(&i_block, i_block.mpDither);
|
||||||
mpNBTScaleInfo = JSUConvertOffsetToPtr<J3DNBTScaleInfo>(&i_block, i_block.mpNBTScaleInfo);
|
mpNBTScaleInfo = JSUConvertOffsetToPtr<J3DNBTScaleInfo>(&i_block, i_block.mpNBTScaleInfo);
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
if(mBlockType >= 4) {
|
|
||||||
mpPolygonOffsets = JSUConvertOffsetToPtr<PolygonOffset>(&i_block, reinterpret_cast<const J3DMaterialBlock_MAT4&>(i_block).mpPolygonOffsets);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
mpDisplayListInit = NULL;
|
mpDisplayListInit = NULL;
|
||||||
mpPatchingInfo = NULL;
|
mpPatchingInfo = NULL;
|
||||||
mpCurrentMtxInfo = NULL;
|
mpCurrentMtxInfo = NULL;
|
||||||
@@ -82,11 +74,7 @@ u16 J3DMaterialFactory::countUniqueMaterials() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
u32 J3DMaterialFactory::countTexGens(int i_idx) const {
|
u32 J3DMaterialFactory::countTexGens(int i_idx) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTexGenNumIdx != 0xff) {
|
if (mtl_init_data->mTexGenNumIdx != 0xff) {
|
||||||
return mpTexGenNum[mtl_init_data->mTexGenNumIdx];
|
return mpTexGenNum[mtl_init_data->mTexGenNumIdx];
|
||||||
}
|
}
|
||||||
@@ -94,11 +82,7 @@ u32 J3DMaterialFactory::countTexGens(int i_idx) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
u32 J3DMaterialFactory::countStages(int i_idx) const {
|
u32 J3DMaterialFactory::countStages(int i_idx) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
u32 count1 = 0;
|
u32 count1 = 0;
|
||||||
u32 count2 = 0;
|
u32 count2 = 0;
|
||||||
if (mtl_init_data->mTevStageNumIdx != 0xff) {
|
if (mtl_init_data->mTevStageNumIdx != 0xff) {
|
||||||
@@ -173,9 +157,6 @@ J3DMaterial* J3DMaterialFactory::createNormalMaterial(J3DMaterial* i_material, i
|
|||||||
i_material->mPEBlock->setZMode(newZMode(i_idx));
|
i_material->mPEBlock->setZMode(newZMode(i_idx));
|
||||||
i_material->mPEBlock->setZCompLoc(newZCompLoc(i_idx));
|
i_material->mPEBlock->setZCompLoc(newZCompLoc(i_idx));
|
||||||
i_material->mPEBlock->setDither(newDither(i_idx));
|
i_material->mPEBlock->setDither(newDither(i_idx));
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
i_material->mPEBlock->setPolygonOffset(newPolygonOffset(i_idx));
|
|
||||||
#endif
|
|
||||||
i_material->mTevBlock->setTevStageNum(newTevStageNum(i_idx));
|
i_material->mTevBlock->setTevStageNum(newTevStageNum(i_idx));
|
||||||
for (u8 i = 0; i < tex_num; i++) {
|
for (u8 i = 0; i < tex_num; i++) {
|
||||||
i_material->mTevBlock->setTexNo(i, newTexNo(i_idx, i));
|
i_material->mTevBlock->setTexNo(i, newTexNo(i_idx, i));
|
||||||
@@ -184,11 +165,7 @@ J3DMaterial* J3DMaterialFactory::createNormalMaterial(J3DMaterial* i_material, i
|
|||||||
i_material->mTevBlock->setTevOrder(i, newTevOrder(i_idx, i));
|
i_material->mTevBlock->setTevOrder(i, newTevOrder(i_idx, i));
|
||||||
}
|
}
|
||||||
for (u8 i = 0; i < tev_stage_num_max; i++) {
|
for (u8 i = 0; i < tev_stage_num_max; i++) {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* material_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* material_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* material_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
i_material->mTevBlock->setTevStage(i, newTevStage(i_idx, i));
|
i_material->mTevBlock->setTevStage(i, newTevStage(i_idx, i));
|
||||||
if (material_init_data->mTevSwapModeIdx[i] != 0xffff) {
|
if (material_init_data->mTevSwapModeIdx[i] != 0xffff) {
|
||||||
i_material->mTevBlock->getTevStage(i)->setTexSel(
|
i_material->mTevBlock->getTevStage(i)->setTexSel(
|
||||||
@@ -223,11 +200,7 @@ J3DMaterial* J3DMaterialFactory::createNormalMaterial(J3DMaterial* i_material, i
|
|||||||
for (u8 i = 0; i < 8; i++) {
|
for (u8 i = 0; i < 8; i++) {
|
||||||
i_material->mTexGenBlock->setTexMtx(i, newTexMtx(i_idx, i));
|
i_material->mTexGenBlock->setTexMtx(i, newTexMtx(i_idx, i));
|
||||||
}
|
}
|
||||||
#ifdef DUSK_TPHD
|
J3DMaterialInitData* material_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
J3DMaterialInitData* material_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* material_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
|
||||||
#endif
|
|
||||||
for (u8 i = 0; i < tev_stage_num_max; i++) {
|
for (u8 i = 0; i < tev_stage_num_max; i++) {
|
||||||
if (material_init_data->mTevKColorSel[i] != 0xff) {
|
if (material_init_data->mTevKColorSel[i] != 0xff) {
|
||||||
i_material->mTevBlock->setTevKColorSel(i, material_init_data->mTevKColorSel[i]);
|
i_material->mTevBlock->setTevKColorSel(i, material_init_data->mTevKColorSel[i]);
|
||||||
@@ -300,11 +273,7 @@ J3DMaterial* J3DMaterialFactory::createPatchedMaterial(J3DMaterial* i_material,
|
|||||||
i_material->mTevBlock->setTevColor(i, newTevColor(i_idx, i));
|
i_material->mTevBlock->setTevColor(i, newTevColor(i_idx, i));
|
||||||
}
|
}
|
||||||
for (u8 i = 0; i < tev_stage_num; i++) {
|
for (u8 i = 0; i < tev_stage_num; i++) {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* material_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* material_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* material_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
i_material->mTevBlock->setTevStage(i, newTevStage(i_idx, i));
|
i_material->mTevBlock->setTevStage(i, newTevStage(i_idx, i));
|
||||||
if (material_init_data->mTevSwapModeIdx[i] != 0xffff) {
|
if (material_init_data->mTevSwapModeIdx[i] != 0xffff) {
|
||||||
i_material->mTevBlock->getTevStage(i)->setTexSel(
|
i_material->mTevBlock->getTevStage(i)->setTexSel(
|
||||||
@@ -313,11 +282,7 @@ J3DMaterial* J3DMaterialFactory::createPatchedMaterial(J3DMaterial* i_material,
|
|||||||
mpTevSwapModeInfo[material_init_data->mTevSwapModeIdx[i]].mRasSel);
|
mpTevSwapModeInfo[material_init_data->mTevSwapModeIdx[i]].mRasSel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#ifdef DUSK_TPHD
|
J3DMaterialInitData* init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
J3DMaterialInitData* init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
|
||||||
#endif
|
|
||||||
for (u8 i = 0; i < tev_stage_num; i++) {
|
for (u8 i = 0; i < tev_stage_num; i++) {
|
||||||
if (init_data->mTevKColorSel[i] != 0xff) {
|
if (init_data->mTevKColorSel[i] != 0xff) {
|
||||||
i_material->mTevBlock->setTevKColorSel(i, init_data->mTevKColorSel[i]);
|
i_material->mTevBlock->setTevKColorSel(i, init_data->mTevKColorSel[i]);
|
||||||
@@ -458,11 +423,7 @@ u32 J3DMaterialFactory::calcSizeNormalMaterial(J3DMaterial* i_material, int i_id
|
|||||||
size += J3DMaterial::calcSizeTevBlock((u16)tev_stage_num_max);
|
size += J3DMaterial::calcSizeTevBlock((u16)tev_stage_num_max);
|
||||||
size += J3DMaterial::calcSizeIndBlock(ind_flag);
|
size += J3DMaterial::calcSizeIndBlock(ind_flag);
|
||||||
size += J3DMaterial::calcSizePEBlock(pe_flag, getMaterialMode(i_idx));
|
size += J3DMaterial::calcSizePEBlock(pe_flag, getMaterialMode(i_idx));
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
for (u32 i = 0; i < 8; i++) {
|
for (u32 i = 0; i < 8; i++) {
|
||||||
if (init_data->mTexMtxIdx[i] != 0xffff) {
|
if (init_data->mTexMtxIdx[i] != 0xffff) {
|
||||||
size += sizeof(J3DTexMtx);
|
size += sizeof(J3DTexMtx);
|
||||||
@@ -483,11 +444,7 @@ u32 J3DMaterialFactory::calcSizePatchedMaterial(J3DMaterial* i_material, int i_i
|
|||||||
size += sizeof(J3DTevBlockPatched);
|
size += sizeof(J3DTevBlockPatched);
|
||||||
size += J3DMaterial::calcSizeIndBlock(ind_flag);
|
size += J3DMaterial::calcSizeIndBlock(ind_flag);
|
||||||
size += J3DMaterial::calcSizePEBlock(0x10000000, getMaterialMode(i_idx));
|
size += J3DMaterial::calcSizePEBlock(0x10000000, getMaterialMode(i_idx));
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
for (u32 i = 0; i < 8; i++) {
|
for (u32 i = 0; i < 8; i++) {
|
||||||
if (init_data->mTexMtxIdx[i] != 0xffff) {
|
if (init_data->mTexMtxIdx[i] != 0xffff) {
|
||||||
size += sizeof(J3DTexMtx);
|
size += sizeof(J3DTexMtx);
|
||||||
@@ -517,11 +474,7 @@ J3DGXColor J3DMaterialFactory::newMatColor(int i_idx, int i_no) const {
|
|||||||
#else
|
#else
|
||||||
J3DGXColor dflt = GXColor{0xff, 0xff, 0xff, 0xff};
|
J3DGXColor dflt = GXColor{0xff, 0xff, 0xff, 0xff};
|
||||||
#endif
|
#endif
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mMatColorIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mMatColorIdx[i_no] != 0xffff) {
|
||||||
return (GXColor) mpMatColor[mtl_init_data->mMatColorIdx[i_no]];
|
return (GXColor) mpMatColor[mtl_init_data->mMatColorIdx[i_no]];
|
||||||
} else {
|
} else {
|
||||||
@@ -530,11 +483,7 @@ J3DGXColor J3DMaterialFactory::newMatColor(int i_idx, int i_no) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const u8 J3DMaterialFactory::newColorChanNum(int i_idx) const {
|
const u8 J3DMaterialFactory::newColorChanNum(int i_idx) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mColorChanNumIdx != 0xff) {
|
if (mtl_init_data->mColorChanNumIdx != 0xff) {
|
||||||
return mpColorChanNum[mtl_init_data->mColorChanNumIdx];
|
return mpColorChanNum[mtl_init_data->mColorChanNumIdx];
|
||||||
} else {
|
} else {
|
||||||
@@ -544,11 +493,7 @@ const u8 J3DMaterialFactory::newColorChanNum(int i_idx) const {
|
|||||||
|
|
||||||
J3DColorChan J3DMaterialFactory::newColorChan(int i_idx, int i_no) const {
|
J3DColorChan J3DMaterialFactory::newColorChan(int i_idx, int i_no) const {
|
||||||
u32 r29 = 0;
|
u32 r29 = 0;
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (init_data->mColorChanIdx[i_no] != 0xffff) {
|
if (init_data->mColorChanIdx[i_no] != 0xffff) {
|
||||||
return J3DColorChan(mpColorChanInfo[init_data->mColorChanIdx[i_no]]);
|
return J3DColorChan(mpColorChanInfo[init_data->mColorChanIdx[i_no]]);
|
||||||
} else {
|
} else {
|
||||||
@@ -562,11 +507,7 @@ J3DGXColor J3DMaterialFactory::newAmbColor(int i_idx, int i_no) const {
|
|||||||
#else
|
#else
|
||||||
J3DGXColor dflt = GXColor{0x32, 0x32, 0x32, 0x32};
|
J3DGXColor dflt = GXColor{0x32, 0x32, 0x32, 0x32};
|
||||||
#endif
|
#endif
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mAmbColorIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mAmbColorIdx[i_no] != 0xffff) {
|
||||||
return (GXColor) mpAmbColor[mtl_init_data->mAmbColorIdx[i_no]];
|
return (GXColor) mpAmbColor[mtl_init_data->mAmbColorIdx[i_no]];
|
||||||
} else {
|
} else {
|
||||||
@@ -576,11 +517,7 @@ J3DGXColor J3DMaterialFactory::newAmbColor(int i_idx, int i_no) const {
|
|||||||
|
|
||||||
u32 J3DMaterialFactory::newTexGenNum(int i_idx) const {
|
u32 J3DMaterialFactory::newTexGenNum(int i_idx) const {
|
||||||
u32 r30 = 0;
|
u32 r30 = 0;
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTexGenNumIdx != 0xff) {
|
if (mtl_init_data->mTexGenNumIdx != 0xff) {
|
||||||
return mpTexGenNum[mtl_init_data->mTexGenNumIdx];
|
return mpTexGenNum[mtl_init_data->mTexGenNumIdx];
|
||||||
} else {
|
} else {
|
||||||
@@ -589,11 +526,7 @@ u32 J3DMaterialFactory::newTexGenNum(int i_idx) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
J3DTexCoord J3DMaterialFactory::newTexCoord(int i_idx, int i_no) const {
|
J3DTexCoord J3DMaterialFactory::newTexCoord(int i_idx, int i_no) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTexCoordIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mTexCoordIdx[i_no] != 0xffff) {
|
||||||
return J3DTexCoord(mpTexCoordInfo[mtl_init_data->mTexCoordIdx[i_no]]);
|
return J3DTexCoord(mpTexCoordInfo[mtl_init_data->mTexCoordIdx[i_no]]);
|
||||||
} else {
|
} else {
|
||||||
@@ -603,11 +536,7 @@ J3DTexCoord J3DMaterialFactory::newTexCoord(int i_idx, int i_no) const {
|
|||||||
|
|
||||||
J3DTexMtx* J3DMaterialFactory::newTexMtx(int i_idx, int i_no) const {
|
J3DTexMtx* J3DMaterialFactory::newTexMtx(int i_idx, int i_no) const {
|
||||||
J3DTexMtx* tex_mtx = NULL;
|
J3DTexMtx* tex_mtx = NULL;
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTexMtxIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mTexMtxIdx[i_no] != 0xffff) {
|
||||||
#if TARGET_LITTLE_ENDIAN
|
#if TARGET_LITTLE_ENDIAN
|
||||||
auto tex_mtx_info = mpTexMtxInfo[mtl_init_data->mTexMtxIdx[i_no]];
|
auto tex_mtx_info = mpTexMtxInfo[mtl_init_data->mTexMtxIdx[i_no]];
|
||||||
@@ -629,11 +558,7 @@ J3DTexMtx* J3DMaterialFactory::newTexMtx(int i_idx, int i_no) const {
|
|||||||
|
|
||||||
u8 J3DMaterialFactory::newCullMode(int i_idx) const {
|
u8 J3DMaterialFactory::newCullMode(int i_idx) const {
|
||||||
u32 r30 = 0;
|
u32 r30 = 0;
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mCullModeIdx != 0xff) {
|
if (mtl_init_data->mCullModeIdx != 0xff) {
|
||||||
return mpCullMode[mtl_init_data->mCullModeIdx];
|
return mpCullMode[mtl_init_data->mCullModeIdx];
|
||||||
} else {
|
} else {
|
||||||
@@ -642,11 +567,7 @@ u8 J3DMaterialFactory::newCullMode(int i_idx) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
u16 J3DMaterialFactory::newTexNo(int i_idx, int i_no) const {
|
u16 J3DMaterialFactory::newTexNo(int i_idx, int i_no) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTexNoIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mTexNoIdx[i_no] != 0xffff) {
|
||||||
return mpTexNo[mtl_init_data->mTexNoIdx[i_no]];
|
return mpTexNo[mtl_init_data->mTexNoIdx[i_no]];
|
||||||
} else {
|
} else {
|
||||||
@@ -655,11 +576,7 @@ u16 J3DMaterialFactory::newTexNo(int i_idx, int i_no) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
J3DTevOrder J3DMaterialFactory::newTevOrder(int i_idx, int i_no) const {
|
J3DTevOrder J3DMaterialFactory::newTevOrder(int i_idx, int i_no) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTevOrderIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mTevOrderIdx[i_no] != 0xffff) {
|
||||||
return J3DTevOrder(mpTevOrderInfo[mtl_init_data->mTevOrderIdx[i_no]]);
|
return J3DTevOrder(mpTevOrderInfo[mtl_init_data->mTevOrderIdx[i_no]]);
|
||||||
} else {
|
} else {
|
||||||
@@ -670,11 +587,7 @@ J3DTevOrder J3DMaterialFactory::newTevOrder(int i_idx, int i_no) const {
|
|||||||
J3DGXColorS10 J3DMaterialFactory::newTevColor(int i_idx, int i_no) const {
|
J3DGXColorS10 J3DMaterialFactory::newTevColor(int i_idx, int i_no) const {
|
||||||
GXColorS10 _dflt = {0, 0, 0, 0};
|
GXColorS10 _dflt = {0, 0, 0, 0};
|
||||||
J3DGXColorS10 dflt = _dflt;
|
J3DGXColorS10 dflt = _dflt;
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTevColorIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mTevColorIdx[i_no] != 0xffff) {
|
||||||
return (GXColorS10) mpTevColor[mtl_init_data->mTevColorIdx[i_no]];
|
return (GXColorS10) mpTevColor[mtl_init_data->mTevColorIdx[i_no]];
|
||||||
} else {
|
} else {
|
||||||
@@ -688,11 +601,7 @@ J3DGXColor J3DMaterialFactory::newTevKColor(int i_idx, int i_no) const {
|
|||||||
#else
|
#else
|
||||||
J3DGXColor dflt = GXColor{0xff, 0xff, 0xff, 0xff};
|
J3DGXColor dflt = GXColor{0xff, 0xff, 0xff, 0xff};
|
||||||
#endif
|
#endif
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTevKColorIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mTevKColorIdx[i_no] != 0xffff) {
|
||||||
return (GXColor) mpTevKColor[mtl_init_data->mTevKColorIdx[i_no]];
|
return (GXColor) mpTevKColor[mtl_init_data->mTevKColorIdx[i_no]];
|
||||||
} else {
|
} else {
|
||||||
@@ -701,11 +610,7 @@ J3DGXColor J3DMaterialFactory::newTevKColor(int i_idx, int i_no) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const u8 J3DMaterialFactory::newTevStageNum(int i_idx) const {
|
const u8 J3DMaterialFactory::newTevStageNum(int i_idx) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTevStageNumIdx != 0xff) {
|
if (mtl_init_data->mTevStageNumIdx != 0xff) {
|
||||||
return mpTevStageNum[mtl_init_data->mTevStageNumIdx];
|
return mpTevStageNum[mtl_init_data->mTevStageNumIdx];
|
||||||
} else {
|
} else {
|
||||||
@@ -714,11 +619,7 @@ const u8 J3DMaterialFactory::newTevStageNum(int i_idx) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
J3DTevStage J3DMaterialFactory::newTevStage(int i_idx, int i_no) const {
|
J3DTevStage J3DMaterialFactory::newTevStage(int i_idx, int i_no) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTevStageIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mTevStageIdx[i_no] != 0xffff) {
|
||||||
return J3DTevStage(mpTevStageInfo[mtl_init_data->mTevStageIdx[i_no]]);
|
return J3DTevStage(mpTevStageInfo[mtl_init_data->mTevStageIdx[i_no]]);
|
||||||
} else {
|
} else {
|
||||||
@@ -727,11 +628,7 @@ J3DTevStage J3DMaterialFactory::newTevStage(int i_idx, int i_no) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
J3DTevSwapModeTable J3DMaterialFactory::newTevSwapModeTable(int i_idx, int i_no) const {
|
J3DTevSwapModeTable J3DMaterialFactory::newTevSwapModeTable(int i_idx, int i_no) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mTevSwapModeTableIdx[i_no] != 0xffff) {
|
if (mtl_init_data->mTevSwapModeTableIdx[i_no] != 0xffff) {
|
||||||
return J3DTevSwapModeTable(mpTevSwapModeTableInfo[mtl_init_data->mTevSwapModeTableIdx[i_no]]);
|
return J3DTevSwapModeTable(mpTevSwapModeTableInfo[mtl_init_data->mTevSwapModeTableIdx[i_no]]);
|
||||||
} else {
|
} else {
|
||||||
@@ -792,11 +689,7 @@ J3DIndTexCoordScale J3DMaterialFactory::newIndTexCoordScale(int i_idx, int i_no)
|
|||||||
|
|
||||||
J3DFog J3DMaterialFactory::newFog(int i_idx) const {
|
J3DFog J3DMaterialFactory::newFog(int i_idx) const {
|
||||||
J3DFog fog;
|
J3DFog fog;
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mFogIdx != 0xffff) {
|
if (mtl_init_data->mFogIdx != 0xffff) {
|
||||||
#if TARGET_LITTLE_ENDIAN
|
#if TARGET_LITTLE_ENDIAN
|
||||||
J3DFogInfo fogInfo = mpFogInfo[mtl_init_data->mFogIdx];
|
J3DFogInfo fogInfo = mpFogInfo[mtl_init_data->mFogIdx];
|
||||||
@@ -816,11 +709,7 @@ J3DFog J3DMaterialFactory::newFog(int i_idx) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
J3DAlphaComp J3DMaterialFactory::newAlphaComp(int i_idx) const {
|
J3DAlphaComp J3DMaterialFactory::newAlphaComp(int i_idx) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mAlphaCompIdx != 0xffff) {
|
if (mtl_init_data->mAlphaCompIdx != 0xffff) {
|
||||||
return J3DAlphaComp(mpAlphaCompInfo[mtl_init_data->mAlphaCompIdx]);
|
return J3DAlphaComp(mpAlphaCompInfo[mtl_init_data->mAlphaCompIdx]);
|
||||||
} else {
|
} else {
|
||||||
@@ -829,11 +718,7 @@ J3DAlphaComp J3DMaterialFactory::newAlphaComp(int i_idx) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
J3DBlend J3DMaterialFactory::newBlend(int i_idx) const {
|
J3DBlend J3DMaterialFactory::newBlend(int i_idx) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mBlendIdx != 0xffff) {
|
if (mtl_init_data->mBlendIdx != 0xffff) {
|
||||||
return J3DBlend(mpBlendInfo[mtl_init_data->mBlendIdx]);
|
return J3DBlend(mpBlendInfo[mtl_init_data->mBlendIdx]);
|
||||||
} else {
|
} else {
|
||||||
@@ -843,11 +728,7 @@ J3DBlend J3DMaterialFactory::newBlend(int i_idx) const {
|
|||||||
|
|
||||||
J3DZMode J3DMaterialFactory::newZMode(int i_idx) const {
|
J3DZMode J3DMaterialFactory::newZMode(int i_idx) const {
|
||||||
u32 r29 = 0;
|
u32 r29 = 0;
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mZModeIdx != 0xff) {
|
if (mtl_init_data->mZModeIdx != 0xff) {
|
||||||
return J3DZMode(mpZModeInfo[mtl_init_data->mZModeIdx]);
|
return J3DZMode(mpZModeInfo[mtl_init_data->mZModeIdx]);
|
||||||
} else {
|
} else {
|
||||||
@@ -856,11 +737,7 @@ J3DZMode J3DMaterialFactory::newZMode(int i_idx) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const u8 J3DMaterialFactory::newZCompLoc(int i_idx) const {
|
const u8 J3DMaterialFactory::newZCompLoc(int i_idx) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mZCompLocIdx != 0xff){
|
if (mtl_init_data->mZCompLocIdx != 0xff){
|
||||||
return mpZCompLoc[mtl_init_data->mZCompLocIdx];
|
return mpZCompLoc[mtl_init_data->mZCompLocIdx];
|
||||||
} else {
|
} else {
|
||||||
@@ -869,11 +746,7 @@ const u8 J3DMaterialFactory::newZCompLoc(int i_idx) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const u8 J3DMaterialFactory::newDither(int i_idx) const {
|
const u8 J3DMaterialFactory::newDither(int i_idx) const {
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mDitherIdx != 0xff){
|
if (mtl_init_data->mDitherIdx != 0xff){
|
||||||
return mpDither[mtl_init_data->mDitherIdx];
|
return mpDither[mtl_init_data->mDitherIdx];
|
||||||
} else {
|
} else {
|
||||||
@@ -881,24 +754,9 @@ const u8 J3DMaterialFactory::newDither(int i_idx) const {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
const PolygonOffset J3DMaterialFactory::newPolygonOffset(int i_idx) const {
|
|
||||||
J3DMaterialInitData_MAT4* mtl_init_data = (J3DMaterialInitData_MAT4*)getMatInitData(i_idx);
|
|
||||||
if (mBlockType >= 4 && mtl_init_data->mPolygonOffsetIdx != 0xffff){
|
|
||||||
return mpPolygonOffsets[mtl_init_data->mPolygonOffsetIdx];
|
|
||||||
} else {
|
|
||||||
return PolygonOffset{0.0f, 0.0f, 0.0f, 0.0f, 0.0f};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
J3DNBTScale J3DMaterialFactory::newNBTScale(int i_idx) const {
|
J3DNBTScale J3DMaterialFactory::newNBTScale(int i_idx) const {
|
||||||
J3DNBTScale dflt(j3dDefaultNBTScaleInfo);
|
J3DNBTScale dflt(j3dDefaultNBTScaleInfo);
|
||||||
#ifdef DUSK_TPHD
|
|
||||||
J3DMaterialInitData* mtl_init_data = getMatInitData(i_idx);
|
|
||||||
#else
|
|
||||||
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
J3DMaterialInitData* mtl_init_data = &mpMaterialInitData[mpMaterialID[i_idx]];
|
||||||
#endif
|
|
||||||
if (mtl_init_data->mNBTScaleIdx != 0xffff) {
|
if (mtl_init_data->mNBTScaleIdx != 0xffff) {
|
||||||
return J3DNBTScale(mpNBTScaleInfo[mtl_init_data->mNBTScaleIdx]);
|
return J3DNBTScale(mpNBTScaleInfo[mtl_init_data->mNBTScaleIdx]);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -103,9 +103,6 @@ J3DModelData* J3DModelLoader::load(void const* i_data, u32 i_flags) {
|
|||||||
readJoint((J3DJointBlock*)block);
|
readJoint((J3DJointBlock*)block);
|
||||||
break;
|
break;
|
||||||
case 'MAT3':
|
case 'MAT3':
|
||||||
#if DUSK_TPHD
|
|
||||||
case 'MAT4':
|
|
||||||
#endif
|
|
||||||
readMaterial((J3DMaterialBlock*)block, (s32)i_flags);
|
readMaterial((J3DMaterialBlock*)block, (s32)i_flags);
|
||||||
break;
|
break;
|
||||||
case 'MAT2':
|
case 'MAT2':
|
||||||
@@ -150,9 +147,6 @@ J3DMaterialTable* J3DModelLoader::loadMaterialTable(void const* i_data) {
|
|||||||
for (u32 block_no = 0; block_no < data->mBlockNum; block_no++) {
|
for (u32 block_no = 0; block_no < data->mBlockNum; block_no++) {
|
||||||
switch (block->mBlockType) {
|
switch (block->mBlockType) {
|
||||||
case 'MAT3':
|
case 'MAT3':
|
||||||
#if DUSK_TPHD
|
|
||||||
case 'MAT4':
|
|
||||||
#endif
|
|
||||||
readMaterialTable((J3DMaterialBlock*)block, flags);
|
readMaterialTable((J3DMaterialBlock*)block, flags);
|
||||||
break;
|
break;
|
||||||
case 'MAT2':
|
case 'MAT2':
|
||||||
@@ -218,9 +212,6 @@ J3DModelData* J3DModelLoader::loadBinaryDisplayList(void const* i_data, u32 i_fl
|
|||||||
modifyMaterial(i_flags);
|
modifyMaterial(i_flags);
|
||||||
break;
|
break;
|
||||||
case 'MAT3':
|
case 'MAT3':
|
||||||
#if DUSK_TPHD
|
|
||||||
case 'MAT4':
|
|
||||||
#endif
|
|
||||||
flags = 0x50100000;
|
flags = 0x50100000;
|
||||||
flags |= (i_flags & 0x3000000);
|
flags |= (i_flags & 0x3000000);
|
||||||
mpMaterialBlock = (J3DMaterialBlock*)block;
|
mpMaterialBlock = (J3DMaterialBlock*)block;
|
||||||
@@ -317,22 +308,8 @@ static GXVtxAttrFmtList getFmt(GXVtxAttrFmtList* i_fmtList, GXAttr i_attr) {
|
|||||||
return *i_fmtList;
|
return *i_fmtList;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#if DUSK_TPHD
|
|
||||||
// HD BMDs occasionally have vertex arrays without a format entry. Mirror
|
|
||||||
// the GC runtime: fall back to J3DSys::initGX defaults.
|
|
||||||
GXVtxAttrFmtList def{};
|
|
||||||
def.attr = i_attr;
|
|
||||||
def.frac = 0;
|
|
||||||
if (i_attr == GX_VA_POS) { def.cnt = GX_POS_XYZ; def.type = GX_F32; }
|
|
||||||
else if (i_attr == GX_VA_NRM) { def.cnt = GX_NRM_XYZ; def.type = GX_F32; }
|
|
||||||
else if (i_attr == GX_VA_NBT) { def.cnt = GX_NRM_NBT; def.type = GX_F32; }
|
|
||||||
else if (i_attr >= GX_VA_CLR0 &&
|
|
||||||
i_attr <= GX_VA_CLR1) { def.cnt = GX_CLR_RGBA; def.type = GX_RGBA8; }
|
|
||||||
else { def.cnt = GX_TEX_ST; def.type = GX_F32; }
|
|
||||||
return def;
|
|
||||||
#else
|
|
||||||
OSPanic(__FILE__, __LINE__, "Unable to find vertex attribute format!");
|
OSPanic(__FILE__, __LINE__, "Unable to find vertex attribute format!");
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ u16 J3DModelLoader::countMaterialNum(const void* stream) {
|
|||||||
const J3DModelBlock* block = header->mBlocks;
|
const J3DModelBlock* block = header->mBlocks;
|
||||||
for (int i = 0; i < header->mBlockNum; i++)
|
for (int i = 0; i < header->mBlockNum; i++)
|
||||||
{
|
{
|
||||||
if (block->mBlockType == 'MAT3' || block->mBlockType == 'MAT4') {
|
if (block->mBlockType == 'MAT3') {
|
||||||
const J3DMaterialBlock* materialBlock = (const J3DMaterialBlock*)block;
|
const J3DMaterialBlock* materialBlock = (const J3DMaterialBlock*)block;
|
||||||
return materialBlock->mMaterialNum;
|
return materialBlock->mMaterialNum;
|
||||||
}
|
}
|
||||||
@@ -45,7 +45,6 @@ u32 J3DModelLoader::calcLoadSize(void const* stream, u32 flags_) {
|
|||||||
size += calcSizeJoint((const J3DJointBlock*)nextBlock);
|
size += calcSizeJoint((const J3DJointBlock*)nextBlock);
|
||||||
break;
|
break;
|
||||||
case 'MAT3':
|
case 'MAT3':
|
||||||
case 'MAT4':
|
|
||||||
size += calcSizeMaterial((const J3DMaterialBlock*)nextBlock, flags);
|
size += calcSizeMaterial((const J3DMaterialBlock*)nextBlock, flags);
|
||||||
break;
|
break;
|
||||||
case 'SHP1':
|
case 'SHP1':
|
||||||
@@ -87,7 +86,6 @@ u32 J3DModelLoader::calcLoadMaterialTableSize(const void* stream) {
|
|||||||
for (u32 i = 0; i < header->mBlockNum; i++) {
|
for (u32 i = 0; i < header->mBlockNum; i++) {
|
||||||
switch (nextBlock->mBlockType) {
|
switch (nextBlock->mBlockType) {
|
||||||
case 'MAT3':
|
case 'MAT3':
|
||||||
case 'MAT4':
|
|
||||||
size += calcSizeMaterialTable((const J3DMaterialBlock*)nextBlock, flags);
|
size += calcSizeMaterialTable((const J3DMaterialBlock*)nextBlock, flags);
|
||||||
break;
|
break;
|
||||||
case 'TEX1':
|
case 'TEX1':
|
||||||
@@ -137,8 +135,7 @@ u32 J3DModelLoader::calcLoadBinaryDisplayListSize(const void* stream, u32 flags)
|
|||||||
case 'MDL3':
|
case 'MDL3':
|
||||||
size += calcSizeMaterialDL((const J3DMaterialDLBlock*)nextBlock, flags);
|
size += calcSizeMaterialDL((const J3DMaterialDLBlock*)nextBlock, flags);
|
||||||
break;
|
break;
|
||||||
case 'MAT3':
|
case 'MAT3': {
|
||||||
case 'MAT4': {
|
|
||||||
u32 flags2 = (J3DMLF_21 | J3DMLF_Material_PE_Full | J3DMLF_Material_Color_LightOn);
|
u32 flags2 = (J3DMLF_21 | J3DMLF_Material_PE_Full | J3DMLF_Material_Color_LightOn);
|
||||||
flags2 |= (u32)flags & (J3DMLF_Material_UseIndirect | J3DMLF_26);
|
flags2 |= (u32)flags & (J3DMLF_Material_UseIndirect | J3DMLF_26);
|
||||||
mpMaterialBlock = (const J3DMaterialBlock*)nextBlock;
|
mpMaterialBlock = (const J3DMaterialBlock*)nextBlock;
|
||||||
|
|||||||
@@ -132,7 +132,12 @@ J3DShapeDraw* J3DShapeFactory::newShapeDraw(int shapeNo, int mtxGroupNo) const {
|
|||||||
const J3DShapeInitData& shapeInitData = mShapeInitData[mIndexTable[shapeNo]];
|
const J3DShapeInitData& shapeInitData = mShapeInitData[mIndexTable[shapeNo]];
|
||||||
const J3DShapeDrawInitData& drawInitData =
|
const J3DShapeDrawInitData& drawInitData =
|
||||||
(&mDrawInitData[shapeInitData.mDrawInitDataIndex])[mtxGroupNo];
|
(&mDrawInitData[shapeInitData.mDrawInitDataIndex])[mtxGroupNo];
|
||||||
|
#if TARGET_PC
|
||||||
|
shapeDraw = JKR_NEW J3DShapeDraw(&mDisplayListData[drawInitData.mDisplayListIndex], drawInitData.mDisplayListSize,
|
||||||
|
getVtxDescList(shapeNo));
|
||||||
|
#else
|
||||||
shapeDraw = JKR_NEW J3DShapeDraw(&mDisplayListData[drawInitData.mDisplayListIndex], drawInitData.mDisplayListSize);
|
shapeDraw = JKR_NEW J3DShapeDraw(&mDisplayListData[drawInitData.mDisplayListIndex], drawInitData.mDisplayListSize);
|
||||||
|
#endif
|
||||||
J3D_ASSERT_ALLOCMEM(193, shapeDraw);
|
J3D_ASSERT_ALLOCMEM(193, shapeDraw);
|
||||||
return shapeDraw;
|
return shapeDraw;
|
||||||
}
|
}
|
||||||
@@ -154,7 +159,7 @@ s32 J3DShapeFactory::calcSize(int shapeNo, u32 flag) {
|
|||||||
|
|
||||||
for (u32 i = 0; i < mtxGroupNo; i++) {
|
for (u32 i = 0; i < mtxGroupNo; i++) {
|
||||||
size += calcSizeShapeMtx(flag, shapeNo, i);
|
size += calcSizeShapeMtx(flag, shapeNo, i);
|
||||||
size += 0x0C;
|
size += sizeof(J3DShapeDraw);
|
||||||
}
|
}
|
||||||
|
|
||||||
return size;
|
return size;
|
||||||
|
|||||||
@@ -9,10 +9,6 @@
|
|||||||
#include "JSystem/JKernel/JKRMemArchive.h"
|
#include "JSystem/JKernel/JKRMemArchive.h"
|
||||||
#include "JSystem/JUtility/JUTAssert.h"
|
#include "JSystem/JUtility/JUTAssert.h"
|
||||||
|
|
||||||
#if TARGET_PC && DUSK_TPHD
|
|
||||||
#include "dusk/tphd/HdAssetLayer.hpp"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
JKRArchive* JKRArchive::check_mount_already(s32 entryNum, JKRHeap* heap) {
|
JKRArchive* JKRArchive::check_mount_already(s32 entryNum, JKRHeap* heap) {
|
||||||
if (heap == NULL) {
|
if (heap == NULL) {
|
||||||
heap = JKRGetCurrentHeap();
|
heap = JKRGetCurrentHeap();
|
||||||
@@ -33,15 +29,6 @@ JKRArchive* JKRArchive::check_mount_already(s32 entryNum, JKRHeap* heap) {
|
|||||||
|
|
||||||
JKRArchive* JKRArchive::mount(const char* path, EMountMode mountMode, JKRHeap* heap,
|
JKRArchive* JKRArchive::mount(const char* path, EMountMode mountMode, JKRHeap* heap,
|
||||||
EMountDirection mountDirection) {
|
EMountDirection mountDirection) {
|
||||||
#if TARGET_PC && DUSK_TPHD
|
|
||||||
// TPHD arc redirect.
|
|
||||||
if (path != NULL) {
|
|
||||||
if (auto hdBuf = dusk::tphd::tryLoadHdArchive(path)) {
|
|
||||||
return mount((*hdBuf)->data(), heap, mountDirection);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
s32 entryNum = DVDConvertPathToEntrynum(path);
|
s32 entryNum = DVDConvertPathToEntrynum(path);
|
||||||
if (entryNum < 0)
|
if (entryNum < 0)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|||||||
@@ -10,23 +10,10 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "os_report.h"
|
#include "os_report.h"
|
||||||
|
|
||||||
#if DUSK_TPHD
|
|
||||||
#include "dusk/tphd/HdAssetLayer.hpp"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
JKRMemArchive::JKRMemArchive(s32 entryNum, JKRArchive::EMountDirection mountDirection)
|
JKRMemArchive::JKRMemArchive(s32 entryNum, JKRArchive::EMountDirection mountDirection)
|
||||||
: JKRArchive(entryNum, MOUNT_MEM) {
|
: JKRArchive(entryNum, MOUNT_MEM) {
|
||||||
mIsMounted = false;
|
mIsMounted = false;
|
||||||
mMountDirection = mountDirection;
|
mMountDirection = mountDirection;
|
||||||
#if DUSK_TPHD
|
|
||||||
// TPHD arc redirect by entrynum.
|
|
||||||
if (const auto* hd = dusk::tphd::getHdBytesForEntryNum(entryNum)) {
|
|
||||||
if (!open(const_cast<u8*>(hd->data()), static_cast<u32>(hd->size()),
|
|
||||||
JKRMEMBREAK_FLAG_UNKNOWN0)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
} else
|
|
||||||
#endif
|
|
||||||
if (!open(entryNum, mMountDirection)) {
|
if (!open(entryNum, mMountDirection)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,6 +14,33 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "tracy/Tracy.hpp"
|
#include "tracy/Tracy.hpp"
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
#define JPA_DRAW_CTX_PARAM , ParticleDrawCtx* ctx
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
GXColor emitter_prm_color(JPAEmitterWorkData* work) {
|
||||||
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
|
GXColor prm = emtr->mPrmClr;
|
||||||
|
prm.r = COLOR_MULTI(prm.r, emtr->mGlobalPrmClr.r);
|
||||||
|
prm.g = COLOR_MULTI(prm.g, emtr->mGlobalPrmClr.g);
|
||||||
|
prm.b = COLOR_MULTI(prm.b, emtr->mGlobalPrmClr.b);
|
||||||
|
prm.a = COLOR_MULTI(prm.a, emtr->mGlobalPrmClr.a);
|
||||||
|
return prm;
|
||||||
|
}
|
||||||
|
|
||||||
|
GXColor emitter_env_color(JPAEmitterWorkData* work) {
|
||||||
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
|
GXColor env = emtr->mEnvClr;
|
||||||
|
env.r = COLOR_MULTI(env.r, emtr->mGlobalEnvClr.r);
|
||||||
|
env.g = COLOR_MULTI(env.g, emtr->mGlobalEnvClr.g);
|
||||||
|
env.b = COLOR_MULTI(env.b, emtr->mGlobalEnvClr.b);
|
||||||
|
return env;
|
||||||
|
}
|
||||||
|
} // namespace
|
||||||
|
#else
|
||||||
|
#define JPA_DRAW_CTX_PARAM
|
||||||
|
#endif
|
||||||
|
|
||||||
void JPASetPointSize(JPAEmitterWorkData* work) {
|
void JPASetPointSize(JPAEmitterWorkData* work) {
|
||||||
GXSetPointSize((u8)(25.0f * work->mGlobalPtclScl.x), GX_TO_ONE);
|
GXSetPointSize((u8)(25.0f * work->mGlobalPtclScl.x), GX_TO_ONE);
|
||||||
}
|
}
|
||||||
@@ -22,15 +49,16 @@ void JPASetLineWidth(JPAEmitterWorkData* work) {
|
|||||||
GXSetLineWidth((u8)(25.0f * work->mGlobalPtclScl.x), GX_TO_ONE);
|
GXSetLineWidth((u8)(25.0f * work->mGlobalPtclScl.x), GX_TO_ONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPASetPointSize(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPASetPointSize(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
GXSetPointSize((u8)(ptcl->mParticleScaleX * (25.0f * work->mGlobalPtclScl.x)), GX_TO_ONE);
|
GXSetPointSize((u8)(ptcl->mParticleScaleX * (25.0f * work->mGlobalPtclScl.x)), GX_TO_ONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPASetLineWidth(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPASetLineWidth(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
GXSetLineWidth((u8)(ptcl->mParticleScaleX * (25.0f * work->mGlobalPtclScl.x)), GX_TO_ONE);
|
GXSetLineWidth((u8)(ptcl->mParticleScaleX * (25.0f * work->mGlobalPtclScl.x)), GX_TO_ONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPARegistPrm(JPAEmitterWorkData* work) {
|
void JPARegistPrm(JPAEmitterWorkData* work) {
|
||||||
|
ZoneScoped;
|
||||||
JPABaseEmitter* emtr = work->mpEmtr;
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
GXColor prm = emtr->mPrmClr;
|
GXColor prm = emtr->mPrmClr;
|
||||||
prm.r = COLOR_MULTI(prm.r, emtr->mGlobalPrmClr.r);
|
prm.r = COLOR_MULTI(prm.r, emtr->mGlobalPrmClr.r);
|
||||||
@@ -41,6 +69,7 @@ void JPARegistPrm(JPAEmitterWorkData* work) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void JPARegistEnv(JPAEmitterWorkData* work) {
|
void JPARegistEnv(JPAEmitterWorkData* work) {
|
||||||
|
ZoneScoped;
|
||||||
JPABaseEmitter* emtr = work->mpEmtr;
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
GXColor env = emtr->mEnvClr;
|
GXColor env = emtr->mEnvClr;
|
||||||
env.r = COLOR_MULTI(env.r, emtr->mGlobalEnvClr.r);
|
env.r = COLOR_MULTI(env.r, emtr->mGlobalEnvClr.r);
|
||||||
@@ -50,6 +79,7 @@ void JPARegistEnv(JPAEmitterWorkData* work) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void JPARegistPrmEnv(JPAEmitterWorkData* work) {
|
void JPARegistPrmEnv(JPAEmitterWorkData* work) {
|
||||||
|
ZoneScoped;
|
||||||
JPABaseEmitter* emtr = work->mpEmtr;
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
GXColor prm = emtr->mPrmClr;
|
GXColor prm = emtr->mPrmClr;
|
||||||
GXColor env = emtr->mEnvClr;
|
GXColor env = emtr->mEnvClr;
|
||||||
@@ -64,7 +94,8 @@ void JPARegistPrmEnv(JPAEmitterWorkData* work) {
|
|||||||
GXSetTevColor(GX_TEVREG1, env);
|
GXSetTevColor(GX_TEVREG1, env);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPARegistAlpha(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPARegistAlpha(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
|
ZoneScoped;
|
||||||
JPABaseEmitter* emtr = work->mpEmtr;
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
GXColor prm = emtr->mPrmClr;
|
GXColor prm = emtr->mPrmClr;
|
||||||
prm.r = COLOR_MULTI(prm.r, emtr->mGlobalPrmClr.r);
|
prm.r = COLOR_MULTI(prm.r, emtr->mGlobalPrmClr.r);
|
||||||
@@ -72,10 +103,19 @@ void JPARegistAlpha(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
prm.b = COLOR_MULTI(prm.b, emtr->mGlobalPrmClr.b);
|
prm.b = COLOR_MULTI(prm.b, emtr->mGlobalPrmClr.b);
|
||||||
prm.a = COLOR_MULTI(prm.a, emtr->mGlobalPrmClr.a);
|
prm.a = COLOR_MULTI(prm.a, emtr->mGlobalPrmClr.a);
|
||||||
prm.a = COLOR_MULTI(prm.a, ptcl->mPrmColorAlphaAnm);
|
prm.a = COLOR_MULTI(prm.a, ptcl->mPrmColorAlphaAnm);
|
||||||
|
#if TARGET_PC
|
||||||
|
if (ctx->batch) {
|
||||||
|
ctx->clr0 = prm;
|
||||||
|
if (ctx->useClr1) {
|
||||||
|
ctx->clr1 = emitter_env_color(work);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
GXSetTevColor(GX_TEVREG0, prm);
|
GXSetTevColor(GX_TEVREG0, prm);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPARegistPrmAlpha(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPARegistPrmAlpha(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
ZoneScoped;
|
ZoneScoped;
|
||||||
JPABaseEmitter* emtr = work->mpEmtr;
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
GXColor prm = ptcl->mPrmClr;
|
GXColor prm = ptcl->mPrmClr;
|
||||||
@@ -84,10 +124,19 @@ void JPARegistPrmAlpha(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
prm.b = COLOR_MULTI(prm.b, emtr->mGlobalPrmClr.b);
|
prm.b = COLOR_MULTI(prm.b, emtr->mGlobalPrmClr.b);
|
||||||
prm.a = COLOR_MULTI(prm.a, emtr->mGlobalPrmClr.a);
|
prm.a = COLOR_MULTI(prm.a, emtr->mGlobalPrmClr.a);
|
||||||
prm.a = COLOR_MULTI(prm.a, ptcl->mPrmColorAlphaAnm);
|
prm.a = COLOR_MULTI(prm.a, ptcl->mPrmColorAlphaAnm);
|
||||||
|
#if TARGET_PC
|
||||||
|
if (ctx->batch) {
|
||||||
|
ctx->clr0 = prm;
|
||||||
|
if (ctx->useClr1) {
|
||||||
|
ctx->clr1 = emitter_env_color(work);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
GXSetTevColor(GX_TEVREG0, prm);
|
GXSetTevColor(GX_TEVREG0, prm);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPARegistPrmAlphaEnv(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPARegistPrmAlphaEnv(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
ZoneScoped;
|
ZoneScoped;
|
||||||
JPABaseEmitter* emtr = work->mpEmtr;
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
GXColor prm = ptcl->mPrmClr;
|
GXColor prm = ptcl->mPrmClr;
|
||||||
@@ -100,11 +149,19 @@ void JPARegistPrmAlphaEnv(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
env.r = COLOR_MULTI(env.r, emtr->mGlobalEnvClr.r);
|
env.r = COLOR_MULTI(env.r, emtr->mGlobalEnvClr.r);
|
||||||
env.g = COLOR_MULTI(env.g, emtr->mGlobalEnvClr.g);
|
env.g = COLOR_MULTI(env.g, emtr->mGlobalEnvClr.g);
|
||||||
env.b = COLOR_MULTI(env.b, emtr->mGlobalEnvClr.b);
|
env.b = COLOR_MULTI(env.b, emtr->mGlobalEnvClr.b);
|
||||||
|
#if TARGET_PC
|
||||||
|
if (ctx->batch) {
|
||||||
|
ctx->clr0 = prm;
|
||||||
|
ctx->clr1 = env;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
GXSetTevColor(GX_TEVREG0, prm);
|
GXSetTevColor(GX_TEVREG0, prm);
|
||||||
GXSetTevColor(GX_TEVREG1, env);
|
GXSetTevColor(GX_TEVREG1, env);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPARegistAlphaEnv(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPARegistAlphaEnv(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
|
ZoneScoped;
|
||||||
JPABaseEmitter* emtr = work->mpEmtr;
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
GXColor prm = emtr->mPrmClr;
|
GXColor prm = emtr->mPrmClr;
|
||||||
GXColor env = ptcl->mEnvClr;
|
GXColor env = ptcl->mEnvClr;
|
||||||
@@ -116,16 +173,31 @@ void JPARegistAlphaEnv(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
env.r = COLOR_MULTI(env.r, emtr->mGlobalEnvClr.r);
|
env.r = COLOR_MULTI(env.r, emtr->mGlobalEnvClr.r);
|
||||||
env.g = COLOR_MULTI(env.g, emtr->mGlobalEnvClr.g);
|
env.g = COLOR_MULTI(env.g, emtr->mGlobalEnvClr.g);
|
||||||
env.b = COLOR_MULTI(env.b, emtr->mGlobalEnvClr.b);
|
env.b = COLOR_MULTI(env.b, emtr->mGlobalEnvClr.b);
|
||||||
|
#if TARGET_PC
|
||||||
|
if (ctx->batch) {
|
||||||
|
ctx->clr0 = prm;
|
||||||
|
ctx->clr1 = env;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
GXSetTevColor(GX_TEVREG0, prm);
|
GXSetTevColor(GX_TEVREG0, prm);
|
||||||
GXSetTevColor(GX_TEVREG1, env);
|
GXSetTevColor(GX_TEVREG1, env);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPARegistEnv(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPARegistEnv(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
|
ZoneScoped;
|
||||||
JPABaseEmitter* emtr = work->mpEmtr;
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
GXColor env = ptcl->mEnvClr;
|
GXColor env = ptcl->mEnvClr;
|
||||||
env.r = COLOR_MULTI(env.r, emtr->mGlobalEnvClr.r);
|
env.r = COLOR_MULTI(env.r, emtr->mGlobalEnvClr.r);
|
||||||
env.g = COLOR_MULTI(env.g, emtr->mGlobalEnvClr.g);
|
env.g = COLOR_MULTI(env.g, emtr->mGlobalEnvClr.g);
|
||||||
env.b = COLOR_MULTI(env.b, emtr->mGlobalEnvClr.b);
|
env.b = COLOR_MULTI(env.b, emtr->mGlobalEnvClr.b);
|
||||||
|
#if TARGET_PC
|
||||||
|
if (ctx->batch) {
|
||||||
|
ctx->clr0 = emitter_prm_color(work);
|
||||||
|
ctx->clr1 = env;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
GXSetTevColor(GX_TEVREG1, env);
|
GXSetTevColor(GX_TEVREG1, env);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -258,7 +330,7 @@ void JPAGenCalcTexCrdMtxAnm(JPAEmitterWorkData* work) {
|
|||||||
GXSetTexCoordGen(GX_TEXCOORD0, GX_TG_MTX2x4, GX_TG_TEX0, GX_TEXMTX0);
|
GXSetTexCoordGen(GX_TEXCOORD0, GX_TG_MTX2x4, GX_TG_TEX0, GX_TEXMTX0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPALoadCalcTexCrdMtxAnm(JPAEmitterWorkData* work, JPABaseParticle* param_1) {
|
void JPALoadCalcTexCrdMtxAnm(JPAEmitterWorkData* work, JPABaseParticle* param_1 JPA_DRAW_CTX_PARAM) {
|
||||||
ZoneScoped;
|
ZoneScoped;
|
||||||
JPABaseShape* shape = work->mpRes->getBsp();
|
JPABaseShape* shape = work->mpRes->getBsp();
|
||||||
f32 dVar16 = param_1->mAge;
|
f32 dVar16 = param_1->mAge;
|
||||||
@@ -286,6 +358,12 @@ void JPALoadCalcTexCrdMtxAnm(JPAEmitterWorkData* work, JPABaseParticle* param_1)
|
|||||||
local_108[2][1] = 0.0f;
|
local_108[2][1] = 0.0f;
|
||||||
local_108[2][2] = 1.0f;
|
local_108[2][2] = 1.0f;
|
||||||
local_108[2][3] = 0.0f;
|
local_108[2][3] = 0.0f;
|
||||||
|
#if TARGET_PC
|
||||||
|
if (ctx->batch) {
|
||||||
|
MTXCopy(local_108, ctx->texMtx);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
GXLoadTexMtxImm(local_108, 0x1e, GX_MTX2x4);
|
GXLoadTexMtxImm(local_108, 0x1e, GX_MTX2x4);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -299,7 +377,7 @@ void JPALoadTexAnm(JPAEmitterWorkData* work) {
|
|||||||
work->mpResMgr->load(work->mpRes->getTexIdx(work->mpEmtr->mTexAnmIdx), GX_TEXMAP0);
|
work->mpResMgr->load(work->mpRes->getTexIdx(work->mpEmtr->mTexAnmIdx), GX_TEXMAP0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPALoadTexAnm(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPALoadTexAnm(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
ZoneScoped;
|
ZoneScoped;
|
||||||
work->mpResMgr->load(work->mpRes->getTexIdx(ptcl->mTexAnmIdx), GX_TEXMAP0);
|
work->mpResMgr->load(work->mpRes->getTexIdx(ptcl->mTexAnmIdx), GX_TEXMAP0);
|
||||||
}
|
}
|
||||||
@@ -429,6 +507,47 @@ static projectionFunc p_prj[3] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
|
static void emit_batch_quad(JPAEmitterWorkData* work, const ParticleDrawCtx* ctx,
|
||||||
|
const Mtx posMtx) {
|
||||||
|
const JPAResource::BatchInfo& info = work->mpRes->mBatchInfo;
|
||||||
|
|
||||||
|
for (int i = 0; i < info.vtxCount; i++) {
|
||||||
|
Vec localPos = {info.vtxPos[i][0], info.vtxPos[i][1], info.vtxPos[i][2]};
|
||||||
|
Vec drawPos;
|
||||||
|
MTXMultVec(posMtx, &localPos, &drawPos);
|
||||||
|
|
||||||
|
f32 texS = info.vtxUv[i][0];
|
||||||
|
f32 texT = info.vtxUv[i][1];
|
||||||
|
if (ctx->useTexMtx) {
|
||||||
|
f32 srcS = texS;
|
||||||
|
f32 srcT = texT;
|
||||||
|
texS = ctx->texMtx[0][0] * srcS + ctx->texMtx[0][1] * srcT + ctx->texMtx[0][3];
|
||||||
|
texT = ctx->texMtx[1][0] * srcS + ctx->texMtx[1][1] * srcT + ctx->texMtx[1][3];
|
||||||
|
}
|
||||||
|
|
||||||
|
GXPosition3f32(drawPos.x, drawPos.y, drawPos.z);
|
||||||
|
if (ctx->useClr0) {
|
||||||
|
GXColor4u8(ctx->clr0.r, ctx->clr0.g, ctx->clr0.b, ctx->clr0.a);
|
||||||
|
}
|
||||||
|
if (ctx->useClr1) {
|
||||||
|
GXColor4u8(ctx->clr1.r, ctx->clr1.g, ctx->clr1.b, ctx->clr1.a);
|
||||||
|
}
|
||||||
|
GXTexCoord2f32(texS, texT);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void submit_particle_quad(
|
||||||
|
JPAEmitterWorkData* work, ParticleDrawCtx* ctx, const Mtx posMtx, const u8* dl, u32 dlSize) {
|
||||||
|
if (ctx->batch) {
|
||||||
|
emit_batch_quad(work, ctx, posMtx);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
GXLoadPosMtxImm(posMtx, GX_PNMTX0);
|
||||||
|
p_prj[work->mPrjType](work, posMtx);
|
||||||
|
GXCallDisplayList(dl, dlSize);
|
||||||
|
}
|
||||||
|
|
||||||
void JPAInterpBillboard(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPAInterpBillboard(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
||||||
Mtx ptclPosMtx;
|
Mtx ptclPosMtx;
|
||||||
MTXTrans(ptclPosMtx, ptcl->mPosition.x, ptcl->mPosition.y, ptcl->mPosition.z);
|
MTXTrans(ptclPosMtx, ptcl->mPosition.x, ptcl->mPosition.y, ptcl->mPosition.z);
|
||||||
@@ -448,7 +567,7 @@ void JPAInterpRotBillboard(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void JPADrawBillboard(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPADrawBillboard(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -473,12 +592,16 @@ void JPADrawBillboard(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
posMtx[2][2] = 1.0f;
|
posMtx[2][2] = 1.0f;
|
||||||
posMtx[2][3] = pos.z;
|
posMtx[2][3] = pos.z;
|
||||||
posMtx[0][1] = posMtx[0][2] = posMtx[1][0] = posMtx[1][2] = posMtx[2][0] = posMtx[2][1] = 0.0f;
|
posMtx[0][1] = posMtx[0][2] = posMtx[1][0] = posMtx[1][2] = posMtx[2][0] = posMtx[2][1] = 0.0f;
|
||||||
|
#if TARGET_PC
|
||||||
|
submit_particle_quad(work, ctx, posMtx, jpa_dl, sizeof(jpa_dl));
|
||||||
|
#else
|
||||||
GXLoadPosMtxImm(posMtx, GX_PNMTX0);
|
GXLoadPosMtxImm(posMtx, GX_PNMTX0);
|
||||||
p_prj[work->mPrjType](work, posMtx);
|
p_prj[work->mPrjType](work, posMtx);
|
||||||
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPADrawRotBillboard(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPADrawRotBillboard(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -517,12 +640,16 @@ void JPADrawRotBillboard(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
posMtx[2][2] = 1.0f;
|
posMtx[2][2] = 1.0f;
|
||||||
posMtx[2][3] = pos.z;
|
posMtx[2][3] = pos.z;
|
||||||
posMtx[0][2] = posMtx[1][2] = posMtx[2][0] = posMtx[2][1] = 0.0f;
|
posMtx[0][2] = posMtx[1][2] = posMtx[2][0] = posMtx[2][1] = 0.0f;
|
||||||
|
#if TARGET_PC
|
||||||
|
submit_particle_quad(work, ctx, posMtx, jpa_dl, sizeof(jpa_dl));
|
||||||
|
#else
|
||||||
GXLoadPosMtxImm(posMtx, GX_PNMTX0);
|
GXLoadPosMtxImm(posMtx, GX_PNMTX0);
|
||||||
p_prj[work->mPrjType](work, posMtx);
|
p_prj[work->mPrjType](work, posMtx);
|
||||||
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPADrawYBillboard(JPAEmitterWorkData* work, JPABaseParticle* param_1) {
|
void JPADrawYBillboard(JPAEmitterWorkData* work, JPABaseParticle* param_1 JPA_DRAW_CTX_PARAM) {
|
||||||
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -542,12 +669,16 @@ void JPADrawYBillboard(JPAEmitterWorkData* work, JPABaseParticle* param_1) {
|
|||||||
local_38[2][2] = work->mYBBCamMtx[2][2];
|
local_38[2][2] = work->mYBBCamMtx[2][2];
|
||||||
local_38[2][3] = local_48.z;
|
local_38[2][3] = local_48.z;
|
||||||
local_38[0][1] = local_38[0][2] = local_38[1][0] = local_38[2][0] = 0.0f;
|
local_38[0][1] = local_38[0][2] = local_38[1][0] = local_38[2][0] = 0.0f;
|
||||||
|
#if TARGET_PC
|
||||||
|
submit_particle_quad(work, ctx, local_38, jpa_dl, sizeof(jpa_dl));
|
||||||
|
#else
|
||||||
GXLoadPosMtxImm(local_38, GX_PNMTX0);
|
GXLoadPosMtxImm(local_38, GX_PNMTX0);
|
||||||
p_prj[work->mPrjType](work, local_38);
|
p_prj[work->mPrjType](work, local_38);
|
||||||
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPADrawRotYBillboard(JPAEmitterWorkData* work, JPABaseParticle* param_1) {
|
void JPADrawRotYBillboard(JPAEmitterWorkData* work, JPABaseParticle* param_1 JPA_DRAW_CTX_PARAM) {
|
||||||
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -576,9 +707,13 @@ void JPADrawRotYBillboard(JPAEmitterWorkData* work, JPABaseParticle* param_1) {
|
|||||||
local_38[2][1] = local_94 * fVar1;
|
local_38[2][1] = local_94 * fVar1;
|
||||||
local_38[2][2] = local_90;
|
local_38[2][2] = local_90;
|
||||||
local_38[2][3] = local_48.z;
|
local_38[2][3] = local_48.z;
|
||||||
|
#if TARGET_PC
|
||||||
|
submit_particle_quad(work, ctx, local_38, jpa_dl, sizeof(jpa_dl));
|
||||||
|
#else
|
||||||
GXLoadPosMtxImm(local_38, GX_PNMTX0);
|
GXLoadPosMtxImm(local_38, GX_PNMTX0);
|
||||||
p_prj[work->mPrjType](work, local_38);
|
p_prj[work->mPrjType](work, local_38);
|
||||||
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void dirTypeVel(JPAEmitterWorkData const* work, JPABaseParticle const* param_1,
|
void dirTypeVel(JPAEmitterWorkData const* work, JPABaseParticle const* param_1,
|
||||||
@@ -741,6 +876,88 @@ static u8* p_dl[2] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
|
static bool make_direction_mtx(JPAEmitterWorkData* work, JPABaseParticle* ptcl, Mtx posMtx) {
|
||||||
|
JGeometry::TVec3<f32> axisY;
|
||||||
|
JGeometry::TVec3<f32> axisZ;
|
||||||
|
JGeometry::TVec3<f32> baseAxis(ptcl->mBaseAxis);
|
||||||
|
p_direction[work->mDirType](work, ptcl, &axisY);
|
||||||
|
if (axisY.isZero()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
axisY.normalize();
|
||||||
|
axisZ.cross(baseAxis, axisY);
|
||||||
|
if (axisZ.isZero()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
axisZ.normalize();
|
||||||
|
baseAxis.cross(axisY, axisZ);
|
||||||
|
baseAxis.normalize();
|
||||||
|
ptcl->mBaseAxis.set(baseAxis);
|
||||||
|
|
||||||
|
f32 scaleX = work->mGlobalPtclScl.x * ptcl->mParticleScaleX;
|
||||||
|
f32 scaleY = work->mGlobalPtclScl.y * ptcl->mParticleScaleY;
|
||||||
|
posMtx[0][0] = baseAxis.x;
|
||||||
|
posMtx[0][1] = axisY.x;
|
||||||
|
posMtx[0][2] = axisZ.x;
|
||||||
|
posMtx[0][3] = ptcl->mPosition.x;
|
||||||
|
posMtx[1][0] = baseAxis.y;
|
||||||
|
posMtx[1][1] = axisY.y;
|
||||||
|
posMtx[1][2] = axisZ.y;
|
||||||
|
posMtx[1][3] = ptcl->mPosition.y;
|
||||||
|
posMtx[2][0] = baseAxis.z;
|
||||||
|
posMtx[2][1] = axisY.z;
|
||||||
|
posMtx[2][2] = axisZ.z;
|
||||||
|
posMtx[2][3] = ptcl->mPosition.z;
|
||||||
|
p_plane[work->mPlaneType](posMtx, scaleX, scaleY);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool make_rot_direction_mtx(JPAEmitterWorkData* work, JPABaseParticle* ptcl, Mtx posMtx) {
|
||||||
|
f32 sinRot = JMASSin(ptcl->mRotateAngle);
|
||||||
|
f32 cosRot = JMASCos(ptcl->mRotateAngle);
|
||||||
|
JGeometry::TVec3<f32> axisY;
|
||||||
|
JGeometry::TVec3<f32> axisZ;
|
||||||
|
JGeometry::TVec3<f32> baseAxis(ptcl->mBaseAxis);
|
||||||
|
p_direction[work->mDirType](work, ptcl, &axisY);
|
||||||
|
if (axisY.isZero()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
axisY.normalize();
|
||||||
|
axisZ.cross(baseAxis, axisY);
|
||||||
|
if (axisZ.isZero()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
axisZ.normalize();
|
||||||
|
baseAxis.cross(axisY, axisZ);
|
||||||
|
baseAxis.normalize();
|
||||||
|
ptcl->mBaseAxis.set(baseAxis);
|
||||||
|
|
||||||
|
f32 scaleX = work->mGlobalPtclScl.x * ptcl->mParticleScaleX;
|
||||||
|
f32 scaleY = work->mGlobalPtclScl.y * ptcl->mParticleScaleY;
|
||||||
|
Mtx rotMtx;
|
||||||
|
Mtx dirMtx;
|
||||||
|
p_rot[work->mRotType](sinRot, cosRot, rotMtx);
|
||||||
|
p_plane[work->mPlaneType](rotMtx, scaleX, scaleY);
|
||||||
|
dirMtx[0][0] = baseAxis.x;
|
||||||
|
dirMtx[0][1] = axisY.x;
|
||||||
|
dirMtx[0][2] = axisZ.x;
|
||||||
|
dirMtx[0][3] = ptcl->mPosition.x;
|
||||||
|
dirMtx[1][0] = baseAxis.y;
|
||||||
|
dirMtx[1][1] = axisY.y;
|
||||||
|
dirMtx[1][2] = axisZ.y;
|
||||||
|
dirMtx[1][3] = ptcl->mPosition.y;
|
||||||
|
dirMtx[2][0] = baseAxis.z;
|
||||||
|
dirMtx[2][1] = axisY.z;
|
||||||
|
dirMtx[2][2] = axisZ.z;
|
||||||
|
dirMtx[2][3] = ptcl->mPosition.z;
|
||||||
|
MTXConcat(dirMtx, rotMtx, posMtx);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
void JPAInterpDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPAInterpDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
||||||
JGeometry::TVec3<f32> axisY;
|
JGeometry::TVec3<f32> axisY;
|
||||||
JGeometry::TVec3<f32> axisZ;
|
JGeometry::TVec3<f32> axisZ;
|
||||||
@@ -823,7 +1040,7 @@ void JPAInterpRotDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void JPADrawDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPADrawDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -832,8 +1049,12 @@ void JPADrawDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
|
|
||||||
Mtx posMtx;
|
Mtx posMtx;
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
if (!dusk::frame_interp::lookup_replacement(ptcl, posMtx))
|
if (!dusk::frame_interp::lookup_replacement(ptcl, posMtx) &&
|
||||||
#endif
|
!make_direction_mtx(work, ptcl, posMtx))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#else
|
||||||
{
|
{
|
||||||
JGeometry::TVec3<f32> axisY;
|
JGeometry::TVec3<f32> axisY;
|
||||||
JGeometry::TVec3<f32> axisZ;
|
JGeometry::TVec3<f32> axisZ;
|
||||||
@@ -869,14 +1090,19 @@ void JPADrawDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
posMtx[2][3] = ptcl->mPosition.z;
|
posMtx[2][3] = ptcl->mPosition.z;
|
||||||
p_plane[work->mPlaneType](posMtx, scaleX, scaleY);
|
p_plane[work->mPlaneType](posMtx, scaleX, scaleY);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
MTXConcat(work->mPosCamMtx, posMtx, posMtx);
|
MTXConcat(work->mPosCamMtx, posMtx, posMtx);
|
||||||
|
#if TARGET_PC
|
||||||
|
submit_particle_quad(work, ctx, posMtx, p_dl[work->mDLType], sizeof(jpa_dl));
|
||||||
|
#else
|
||||||
GXLoadPosMtxImm(posMtx, GX_PNMTX0);
|
GXLoadPosMtxImm(posMtx, GX_PNMTX0);
|
||||||
p_prj[work->mPrjType](work, posMtx);
|
p_prj[work->mPrjType](work, posMtx);
|
||||||
GXCallDisplayList(p_dl[work->mDLType], sizeof(jpa_dl));
|
GXCallDisplayList(p_dl[work->mDLType], sizeof(jpa_dl));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPADrawRotDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPADrawRotDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -886,8 +1112,12 @@ void JPADrawRotDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
Mtx mtx1;
|
Mtx mtx1;
|
||||||
Mtx mtx2;
|
Mtx mtx2;
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
if (!dusk::frame_interp::lookup_replacement(ptcl, mtx1))
|
if (!dusk::frame_interp::lookup_replacement(ptcl, mtx1) &&
|
||||||
#endif
|
!make_rot_direction_mtx(work, ptcl, mtx1))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#else
|
||||||
{
|
{
|
||||||
f32 sinRot = JMASSin(ptcl->mRotateAngle);
|
f32 sinRot = JMASSin(ptcl->mRotateAngle);
|
||||||
f32 cosRot = JMASCos(ptcl->mRotateAngle);
|
f32 cosRot = JMASCos(ptcl->mRotateAngle);
|
||||||
@@ -927,13 +1157,18 @@ void JPADrawRotDirection(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
mtx2[2][3] = ptcl->mPosition.z;
|
mtx2[2][3] = ptcl->mPosition.z;
|
||||||
MTXConcat(mtx2, mtx1, mtx1);
|
MTXConcat(mtx2, mtx1, mtx1);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
MTXConcat(work->mPosCamMtx, mtx1, mtx2);
|
MTXConcat(work->mPosCamMtx, mtx1, mtx2);
|
||||||
|
#if TARGET_PC
|
||||||
|
submit_particle_quad(work, ctx, mtx2, p_dl[work->mDLType], sizeof(jpa_dl));
|
||||||
|
#else
|
||||||
GXLoadPosMtxImm(mtx2, GX_PNMTX0);
|
GXLoadPosMtxImm(mtx2, GX_PNMTX0);
|
||||||
p_prj[work->mPrjType](work, mtx2);
|
p_prj[work->mPrjType](work, mtx2);
|
||||||
GXCallDisplayList(p_dl[work->mDLType], sizeof(jpa_dl));
|
GXCallDisplayList(p_dl[work->mDLType], sizeof(jpa_dl));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPADrawDBillboard(JPAEmitterWorkData* param_0, JPABaseParticle* param_1) {
|
void JPADrawDBillboard(JPAEmitterWorkData* param_0, JPABaseParticle* param_1 JPA_DRAW_CTX_PARAM) {
|
||||||
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -970,7 +1205,7 @@ void JPADrawDBillboard(JPAEmitterWorkData* param_0, JPABaseParticle* param_1) {
|
|||||||
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
GXCallDisplayList(jpa_dl, sizeof(jpa_dl));
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPADrawRotation(JPAEmitterWorkData* param_0, JPABaseParticle* param_1) {
|
void JPADrawRotation(JPAEmitterWorkData* param_0, JPABaseParticle* param_1 JPA_DRAW_CTX_PARAM) {
|
||||||
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -988,12 +1223,16 @@ void JPADrawRotation(JPAEmitterWorkData* param_0, JPABaseParticle* param_1) {
|
|||||||
auStack_88[1][3] = param_1->mPosition.y;
|
auStack_88[1][3] = param_1->mPosition.y;
|
||||||
auStack_88[2][3] = param_1->mPosition.z;
|
auStack_88[2][3] = param_1->mPosition.z;
|
||||||
MTXConcat(param_0->mPosCamMtx, auStack_88, auStack_88);
|
MTXConcat(param_0->mPosCamMtx, auStack_88, auStack_88);
|
||||||
|
#if TARGET_PC
|
||||||
|
submit_particle_quad(param_0, ctx, auStack_88, p_dl[param_0->mDLType], sizeof(jpa_dl));
|
||||||
|
#else
|
||||||
GXLoadPosMtxImm(auStack_88, 0);
|
GXLoadPosMtxImm(auStack_88, 0);
|
||||||
p_prj[param_0->mPrjType](param_0, auStack_88);
|
p_prj[param_0->mPrjType](param_0, auStack_88);
|
||||||
GXCallDisplayList(p_dl[param_0->mDLType], sizeof(jpa_dl));
|
GXCallDisplayList(p_dl[param_0->mDLType], sizeof(jpa_dl));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPADrawPoint(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPADrawPoint(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
if (ptcl->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1010,7 +1249,7 @@ void JPADrawPoint(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
|||||||
GXSetVtxDesc(GX_VA_TEX0, GX_INDEX8);
|
GXSetVtxDesc(GX_VA_TEX0, GX_INDEX8);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPADrawLine(JPAEmitterWorkData* param_0, JPABaseParticle* param_1) {
|
void JPADrawLine(JPAEmitterWorkData* param_0, JPABaseParticle* param_1 JPA_DRAW_CTX_PARAM) {
|
||||||
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
if (param_1->checkStatus(JPAPtclStts_Invisible)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1086,7 +1325,7 @@ void JPADrawStripe(JPAEmitterWorkData* param_0) {
|
|||||||
GXSetVtxDesc(GX_VA_POS, GX_DIRECT);
|
GXSetVtxDesc(GX_VA_POS, GX_DIRECT);
|
||||||
GXSetVtxDesc(GX_VA_TEX0, GX_DIRECT);
|
GXSetVtxDesc(GX_VA_TEX0, GX_DIRECT);
|
||||||
GXBegin(GX_TRIANGLESTRIP, GX_VTXFMT1, ptcl_num << 1);
|
GXBegin(GX_TRIANGLESTRIP, GX_VTXFMT1, ptcl_num << 1);
|
||||||
for (JPANode<JPABaseParticle>* node = startNode; node != param_0->mpAlivePtcl->getEnd();
|
for (JPANode<JPABaseParticle>* node = startNode; node != param_0->mpAlivePtcl->getEnd();
|
||||||
node = node_func(node), coord += step) {
|
node = node_func(node), coord += step) {
|
||||||
param_0->mpCurNode = node;
|
param_0->mpCurNode = node;
|
||||||
JPABaseParticle* particle = node->getObject();
|
JPABaseParticle* particle = node->getObject();
|
||||||
@@ -1111,7 +1350,7 @@ void JPADrawStripe(JPAEmitterWorkData* param_0) {
|
|||||||
}
|
}
|
||||||
particle->mBaseAxis.cross(local_f8, local_104);
|
particle->mBaseAxis.cross(local_f8, local_104);
|
||||||
particle->mBaseAxis.normalize();
|
particle->mBaseAxis.normalize();
|
||||||
|
|
||||||
local_c8[0][0] = local_104.x;
|
local_c8[0][0] = local_104.x;
|
||||||
local_c8[0][1] = local_f8.x;
|
local_c8[0][1] = local_f8.x;
|
||||||
local_c8[0][2] = particle->mBaseAxis.x;
|
local_c8[0][2] = particle->mBaseAxis.x;
|
||||||
@@ -1177,7 +1416,7 @@ void JPADrawStripeX(JPAEmitterWorkData* param_0) {
|
|||||||
GXSetVtxDesc(GX_VA_POS, GX_DIRECT);
|
GXSetVtxDesc(GX_VA_POS, GX_DIRECT);
|
||||||
GXSetVtxDesc(GX_VA_TEX0, GX_DIRECT);
|
GXSetVtxDesc(GX_VA_TEX0, GX_DIRECT);
|
||||||
GXBegin(GX_TRIANGLESTRIP, GX_VTXFMT1, ptcl_num << 1);
|
GXBegin(GX_TRIANGLESTRIP, GX_VTXFMT1, ptcl_num << 1);
|
||||||
for (JPANode<JPABaseParticle>* node = startNode; node != param_0->mpAlivePtcl->getEnd();
|
for (JPANode<JPABaseParticle>* node = startNode; node != param_0->mpAlivePtcl->getEnd();
|
||||||
node = node_func(node), coord += step) {
|
node = node_func(node), coord += step) {
|
||||||
param_0->mpCurNode = node;
|
param_0->mpCurNode = node;
|
||||||
JPABaseParticle* particle = node->getObject();
|
JPABaseParticle* particle = node->getObject();
|
||||||
@@ -1202,7 +1441,7 @@ void JPADrawStripeX(JPAEmitterWorkData* param_0) {
|
|||||||
}
|
}
|
||||||
particle->mBaseAxis.cross(local_c0, local_cc);
|
particle->mBaseAxis.cross(local_c0, local_cc);
|
||||||
particle->mBaseAxis.normalize();
|
particle->mBaseAxis.normalize();
|
||||||
|
|
||||||
local_90[0][0] = local_cc.x;
|
local_90[0][0] = local_cc.x;
|
||||||
local_90[0][1] = local_c0.x;
|
local_90[0][1] = local_c0.x;
|
||||||
local_90[0][2] = particle->mBaseAxis.x;
|
local_90[0][2] = particle->mBaseAxis.x;
|
||||||
@@ -1227,7 +1466,7 @@ void JPADrawStripeX(JPAEmitterWorkData* param_0) {
|
|||||||
|
|
||||||
coord = start_coord;
|
coord = start_coord;
|
||||||
GXBegin(GX_TRIANGLESTRIP, GX_VTXFMT1, ptcl_num << 1);
|
GXBegin(GX_TRIANGLESTRIP, GX_VTXFMT1, ptcl_num << 1);
|
||||||
for (JPANode<JPABaseParticle>* node = startNode; node != param_0->mpAlivePtcl->getEnd();
|
for (JPANode<JPABaseParticle>* node = startNode; node != param_0->mpAlivePtcl->getEnd();
|
||||||
node = node_func(node), coord += step) {
|
node = node_func(node), coord += step) {
|
||||||
param_0->mpCurNode = node;
|
param_0->mpCurNode = node;
|
||||||
JPABaseParticle* particle = node->getObject();
|
JPABaseParticle* particle = node->getObject();
|
||||||
@@ -1252,7 +1491,7 @@ void JPADrawStripeX(JPAEmitterWorkData* param_0) {
|
|||||||
}
|
}
|
||||||
particle->mBaseAxis.cross(local_c0, local_cc);
|
particle->mBaseAxis.cross(local_c0, local_cc);
|
||||||
particle->mBaseAxis.normalize();
|
particle->mBaseAxis.normalize();
|
||||||
|
|
||||||
local_90[0][0] = local_cc.x;
|
local_90[0][0] = local_cc.x;
|
||||||
local_90[0][1] = local_c0.x;
|
local_90[0][1] = local_c0.x;
|
||||||
local_90[0][2] = particle->mBaseAxis.x;
|
local_90[0][2] = particle->mBaseAxis.x;
|
||||||
@@ -1289,7 +1528,7 @@ void JPADrawEmitterCallBackB(JPAEmitterWorkData* work) {
|
|||||||
emtr->mpEmtrCallBack->draw(emtr);
|
emtr->mpEmtrCallBack->draw(emtr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JPADrawParticleCallBack(JPAEmitterWorkData* work, JPABaseParticle* ptcl) {
|
void JPADrawParticleCallBack(JPAEmitterWorkData* work, JPABaseParticle* ptcl JPA_DRAW_CTX_PARAM) {
|
||||||
JPABaseEmitter* emtr = work->mpEmtr;
|
JPABaseEmitter* emtr = work->mpEmtr;
|
||||||
if (emtr->mpPtclCallBack == NULL) {
|
if (emtr->mpPtclCallBack == NULL) {
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -206,8 +206,7 @@ void JPABaseParticle::init_c(JPAEmitterWorkData* work, JPABaseParticle* parent)
|
|||||||
|
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
void JPABaseParticle::interp(JPAEmitterWorkData* work, void const* drawFunc) {
|
void JPABaseParticle::interp(JPAEmitterWorkData* work, void const* drawFunc) {
|
||||||
static bool enable = false;
|
if (!dusk::frame_interp::is_enabled())
|
||||||
if (!enable)
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// don't interpolate the first frame
|
// don't interpolate the first frame
|
||||||
|
|||||||
@@ -18,9 +18,21 @@
|
|||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "tracy/Tracy.hpp"
|
#include "tracy/Tracy.hpp"
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
#define JPA_DRAW_CTX_ARG , &ctx
|
||||||
|
#else
|
||||||
|
#define JPA_DRAW_CTX_ARG
|
||||||
|
#endif
|
||||||
|
|
||||||
JPAResource::JPAResource() {
|
JPAResource::JPAResource() {
|
||||||
mpCalcEmitterFuncList = mpDrawEmitterFuncList = mpDrawEmitterChildFuncList = NULL;
|
mpCalcEmitterFuncList = mpDrawEmitterFuncList = mpDrawEmitterChildFuncList = NULL;
|
||||||
|
#if TARGET_PC
|
||||||
|
mpCalcParticleFuncList = mpCalcParticleChildFuncList = NULL;
|
||||||
|
mpDrawParticleFuncList = mpDrawParticleChildFuncList = NULL;
|
||||||
|
mBatchInfo = {};
|
||||||
|
#else
|
||||||
mpCalcParticleFuncList = mpDrawParticleFuncList = mpCalcParticleChildFuncList = mpDrawParticleChildFuncList = NULL;
|
mpCalcParticleFuncList = mpDrawParticleFuncList = mpCalcParticleChildFuncList = mpDrawParticleChildFuncList = NULL;
|
||||||
|
#endif
|
||||||
pBsp = NULL;
|
pBsp = NULL;
|
||||||
pEsp = NULL;
|
pEsp = NULL;
|
||||||
pCsp = NULL;
|
pCsp = NULL;
|
||||||
@@ -61,6 +73,60 @@ static u8 jpa_crd[32] ATTRIBUTE_ALIGN(32) = {
|
|||||||
0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x00, 0x02, 0x00, 0x00, 0x02, 0x00, 0x02, 0x02, 0x00, 0x02,
|
0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x00, 0x02, 0x00, 0x00, 0x02, 0x00, 0x02, 0x02, 0x00, 0x02,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
void JPAResource::initBatchInfo() {
|
||||||
|
mBatchInfo = {};
|
||||||
|
|
||||||
|
bool hasDrawFunc = false;
|
||||||
|
for (int i = 0; i < mpDrawParticleFuncListNum; i++) {
|
||||||
|
DrawParticleFunc func = mpDrawParticleFuncList[i];
|
||||||
|
if (func == JPADrawBillboard || func == JPADrawRotBillboard ||
|
||||||
|
func == JPADrawYBillboard || func == JPADrawRotYBillboard ||
|
||||||
|
func == JPADrawDirection || func == JPADrawRotDirection || func == JPADrawRotation)
|
||||||
|
{
|
||||||
|
hasDrawFunc = true;
|
||||||
|
} else if (func == JPADrawParticleCallBack) {
|
||||||
|
// Batchable only for emitters without a particle callback; checked per draw
|
||||||
|
} else if (func == JPALoadCalcTexCrdMtxAnm) {
|
||||||
|
mBatchInfo.hasPtclTexMtx = true;
|
||||||
|
} else if (func == JPARegistAlpha || func == JPARegistPrmAlpha ||
|
||||||
|
func == JPARegistPrmAlphaEnv || func == JPARegistAlphaEnv ||
|
||||||
|
func == static_cast<DrawParticleFunc>(JPARegistEnv)) // overloaded
|
||||||
|
{
|
||||||
|
mBatchInfo.hasPtclColor = true;
|
||||||
|
} else {
|
||||||
|
// JPADrawPoint, JPADrawLine, JPADrawDBillboard, JPALoadTexAnm,
|
||||||
|
// JPASetPointSize, JPASetLineWidth
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!hasDrawFunc) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Template array offsets, same math as setPTev
|
||||||
|
int base_plane_type = (pBsp->getType() == 3 || pBsp->getType() == 7) ?
|
||||||
|
pBsp->getBasePlaneType() : 0;
|
||||||
|
int center_offset = pEsp != nullptr ? (pEsp->getScaleCenterX() + 3 * pEsp->getScaleCenterY()) * 0xC : 0x30;
|
||||||
|
const s8* pos = reinterpret_cast<const s8*>(jpa_pos) + center_offset + base_plane_type * 0x6C;
|
||||||
|
const s8* crd = reinterpret_cast<const s8*>(jpa_crd) + (pBsp->getTilingS() + 2 * pBsp->getTilingT()) * 8;
|
||||||
|
|
||||||
|
bool cross = pBsp->getType() == 4 || pBsp->getType() == 8;
|
||||||
|
mBatchInfo.vtxCount = cross ? 8 : 4;
|
||||||
|
for (int i = 0; i < mBatchInfo.vtxCount; i++) {
|
||||||
|
int posIdx = i < 4 ? i : 72 + (i - 4);
|
||||||
|
int crdIdx = i & 3;
|
||||||
|
mBatchInfo.vtxPos[i][0] = pos[posIdx * 3 + 0];
|
||||||
|
mBatchInfo.vtxPos[i][1] = pos[posIdx * 3 + 1];
|
||||||
|
mBatchInfo.vtxPos[i][2] = pos[posIdx * 3 + 2];
|
||||||
|
mBatchInfo.vtxUv[i][0] = crd[crdIdx * 2 + 0];
|
||||||
|
mBatchInfo.vtxUv[i][1] = crd[crdIdx * 2 + 1];
|
||||||
|
}
|
||||||
|
|
||||||
|
mBatchInfo.supported = true;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void JPAResource::init(JKRHeap* heap) {
|
void JPAResource::init(JKRHeap* heap) {
|
||||||
BOOL is_glbl_clr_anm = pBsp->isGlblClrAnm();
|
BOOL is_glbl_clr_anm = pBsp->isGlblClrAnm();
|
||||||
BOOL is_glbl_tex_anm = pBsp->isGlblTexAnm();
|
BOOL is_glbl_tex_anm = pBsp->isGlblTexAnm();
|
||||||
@@ -525,7 +591,10 @@ void JPAResource::init(JKRHeap* heap) {
|
|||||||
|
|
||||||
if (mpDrawParticleFuncListNum != 0) {
|
if (mpDrawParticleFuncListNum != 0) {
|
||||||
mpDrawParticleFuncList =
|
mpDrawParticleFuncList =
|
||||||
(ParticleFunc*)JKRAllocFromHeap(heap, mpDrawParticleFuncListNum * sizeof(ParticleFunc), alignof(ParticleFunc));
|
(DrawParticleFunc*)JKRAllocFromHeap(
|
||||||
|
heap,
|
||||||
|
mpDrawParticleFuncListNum * sizeof(DrawParticleFunc),
|
||||||
|
alignof(DrawParticleFunc));
|
||||||
}
|
}
|
||||||
|
|
||||||
func_no = 0;
|
func_no = 0;
|
||||||
@@ -635,7 +704,10 @@ void JPAResource::init(JKRHeap* heap) {
|
|||||||
|
|
||||||
if (mpDrawParticleChildFuncListNum != 0) {
|
if (mpDrawParticleChildFuncListNum != 0) {
|
||||||
mpDrawParticleChildFuncList =
|
mpDrawParticleChildFuncList =
|
||||||
(ParticleFunc*)JKRAllocFromHeap(heap, mpDrawParticleChildFuncListNum * sizeof(ParticleFunc), sizeof(EmitterFunc));
|
(DrawParticleFunc*)JKRAllocFromHeap(
|
||||||
|
heap,
|
||||||
|
mpDrawParticleChildFuncListNum * sizeof(DrawParticleFunc),
|
||||||
|
alignof(DrawParticleFunc));
|
||||||
}
|
}
|
||||||
|
|
||||||
func_no = 0;
|
func_no = 0;
|
||||||
@@ -699,6 +771,10 @@ void JPAResource::init(JKRHeap* heap) {
|
|||||||
mpDrawParticleChildFuncList[func_no] = &JPARegistPrmAlphaEnv;
|
mpDrawParticleChildFuncList[func_no] = &JPARegistPrmAlphaEnv;
|
||||||
func_no++;
|
func_no++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
initBatchInfo();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
bool JPAResource::calc(JPAEmitterWorkData* work, JPABaseEmitter* emtr) {
|
bool JPAResource::calc(JPAEmitterWorkData* work, JPABaseEmitter* emtr) {
|
||||||
@@ -761,6 +837,15 @@ bool JPAResource::calc(JPAEmitterWorkData* work, JPABaseEmitter* emtr) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef TARGET_PC
|
||||||
|
if (((pBsp && pBsp->getDirType() == 3) || (pCsp && pCsp->getDirType() == 3)) &&
|
||||||
|
dusk::frame_interp::is_enabled())
|
||||||
|
{
|
||||||
|
// ensure mGlobalEmtrDir is valid
|
||||||
|
calcWorkData_d(work);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
JPANode<JPABaseParticle>* next = NULL;
|
JPANode<JPABaseParticle>* next = NULL;
|
||||||
for (JPANode<JPABaseParticle>* node = emtr->mAlivePtclBase.getFirst(); node != emtr->mAlivePtclBase.getEnd(); node = next) {
|
for (JPANode<JPABaseParticle>* node = emtr->mAlivePtclBase.getFirst(); node != emtr->mAlivePtclBase.getEnd(); node = next) {
|
||||||
next = node->getNext();
|
next = node->getNext();
|
||||||
@@ -799,6 +884,183 @@ void JPAResource::draw(JPAEmitterWorkData* work, JPABaseEmitter* emtr) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
static GXTevAlphaArg to_vtx_alpha_arg(GXTevAlphaArg arg) {
|
||||||
|
return arg == GX_CA_A0 ? GX_CA_RASA : arg;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void batch_set_tev_op(GXTevStageID stage) {
|
||||||
|
GXSetTevColorOp(stage, GX_TEV_ADD, GX_TB_ZERO, GX_CS_SCALE_1, GX_TRUE, GX_TEVPREV);
|
||||||
|
GXSetTevAlphaOp(stage, GX_TEV_ADD, GX_TB_ZERO, GX_CS_SCALE_1, GX_TRUE, GX_TEVPREV);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void batch_setup_tev(JPAEmitterWorkData* work, bool useClr1) {
|
||||||
|
JPABaseShape* shape = work->mpRes->getBsp();
|
||||||
|
JPAExTexShape* ets = work->mpRes->getEts();
|
||||||
|
bool useIndirect = ets != nullptr && ets->isUseIndirect();
|
||||||
|
|
||||||
|
// JPAEmitterManager::draw configures both channels to pass vertex color through
|
||||||
|
GXSetNumChans(useClr1 ? 2 : 1);
|
||||||
|
|
||||||
|
const GXTevAlphaArg* alphaArg = shape->getTevAlphaArg();
|
||||||
|
GXSetTevOrder(GX_TEVSTAGE0, GX_TEXCOORD0, GX_TEXMAP0, GX_COLOR0A0);
|
||||||
|
GXSetTevAlphaIn(GX_TEVSTAGE0, to_vtx_alpha_arg(alphaArg[0]), to_vtx_alpha_arg(alphaArg[1]),
|
||||||
|
to_vtx_alpha_arg(alphaArg[2]), to_vtx_alpha_arg(alphaArg[3]));
|
||||||
|
batch_set_tev_op(GX_TEVSTAGE0);
|
||||||
|
if (!useIndirect) {
|
||||||
|
GXSetTevDirect(GX_TEVSTAGE0);
|
||||||
|
}
|
||||||
|
GXTevStageID nextStage = GX_TEVSTAGE1;
|
||||||
|
|
||||||
|
switch (shape->getTevColorArgSel()) {
|
||||||
|
case 0: // TEXC
|
||||||
|
GXSetTevColorIn(GX_TEVSTAGE0, GX_CC_ZERO, GX_CC_TEXC, GX_CC_ONE, GX_CC_ZERO);
|
||||||
|
break;
|
||||||
|
case 1: // C0 * TEXC
|
||||||
|
GXSetTevColorIn(GX_TEVSTAGE0, GX_CC_ZERO, GX_CC_RASC, GX_CC_TEXC, GX_CC_ZERO);
|
||||||
|
break;
|
||||||
|
case 2: // lerp(C0, 1, TEXC)
|
||||||
|
GXSetTevColorIn(GX_TEVSTAGE0, GX_CC_RASC, GX_CC_ONE, GX_CC_TEXC, GX_CC_ZERO);
|
||||||
|
break;
|
||||||
|
case 3: // lerp(C1, C0, TEXC) = C0 * TEXC (stage 0) + C1 * (1 - TEXC) (stage 1)
|
||||||
|
GXSetTevColorIn(GX_TEVSTAGE0, GX_CC_ZERO, GX_CC_RASC, GX_CC_TEXC, GX_CC_ZERO);
|
||||||
|
GXSetTevOrder(nextStage, GX_TEXCOORD0, GX_TEXMAP0, GX_COLOR1A1);
|
||||||
|
GXSetTevColorIn(nextStage, GX_CC_RASC, GX_CC_ZERO, GX_CC_TEXC, GX_CC_CPREV);
|
||||||
|
GXSetTevAlphaIn(nextStage, GX_CA_ZERO, GX_CA_ZERO, GX_CA_ZERO, GX_CA_APREV);
|
||||||
|
batch_set_tev_op(nextStage);
|
||||||
|
GXSetTevDirect(nextStage);
|
||||||
|
nextStage = static_cast<GXTevStageID>(nextStage + 1);
|
||||||
|
break;
|
||||||
|
case 4: // TEXC * C0 + C1: C0 * TEXC (stage 0), + C1 (stage 1)
|
||||||
|
GXSetTevColorIn(GX_TEVSTAGE0, GX_CC_ZERO, GX_CC_RASC, GX_CC_TEXC, GX_CC_ZERO);
|
||||||
|
GXSetTevOrder(nextStage, GX_TEXCOORD0, GX_TEXMAP0, GX_COLOR1A1);
|
||||||
|
GXSetTevColorIn(nextStage, GX_CC_CPREV, GX_CC_ZERO, GX_CC_ZERO, GX_CC_RASC);
|
||||||
|
GXSetTevAlphaIn(nextStage, GX_CA_ZERO, GX_CA_ZERO, GX_CA_ZERO, GX_CA_APREV);
|
||||||
|
batch_set_tev_op(nextStage);
|
||||||
|
GXSetTevDirect(nextStage);
|
||||||
|
nextStage = static_cast<GXTevStageID>(nextStage + 1);
|
||||||
|
break;
|
||||||
|
case 5: // C0
|
||||||
|
GXSetTevColorIn(GX_TEVSTAGE0, GX_CC_ZERO, GX_CC_ZERO, GX_CC_ZERO, GX_CC_RASC);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ets != nullptr && ets->isUseSecTex()) {
|
||||||
|
// Mirrors setPTev's secondary texture stage, at the next free stage
|
||||||
|
GXTexCoordID texCoord = useIndirect ? GX_TEXCOORD2 : GX_TEXCOORD1;
|
||||||
|
GXSetTevOrder(nextStage, texCoord, GX_TEXMAP3, GX_COLOR_NULL);
|
||||||
|
GXSetTevColorIn(nextStage, GX_CC_ZERO, GX_CC_TEXC, GX_CC_CPREV, GX_CC_ZERO);
|
||||||
|
GXSetTevAlphaIn(nextStage, GX_CA_ZERO, GX_CA_TEXA, GX_CA_APREV, GX_CA_ZERO);
|
||||||
|
batch_set_tev_op(nextStage);
|
||||||
|
GXSetTevDirect(nextStage);
|
||||||
|
nextStage = static_cast<GXTevStageID>(nextStage + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
GXSetNumTevStages(nextStage);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void batch_setup_vtx_desc(bool useClr0, bool useClr1) {
|
||||||
|
static Mtx identityMtx = {
|
||||||
|
{1.0f, 0.0f, 0.0f, 0.0f},
|
||||||
|
{0.0f, 1.0f, 0.0f, 0.0f},
|
||||||
|
{0.0f, 0.0f, 1.0f, 0.0f},
|
||||||
|
};
|
||||||
|
|
||||||
|
GXLoadPosMtxImm(identityMtx, GX_PNMTX0);
|
||||||
|
GXSetCurrentMtx(GX_PNMTX0);
|
||||||
|
GXClearVtxDesc();
|
||||||
|
GXSetVtxDesc(GX_VA_POS, GX_DIRECT);
|
||||||
|
if (useClr0) {
|
||||||
|
GXSetVtxDesc(GX_VA_CLR0, GX_DIRECT);
|
||||||
|
}
|
||||||
|
if (useClr1) {
|
||||||
|
GXSetVtxDesc(GX_VA_CLR1, GX_DIRECT);
|
||||||
|
}
|
||||||
|
GXSetVtxDesc(GX_VA_TEX0, GX_DIRECT);
|
||||||
|
GXSetVtxAttrFmt(GX_VTXFMT1, GX_VA_POS, GX_POS_XYZ, GX_F32, 0);
|
||||||
|
if (useClr0) {
|
||||||
|
GXSetVtxAttrFmt(GX_VTXFMT1, GX_VA_CLR0, GX_CLR_RGBA, GX_RGBA8, 0);
|
||||||
|
}
|
||||||
|
if (useClr1) {
|
||||||
|
GXSetVtxAttrFmt(GX_VTXFMT1, GX_VA_CLR1, GX_CLR_RGBA, GX_RGBA8, 0);
|
||||||
|
}
|
||||||
|
GXSetVtxAttrFmt(GX_VTXFMT1, GX_VA_TEX0, GX_TEX_ST, GX_F32, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void batch_restore_gx(JPAEmitterWorkData* work, bool changedTev, bool changedTexMtx) {
|
||||||
|
GXClearVtxDesc();
|
||||||
|
GXSetVtxDesc(GX_VA_POS, GX_INDEX8);
|
||||||
|
GXSetVtxDesc(GX_VA_TEX0, GX_INDEX8);
|
||||||
|
GXSetVtxAttrFmt(GX_VTXFMT0, GX_VA_POS, GX_POS_XYZ, GX_S8, 0);
|
||||||
|
GXSetVtxAttrFmt(GX_VTXFMT0, GX_VA_TEX0, GX_TEX_ST, GX_S8, 0);
|
||||||
|
GXSetVtxAttrFmt(GX_VTXFMT1, GX_VA_POS, GX_POS_XYZ, GX_F32, 0);
|
||||||
|
GXSetVtxAttrFmt(GX_VTXFMT1, GX_VA_TEX0, GX_TEX_ST, GX_F32, 0);
|
||||||
|
GXSetCurrentMtx(GX_PNMTX0);
|
||||||
|
|
||||||
|
if (changedTexMtx) {
|
||||||
|
GXSetTexCoordGen(GX_TEXCOORD0, GX_TG_MTX2x4, GX_TG_TEX0, GX_TEXMTX0);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (changedTev) {
|
||||||
|
GXSetNumChans(0);
|
||||||
|
work->mpRes->getBsp()->setGX(work);
|
||||||
|
work->mpRes->setPTev();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool draw_particle_batch(JPAEmitterWorkData* work) {
|
||||||
|
ZoneScoped;
|
||||||
|
|
||||||
|
JPAResource* res = work->mpRes;
|
||||||
|
const JPAResource::BatchInfo& info = res->mBatchInfo;
|
||||||
|
if (!info.supported || work->mPrjType != 0 || work->mpEmtr->mpPtclCallBack != nullptr) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool useClr0 = false;
|
||||||
|
bool useClr1 = false;
|
||||||
|
if (info.hasPtclColor) {
|
||||||
|
u32 colorSel = res->getBsp()->getTevColorArgSel();
|
||||||
|
if (colorSel >= 6) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
useClr0 = true;
|
||||||
|
useClr1 = colorSel == 3 || colorSel == 4;
|
||||||
|
batch_setup_tev(work, useClr1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (info.hasPtclTexMtx) {
|
||||||
|
// UVs are CPU-transformed; drop the texgen
|
||||||
|
GXSetTexCoordGen(GX_TEXCOORD0, GX_TG_MTX2x4, GX_TG_TEX0, GX_IDENTITY);
|
||||||
|
}
|
||||||
|
|
||||||
|
batch_setup_vtx_desc(useClr0, useClr1);
|
||||||
|
|
||||||
|
ParticleDrawCtx ctx{};
|
||||||
|
ctx.batch = true;
|
||||||
|
ctx.useTexMtx = info.hasPtclTexMtx;
|
||||||
|
ctx.useClr0 = useClr0;
|
||||||
|
ctx.useClr1 = useClr1;
|
||||||
|
|
||||||
|
bool fwdAhead = res->getBsp()->isDrawFwdAhead();
|
||||||
|
JPANode<JPABaseParticle>* node = fwdAhead ? work->mpEmtr->mAlivePtclBase.getLast() :
|
||||||
|
work->mpEmtr->mAlivePtclBase.getFirst();
|
||||||
|
|
||||||
|
GXBegin(GX_QUADS, GX_VTXFMT1, GX_AUTO);
|
||||||
|
while (node != work->mpEmtr->mAlivePtclBase.getEnd()) {
|
||||||
|
work->mpCurNode = node;
|
||||||
|
for (int i = res->mpDrawParticleFuncListNum - 1; i >= 0; i--) {
|
||||||
|
(*res->mpDrawParticleFuncList[i])(work, node->getObject(), &ctx);
|
||||||
|
}
|
||||||
|
node = fwdAhead ? node->getPrev() : node->getNext();
|
||||||
|
}
|
||||||
|
GXEnd();
|
||||||
|
|
||||||
|
batch_restore_gx(work, useClr0, info.hasPtclTexMtx);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void JPAResource::drawP(JPAEmitterWorkData* work) {
|
void JPAResource::drawP(JPAEmitterWorkData* work) {
|
||||||
ZoneScoped;
|
ZoneScoped;
|
||||||
work->mpEmtr->clearStatus(0x80);
|
work->mpEmtr->clearStatus(0x80);
|
||||||
@@ -833,13 +1095,25 @@ void JPAResource::drawP(JPAEmitterWorkData* work) {
|
|||||||
(*mpDrawEmitterFuncList[i])(work);
|
(*mpDrawEmitterFuncList[i])(work);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
if (draw_particle_batch(work)) {
|
||||||
|
GXSetMisc(GX_MT_XF_FLUSH, 0);
|
||||||
|
if (work->mpEmtr->mpEmtrCallBack != nullptr) {
|
||||||
|
work->mpEmtr->mpEmtrCallBack->drawAfter(work->mpEmtr);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ParticleDrawCtx ctx{}; // immediate mode
|
||||||
|
#endif
|
||||||
|
|
||||||
if (pBsp->isDrawFwdAhead()) {
|
if (pBsp->isDrawFwdAhead()) {
|
||||||
JPANode<JPABaseParticle>* node = work->mpEmtr->mAlivePtclBase.getLast();
|
JPANode<JPABaseParticle>* node = work->mpEmtr->mAlivePtclBase.getLast();
|
||||||
for (; node != work->mpEmtr->mAlivePtclBase.getEnd(); node = node->getPrev()) {
|
for (; node != work->mpEmtr->mAlivePtclBase.getEnd(); node = node->getPrev()) {
|
||||||
work->mpCurNode = node;
|
work->mpCurNode = node;
|
||||||
if (mpDrawParticleFuncList != NULL) {
|
if (mpDrawParticleFuncList != NULL) {
|
||||||
for (int i = mpDrawParticleFuncListNum - 1; i >= 0; i--) {
|
for (int i = mpDrawParticleFuncListNum - 1; i >= 0; i--) {
|
||||||
(*mpDrawParticleFuncList[i])(work, node->getObject());
|
(*mpDrawParticleFuncList[i])(work, node->getObject() JPA_DRAW_CTX_ARG);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -849,7 +1123,7 @@ void JPAResource::drawP(JPAEmitterWorkData* work) {
|
|||||||
work->mpCurNode = node;
|
work->mpCurNode = node;
|
||||||
if (mpDrawParticleFuncList != NULL) {
|
if (mpDrawParticleFuncList != NULL) {
|
||||||
for (int i = mpDrawParticleFuncListNum - 1; i >= 0; i--) {
|
for (int i = mpDrawParticleFuncListNum - 1; i >= 0; i--) {
|
||||||
(*mpDrawParticleFuncList[i])(work, node->getObject());
|
(*mpDrawParticleFuncList[i])(work, node->getObject() JPA_DRAW_CTX_ARG);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -896,13 +1170,17 @@ void JPAResource::drawC(JPAEmitterWorkData* work) {
|
|||||||
(*mpDrawEmitterChildFuncList[i])(work);
|
(*mpDrawEmitterChildFuncList[i])(work);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if TARGET_PC
|
||||||
|
ParticleDrawCtx ctx{}; // immediate mode
|
||||||
|
#endif
|
||||||
|
|
||||||
if (pBsp->isDrawFwdAhead()) {
|
if (pBsp->isDrawFwdAhead()) {
|
||||||
JPANode<JPABaseParticle>* node = work->mpEmtr->mAlivePtclChld.getLast();
|
JPANode<JPABaseParticle>* node = work->mpEmtr->mAlivePtclChld.getLast();
|
||||||
for (; node != work->mpEmtr->mAlivePtclChld.getEnd(); node = node->getPrev()) {
|
for (; node != work->mpEmtr->mAlivePtclChld.getEnd(); node = node->getPrev()) {
|
||||||
work->mpCurNode = node;
|
work->mpCurNode = node;
|
||||||
if (mpDrawParticleChildFuncList != NULL) {
|
if (mpDrawParticleChildFuncList != NULL) {
|
||||||
for (int i = mpDrawParticleChildFuncListNum - 1; i >= 0; i--) {
|
for (int i = mpDrawParticleChildFuncListNum - 1; i >= 0; i--) {
|
||||||
(*mpDrawParticleChildFuncList[i])(work, node->getObject());
|
(*mpDrawParticleChildFuncList[i])(work, node->getObject() JPA_DRAW_CTX_ARG);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -912,7 +1190,7 @@ void JPAResource::drawC(JPAEmitterWorkData* work) {
|
|||||||
work->mpCurNode = node;
|
work->mpCurNode = node;
|
||||||
if (mpDrawParticleChildFuncList != NULL) {
|
if (mpDrawParticleChildFuncList != NULL) {
|
||||||
for (int i = mpDrawParticleChildFuncListNum - 1; i >= 0; i--) {
|
for (int i = mpDrawParticleChildFuncListNum - 1; i >= 0; i--) {
|
||||||
(*mpDrawParticleChildFuncList[i])(work, node->getObject());
|
(*mpDrawParticleChildFuncList[i])(work, node->getObject() JPA_DRAW_CTX_ARG);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -249,6 +249,7 @@ f32 JUTResFont::drawChar_scale(f32 pos_x, f32 pos_y, f32 scale_x, f32 scale_y, i
|
|||||||
f32 x2;
|
f32 x2;
|
||||||
f32 y1;
|
f32 y1;
|
||||||
|
|
||||||
|
ZoneScoped;
|
||||||
JUT_ASSERT(378, mValid);
|
JUT_ASSERT(378, mValid);
|
||||||
JUTFont::TWidth width;
|
JUTFont::TWidth width;
|
||||||
loadFont(str_int, GX_TEXMAP0, &width FONT_DRAW_CTX_ARG);
|
loadFont(str_int, GX_TEXMAP0, &width FONT_DRAW_CTX_ARG);
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import android.app.ActionBar;
|
|||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.ActivityNotFoundException;
|
import android.content.ActivityNotFoundException;
|
||||||
import android.content.ClipData;
|
import android.content.ClipData;
|
||||||
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
@@ -14,12 +15,16 @@ import android.provider.DocumentsContract;
|
|||||||
import android.provider.OpenableColumns;
|
import android.provider.OpenableColumns;
|
||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
import android.view.Display;
|
||||||
|
import android.view.Surface;
|
||||||
|
import android.view.SurfaceHolder;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.Window;
|
import android.view.Window;
|
||||||
import android.view.WindowInsets;
|
import android.view.WindowInsets;
|
||||||
import android.view.WindowInsetsController;
|
import android.view.WindowInsetsController;
|
||||||
|
|
||||||
import org.libsdl.app.SDLActivity;
|
import org.libsdl.app.SDLActivity;
|
||||||
|
import org.libsdl.app.SDLSurface;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@@ -27,6 +32,7 @@ import java.util.List;
|
|||||||
|
|
||||||
public class DuskActivity extends SDLActivity {
|
public class DuskActivity extends SDLActivity {
|
||||||
private static final String TAG = "DuskActivity";
|
private static final String TAG = "DuskActivity";
|
||||||
|
private static final float DEFAULT_SURFACE_FRAME_RATE = 60.0f;
|
||||||
private static final int FOLDER_DIALOG_REQUEST_CODE = 0x4455;
|
private static final int FOLDER_DIALOG_REQUEST_CODE = 0x4455;
|
||||||
private static final int MANAGE_STORAGE_REQUEST_CODE = 0x4456;
|
private static final int MANAGE_STORAGE_REQUEST_CODE = 0x4456;
|
||||||
private static final String EXTERNAL_STORAGE_AUTHORITY =
|
private static final String EXTERNAL_STORAGE_AUTHORITY =
|
||||||
@@ -88,6 +94,11 @@ public class DuskActivity extends SDLActivity {
|
|||||||
hideSystemBars();
|
hideSystemBars();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected SDLSurface createSDLSurface(Context context) {
|
||||||
|
return new DuskSurface(context);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onResume() {
|
protected void onResume() {
|
||||||
super.onResume();
|
super.onResume();
|
||||||
@@ -139,6 +150,77 @@ public class DuskActivity extends SDLActivity {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setPreferredSurfaceFrameRate(float frameRate) {
|
||||||
|
runOnUiThread(() -> {
|
||||||
|
if (mSurface instanceof DuskSurface) {
|
||||||
|
((DuskSurface)mSurface).setPreferredFrameRate(frameRate);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final class DuskSurface extends SDLSurface {
|
||||||
|
private float preferredFrameRate = DEFAULT_SURFACE_FRAME_RATE;
|
||||||
|
|
||||||
|
DuskSurface(Context context) {
|
||||||
|
super(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
|
||||||
|
super.surfaceChanged(holder, format, width, height);
|
||||||
|
setTargetFrameRate(holder);
|
||||||
|
}
|
||||||
|
|
||||||
|
void setPreferredFrameRate(float frameRate) {
|
||||||
|
preferredFrameRate = frameRate;
|
||||||
|
setTargetFrameRate(getHolder());
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setTargetFrameRate(SurfaceHolder holder) {
|
||||||
|
if (!mIsSurfaceReady || Build.VERSION.SDK_INT < Build.VERSION_CODES.R) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Surface surface = holder != null ? holder.getSurface() : getHolder().getSurface();
|
||||||
|
if (surface == null || !surface.isValid()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
float targetFrameRate = getMaxSupportedFrameRate();
|
||||||
|
if (preferredFrameRate > 0.0f) {
|
||||||
|
targetFrameRate = preferredFrameRate;
|
||||||
|
}
|
||||||
|
if (targetFrameRate <= 0.0f) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
surface.setFrameRate(
|
||||||
|
targetFrameRate, Surface.FRAME_RATE_COMPATIBILITY_DEFAULT);
|
||||||
|
Log.v(TAG, "Requested surface frame rate " + targetFrameRate + " fps");
|
||||||
|
} catch (RuntimeException e) {
|
||||||
|
Log.w(TAG, "Failed to request surface frame rate", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private float getMaxSupportedFrameRate() {
|
||||||
|
if (mDisplay == null) {
|
||||||
|
return 0.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
float maxFrameRate = mDisplay.getRefreshRate();
|
||||||
|
Display.Mode[] modes = mDisplay.getSupportedModes();
|
||||||
|
if (modes == null) {
|
||||||
|
return maxFrameRate;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (Display.Mode mode : modes) {
|
||||||
|
maxFrameRate = Math.max(maxFrameRate, mode.getRefreshRate());
|
||||||
|
}
|
||||||
|
return maxFrameRate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String[] getArguments() {
|
protected String[] getArguments() {
|
||||||
Intent intent = getIntent();
|
Intent intent = getIntent();
|
||||||
|
|||||||
+209
-35
@@ -19,9 +19,13 @@ import android.os.*;
|
|||||||
|
|
||||||
import java.lang.Runnable;
|
import java.lang.Runnable;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
import java.util.regex.Matcher;
|
||||||
|
|
||||||
class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDevice {
|
class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDevice {
|
||||||
|
|
||||||
private static final String TAG = "hidapi";
|
private static final String TAG = "hidapi";
|
||||||
@@ -33,10 +37,19 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
private boolean mIsConnected = false;
|
private boolean mIsConnected = false;
|
||||||
private boolean mIsChromebook = false;
|
private boolean mIsChromebook = false;
|
||||||
private boolean mIsReconnecting = false;
|
private boolean mIsReconnecting = false;
|
||||||
|
private boolean mHasEnabledNotifications = false;
|
||||||
|
private boolean mHasSeenInputUpdate = false;
|
||||||
private boolean mFrozen = false;
|
private boolean mFrozen = false;
|
||||||
private LinkedList<GattOperation> mOperations;
|
private LinkedList<GattOperation> mOperations;
|
||||||
GattOperation mCurrentOperation = null;
|
GattOperation mCurrentOperation = null;
|
||||||
private Handler mHandler;
|
private Handler mHandler;
|
||||||
|
private int mProductId = -1;
|
||||||
|
private int mReportId = 0;
|
||||||
|
private UUID mInputCharacteristic;
|
||||||
|
|
||||||
|
private static final int D0G_BLE2_PID = 0x1106;
|
||||||
|
private static final int TRITON_BLE_PID = 0x1303;
|
||||||
|
|
||||||
|
|
||||||
private static final int TRANSPORT_AUTO = 0;
|
private static final int TRANSPORT_AUTO = 0;
|
||||||
private static final int TRANSPORT_BREDR = 1;
|
private static final int TRANSPORT_BREDR = 1;
|
||||||
@@ -45,10 +58,14 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
private static final int CHROMEBOOK_CONNECTION_CHECK_INTERVAL = 10000;
|
private static final int CHROMEBOOK_CONNECTION_CHECK_INTERVAL = 10000;
|
||||||
|
|
||||||
static final UUID steamControllerService = UUID.fromString("100F6C32-1735-4313-B402-38567131E5F3");
|
static final UUID steamControllerService = UUID.fromString("100F6C32-1735-4313-B402-38567131E5F3");
|
||||||
static final UUID inputCharacteristic = UUID.fromString("100F6C33-1735-4313-B402-38567131E5F3");
|
static final UUID inputCharacteristicD0G = UUID.fromString("100F6C33-1735-4313-B402-38567131E5F3");
|
||||||
|
static final UUID inputCharacteristicTriton_0x45 = UUID.fromString("100F6C7A-1735-4313-B402-38567131E5F3");
|
||||||
|
static final UUID inputCharacteristicTriton_0x47 = UUID.fromString("100F6C7C-1735-4313-B402-38567131E5F3");
|
||||||
static final UUID reportCharacteristic = UUID.fromString("100F6C34-1735-4313-B402-38567131E5F3");
|
static final UUID reportCharacteristic = UUID.fromString("100F6C34-1735-4313-B402-38567131E5F3");
|
||||||
static private final byte[] enterValveMode = new byte[] { (byte)0xC0, (byte)0x87, 0x03, 0x08, 0x07, 0x00 };
|
static private final byte[] enterValveMode = new byte[] { (byte)0xC0, (byte)0x87, 0x03, 0x08, 0x07, 0x00 };
|
||||||
|
|
||||||
|
private HashMap<Integer, BluetoothGattCharacteristic> mOutputReportChars = new HashMap<Integer, BluetoothGattCharacteristic>();
|
||||||
|
|
||||||
static class GattOperation {
|
static class GattOperation {
|
||||||
private enum Operation {
|
private enum Operation {
|
||||||
CHR_READ,
|
CHR_READ,
|
||||||
@@ -61,6 +78,7 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
byte[] mValue;
|
byte[] mValue;
|
||||||
BluetoothGatt mGatt;
|
BluetoothGatt mGatt;
|
||||||
boolean mResult = true;
|
boolean mResult = true;
|
||||||
|
int mDelayMs = 0;
|
||||||
|
|
||||||
private GattOperation(BluetoothGatt gatt, GattOperation.Operation operation, UUID uuid) {
|
private GattOperation(BluetoothGatt gatt, GattOperation.Operation operation, UUID uuid) {
|
||||||
mGatt = gatt;
|
mGatt = gatt;
|
||||||
@@ -68,6 +86,13 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
mUuid = uuid;
|
mUuid = uuid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private GattOperation(BluetoothGatt gatt, GattOperation.Operation operation, UUID uuid, int delayMs) {
|
||||||
|
mGatt = gatt;
|
||||||
|
mOp = operation;
|
||||||
|
mUuid = uuid;
|
||||||
|
mDelayMs = delayMs;
|
||||||
|
}
|
||||||
|
|
||||||
private GattOperation(BluetoothGatt gatt, GattOperation.Operation operation, UUID uuid, byte[] value) {
|
private GattOperation(BluetoothGatt gatt, GattOperation.Operation operation, UUID uuid, byte[] value) {
|
||||||
mGatt = gatt;
|
mGatt = gatt;
|
||||||
mOp = operation;
|
mOp = operation;
|
||||||
@@ -75,6 +100,14 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
mValue = value;
|
mValue = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private GattOperation(BluetoothGatt gatt, GattOperation.Operation operation, UUID uuid, byte[] value, int delayMs) {
|
||||||
|
mGatt = gatt;
|
||||||
|
mOp = operation;
|
||||||
|
mUuid = uuid;
|
||||||
|
mValue = value;
|
||||||
|
mDelayMs = delayMs;
|
||||||
|
}
|
||||||
|
|
||||||
public void run() {
|
public void run() {
|
||||||
// This is executed in main thread
|
// This is executed in main thread
|
||||||
BluetoothGattCharacteristic chr;
|
BluetoothGattCharacteristic chr;
|
||||||
@@ -136,6 +169,8 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
return mResult;
|
return mResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getDelayMs() { return mDelayMs; }
|
||||||
|
|
||||||
private BluetoothGattCharacteristic getCharacteristic(UUID uuid) {
|
private BluetoothGattCharacteristic getCharacteristic(UUID uuid) {
|
||||||
BluetoothGattService valveService = mGatt.getService(steamControllerService);
|
BluetoothGattService valveService = mGatt.getService(steamControllerService);
|
||||||
if (valveService == null)
|
if (valveService == null)
|
||||||
@@ -154,6 +189,10 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
static public GattOperation enableNotification(BluetoothGatt gatt, UUID uuid) {
|
static public GattOperation enableNotification(BluetoothGatt gatt, UUID uuid) {
|
||||||
return new GattOperation(gatt, Operation.ENABLE_NOTIFICATION, uuid);
|
return new GattOperation(gatt, Operation.ENABLE_NOTIFICATION, uuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static public GattOperation enableNotification(BluetoothGatt gatt, UUID uuid, int delayMs) {
|
||||||
|
return new GattOperation(gatt, Operation.ENABLE_NOTIFICATION, uuid, delayMs);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
HIDDeviceBLESteamController(HIDDeviceManager manager, BluetoothDevice device) {
|
HIDDeviceBLESteamController(HIDDeviceManager manager, BluetoothDevice device) {
|
||||||
@@ -166,6 +205,8 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
mHandler = new Handler(Looper.getMainLooper());
|
mHandler = new Handler(Looper.getMainLooper());
|
||||||
|
|
||||||
mGatt = connectGatt();
|
mGatt = connectGatt();
|
||||||
|
mHasEnabledNotifications = false;
|
||||||
|
mHasSeenInputUpdate = false;
|
||||||
// final HIDDeviceBLESteamController finalThis = this;
|
// final HIDDeviceBLESteamController finalThis = this;
|
||||||
// mHandler.postDelayed(new Runnable() {
|
// mHandler.postDelayed(new Runnable() {
|
||||||
// @Override
|
// @Override
|
||||||
@@ -314,8 +355,45 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
Log.v(TAG, "Found Valve steam controller service " + service.getUuid());
|
Log.v(TAG, "Found Valve steam controller service " + service.getUuid());
|
||||||
|
|
||||||
for (BluetoothGattCharacteristic chr : service.getCharacteristics()) {
|
for (BluetoothGattCharacteristic chr : service.getCharacteristics()) {
|
||||||
if (chr.getUuid().equals(inputCharacteristic)) {
|
if (chr.getUuid().equals(inputCharacteristicTriton_0x45)) {
|
||||||
Log.v(TAG, "Found input characteristic");
|
Log.v(TAG, "Found Triton input characteristic 0x45");
|
||||||
|
mProductId = TRITON_BLE_PID;
|
||||||
|
mReportId = 0x45;
|
||||||
|
mInputCharacteristic = chr.getUuid();
|
||||||
|
} else if (chr.getUuid().equals(inputCharacteristicTriton_0x47)) {
|
||||||
|
Log.v(TAG, "Found Triton input characteristic 0x47");
|
||||||
|
mProductId = TRITON_BLE_PID;
|
||||||
|
mReportId = 0x47;
|
||||||
|
mInputCharacteristic = chr.getUuid();
|
||||||
|
} else if (chr.getUuid().equals(inputCharacteristicD0G)) {
|
||||||
|
Log.v(TAG, "Found D0G input characteristic");
|
||||||
|
mProductId = D0G_BLE2_PID;
|
||||||
|
mReportId = 0x03;
|
||||||
|
mInputCharacteristic = chr.getUuid();
|
||||||
|
} else {
|
||||||
|
Pattern reportPattern = Pattern.compile("100F6C([0-9A-Z]{2})", Pattern.CASE_INSENSITIVE);
|
||||||
|
Matcher matcher = reportPattern.matcher(chr.getUuid().toString());
|
||||||
|
|
||||||
|
if (matcher.find()) {
|
||||||
|
try {
|
||||||
|
int reportId = Integer.parseInt(matcher.group(1), 16);
|
||||||
|
|
||||||
|
reportId -= 0x35;
|
||||||
|
if (reportId >= 0x80) {
|
||||||
|
// This is a Triton output report characteristic that we need to care about.
|
||||||
|
Log.v(TAG, "Found Triton output report 0x" + Integer.toString(reportId, 16));
|
||||||
|
mOutputReportChars.put(reportId, chr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (NumberFormatException nfe) {
|
||||||
|
Log.w(TAG, "Could not parse report characteristic " + chr.getUuid().toString() + ": " + nfe.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (BluetoothGattCharacteristic chr : service.getCharacteristics()) {
|
||||||
|
if (chr.getUuid().equals(mInputCharacteristic)) {
|
||||||
// Start notifications
|
// Start notifications
|
||||||
BluetoothGattDescriptor cccd = chr.getDescriptor(UUID.fromString("00002902-0000-1000-8000-00805f9b34fb"));
|
BluetoothGattDescriptor cccd = chr.getDescriptor(UUID.fromString("00002902-0000-1000-8000-00805f9b34fb"));
|
||||||
if (cccd != null) {
|
if (cccd != null) {
|
||||||
@@ -372,21 +450,30 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
mCurrentOperation = mOperations.removeFirst();
|
mCurrentOperation = mOperations.removeFirst();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Run in main thread
|
Runnable gattOperationRunnable = new Runnable() {
|
||||||
mHandler.post(new Runnable() {
|
@Override
|
||||||
@Override
|
public void run() {
|
||||||
public void run() {
|
synchronized (mOperations) {
|
||||||
synchronized (mOperations) {
|
if (mCurrentOperation == null) {
|
||||||
if (mCurrentOperation == null) {
|
Log.e(TAG, "Current operation null in executor?");
|
||||||
Log.e(TAG, "Current operation null in executor?");
|
return;
|
||||||
return;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
mCurrentOperation.run();
|
mCurrentOperation.run();
|
||||||
// now wait for the GATT callback and when it comes, finish this operation
|
// now wait for the GATT callback and when it comes, finish this operation
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
});
|
|
||||||
|
if (mCurrentOperation.getDelayMs() == 0) {
|
||||||
|
// Run in main thread
|
||||||
|
mHandler.post(gattOperationRunnable);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// If we have a delay on this operation, wait before we post it.
|
||||||
|
mHandler.postDelayed(gattOperationRunnable, mCurrentOperation.getDelayMs());
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void queueGattOperation(GattOperation op) {
|
private void queueGattOperation(GattOperation op) {
|
||||||
@@ -397,8 +484,39 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void enableNotification(UUID chrUuid) {
|
private void enableNotification(UUID chrUuid) {
|
||||||
GattOperation op = HIDDeviceBLESteamController.GattOperation.enableNotification(mGatt, chrUuid);
|
// Add a 500ms delay to notification write for Amazon Fire TV devices, as otherwise if we do this too quickly after connecting
|
||||||
|
// it will return success and then silently drop the operation on the floor.
|
||||||
|
GattOperation op = HIDDeviceBLESteamController.GattOperation.enableNotification(mGatt, chrUuid, 500);
|
||||||
queueGattOperation(op);
|
queueGattOperation(op);
|
||||||
|
|
||||||
|
// Amazon Fire devices can also silently timeout on writeDescriptor, so
|
||||||
|
// set up a little delayed check that will attempt to write a second time.
|
||||||
|
//
|
||||||
|
// While this only seems to be needed on Amazon Fire TV devices at present, it
|
||||||
|
// doesn't hurt to have a retry on other devices as well.
|
||||||
|
//
|
||||||
|
final HIDDeviceBLESteamController finalThis = this;
|
||||||
|
final UUID finalUuid = chrUuid;
|
||||||
|
mHandler.postDelayed(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
if (!finalThis.mHasEnabledNotifications) {
|
||||||
|
|
||||||
|
if (finalThis.mHasSeenInputUpdate) {
|
||||||
|
// Amazon Five devices may have enabled notifications on the input characteristic and not given us a callback. If we've seen
|
||||||
|
// input reports, though, somewhat by definition notifications are enabled.
|
||||||
|
Log.w(TAG, "WriteDescriptor has never returned, but we've seen input reports. Moving on with controller initialization.");
|
||||||
|
finalThis.mHasEnabledNotifications = true;
|
||||||
|
finalThis.enableValveMode();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Give one more try.
|
||||||
|
GattOperation retry = HIDDeviceBLESteamController.GattOperation.enableNotification(finalThis.mGatt, finalUuid, 500);
|
||||||
|
finalThis.queueGattOperation(retry);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
void writeCharacteristic(UUID uuid, byte[] value) {
|
void writeCharacteristic(UUID uuid, byte[] value) {
|
||||||
@@ -448,8 +566,16 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
mIsConnected = false;
|
mIsConnected = false;
|
||||||
gatt.disconnect();
|
gatt.disconnect();
|
||||||
mGatt = connectGatt(false);
|
mGatt = connectGatt(false);
|
||||||
}
|
} else {
|
||||||
else {
|
if (getProductId() == TRITON_BLE_PID) {
|
||||||
|
// Android will not properly play well with Data Length Extensions without manually requesting a large MTU,
|
||||||
|
// and Triton controllers require DLE support.
|
||||||
|
//
|
||||||
|
// 517 is basically a "magic number" as far as Android's bluetooth code is concerned, so do not change
|
||||||
|
// this value. It is functionally "please enable data length extensions" on some Android builds.
|
||||||
|
mGatt.requestMtu(517);
|
||||||
|
}
|
||||||
|
|
||||||
probeService(this);
|
probeService(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -474,7 +600,7 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
// Only register controller with the native side once it has been fully configured
|
// Only register controller with the native side once it has been fully configured
|
||||||
if (!isRegistered()) {
|
if (!isRegistered()) {
|
||||||
Log.v(TAG, "Registering Steam Controller with ID: " + getId());
|
Log.v(TAG, "Registering Steam Controller with ID: " + getId());
|
||||||
mManager.HIDDeviceConnected(getId(), getIdentifier(), getVendorId(), getProductId(), getSerialNumber(), getVersion(), getManufacturerName(), getProductName(), 0, 0, 0, 0, true);
|
mManager.HIDDeviceConnected(getId(), getIdentifier(), getVendorId(), getProductId(), getSerialNumber(), getVersion(), getManufacturerName(), getProductName(), 0, 0, 0, 0, true, mReportId);
|
||||||
setRegistered();
|
setRegistered();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -487,7 +613,8 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
// Enable this for verbose logging of controller input reports
|
// Enable this for verbose logging of controller input reports
|
||||||
//Log.v(TAG, "onCharacteristicChanged uuid=" + characteristic.getUuid() + " data=" + HexDump.dumpHexString(characteristic.getValue()));
|
//Log.v(TAG, "onCharacteristicChanged uuid=" + characteristic.getUuid() + " data=" + HexDump.dumpHexString(characteristic.getValue()));
|
||||||
|
|
||||||
if (characteristic.getUuid().equals(inputCharacteristic) && !mFrozen) {
|
if (characteristic.getUuid().equals(mInputCharacteristic) && !mFrozen) {
|
||||||
|
mHasSeenInputUpdate = true;
|
||||||
mManager.HIDDeviceInputReport(getId(), characteristic.getValue());
|
mManager.HIDDeviceInputReport(getId(), characteristic.getValue());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -497,19 +624,36 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
//Log.v(TAG, "onDescriptorRead status=" + status);
|
//Log.v(TAG, "onDescriptorRead status=" + status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void enableValveMode()
|
||||||
|
{
|
||||||
|
BluetoothGattService valveService = mGatt.getService(steamControllerService);
|
||||||
|
if (valveService == null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
BluetoothGattCharacteristic reportChr = valveService.getCharacteristic(reportCharacteristic);
|
||||||
|
if (reportChr != null) {
|
||||||
|
if (getProductId() == TRITON_BLE_PID) {
|
||||||
|
// For Triton we just mark things registered.
|
||||||
|
Log.v(TAG, "Registering Triton Steam Controller with ID: " + getId());
|
||||||
|
mManager.HIDDeviceConnected(getId(), getIdentifier(), getVendorId(), getProductId(), getSerialNumber(), getVersion(), getManufacturerName(), getProductName(), 0, 0, 0, 0, true, mReportId);
|
||||||
|
setRegistered();
|
||||||
|
} else {
|
||||||
|
// For the original controller, we need to manually enter Valve mode.
|
||||||
|
Log.v(TAG, "Writing report characteristic to enter valve mode");
|
||||||
|
reportChr.setValue(enterValveMode);
|
||||||
|
mGatt.writeCharacteristic(reportChr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) {
|
public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) {
|
||||||
BluetoothGattCharacteristic chr = descriptor.getCharacteristic();
|
BluetoothGattCharacteristic chr = descriptor.getCharacteristic();
|
||||||
//Log.v(TAG, "onDescriptorWrite status=" + status + " uuid=" + chr.getUuid() + " descriptor=" + descriptor.getUuid());
|
//Log.v(TAG, "onDescriptorWrite status=" + status + " uuid=" + chr.getUuid() + " descriptor=" + descriptor.getUuid());
|
||||||
|
|
||||||
if (chr.getUuid().equals(inputCharacteristic)) {
|
if (chr.getUuid().equals(mInputCharacteristic)) {
|
||||||
boolean hasWrittenInputDescriptor = true;
|
mHasEnabledNotifications = true;
|
||||||
BluetoothGattCharacteristic reportChr = chr.getService().getCharacteristic(reportCharacteristic);
|
enableValveMode();
|
||||||
if (reportChr != null) {
|
|
||||||
Log.v(TAG, "Writing report characteristic to enter valve mode");
|
|
||||||
reportChr.setValue(enterValveMode);
|
|
||||||
gatt.writeCharacteristic(reportChr);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
finishCurrentGattOperation();
|
finishCurrentGattOperation();
|
||||||
@@ -548,9 +692,20 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getProductId() {
|
public int getProductId() {
|
||||||
// We don't have an easy way to query from the Bluetooth device, but we know what it is
|
if (mProductId > 0) {
|
||||||
final int D0G_BLE2_PID = 0x1106;
|
// We've already set a product ID.
|
||||||
return D0G_BLE2_PID;
|
return mProductId;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mDevice.getName().startsWith("Steam Ctrl")) {
|
||||||
|
// We're a newer Triton device
|
||||||
|
mProductId = TRITON_BLE_PID;
|
||||||
|
} else {
|
||||||
|
// We're an OG Steam Controller
|
||||||
|
mProductId = D0G_BLE2_PID;
|
||||||
|
}
|
||||||
|
|
||||||
|
return mProductId;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -601,10 +756,29 @@ class HIDDeviceBLESteamController extends BluetoothGattCallback implements HIDDe
|
|||||||
writeCharacteristic(reportCharacteristic, actual_report);
|
writeCharacteristic(reportCharacteristic, actual_report);
|
||||||
return report.length;
|
return report.length;
|
||||||
} else {
|
} else {
|
||||||
//Log.v(TAG, "writeOutputReport " + HexDump.dumpHexString(report));
|
// If we're an original-recipe Steam Controller we just write to the characteristic directly.
|
||||||
writeCharacteristic(reportCharacteristic, report);
|
if (getProductId() == D0G_BLE2_PID) {
|
||||||
return report.length;
|
//Log.v(TAG, "writeOutputReport " + HexDump.dumpHexString(report));
|
||||||
|
writeCharacteristic(reportCharacteristic, report);
|
||||||
|
return report.length;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we're a Triton, we need to find the correct report characteristic.
|
||||||
|
if (report.length > 0) {
|
||||||
|
int reportId = report[0] & 0xFF;
|
||||||
|
BluetoothGattCharacteristic targetedReportCharacteristic = mOutputReportChars.get(reportId);
|
||||||
|
if (targetedReportCharacteristic != null) {
|
||||||
|
byte[] actual_report = Arrays.copyOfRange(report, 1, report.length - 1);
|
||||||
|
//Log.v(TAG, "writeOutputReport 0x" + Integer.toString(reportId, 16) + " " + HexDump.dumpHexString(report));
|
||||||
|
writeCharacteristic(targetedReportCharacteristic.getUuid(), actual_report);
|
||||||
|
return report.length;
|
||||||
|
} else {
|
||||||
|
Log.w(TAG, "Got report write request for unknown report type 0x" + Integer.toString(reportId, 16));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -256,6 +256,7 @@ public class HIDDeviceManager {
|
|||||||
0x24c6, // PowerA
|
0x24c6, // PowerA
|
||||||
0x2c22, // Qanba
|
0x2c22, // Qanba
|
||||||
0x2dc8, // 8BitDo
|
0x2dc8, // 8BitDo
|
||||||
|
0x3537, // GameSir
|
||||||
0x37d7, // Flydigi
|
0x37d7, // Flydigi
|
||||||
0x9886, // ASTRO Gaming
|
0x9886, // ASTRO Gaming
|
||||||
};
|
};
|
||||||
@@ -360,7 +361,7 @@ public class HIDDeviceManager {
|
|||||||
HIDDeviceUSB device = new HIDDeviceUSB(this, usbDevice, interface_index);
|
HIDDeviceUSB device = new HIDDeviceUSB(this, usbDevice, interface_index);
|
||||||
int id = device.getId();
|
int id = device.getId();
|
||||||
mDevicesById.put(id, device);
|
mDevicesById.put(id, device);
|
||||||
HIDDeviceConnected(id, device.getIdentifier(), device.getVendorId(), device.getProductId(), device.getSerialNumber(), device.getVersion(), device.getManufacturerName(), device.getProductName(), usbInterface.getId(), usbInterface.getInterfaceClass(), usbInterface.getInterfaceSubclass(), usbInterface.getInterfaceProtocol(), false);
|
HIDDeviceConnected(id, device.getIdentifier(), device.getVendorId(), device.getProductId(), device.getSerialNumber(), device.getVersion(), device.getManufacturerName(), device.getProductName(), usbInterface.getId(), usbInterface.getInterfaceClass(), usbInterface.getInterfaceSubclass(), usbInterface.getInterfaceProtocol(), false, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -529,7 +530,13 @@ public class HIDDeviceManager {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return bluetoothDevice.getName().equals("SteamController") && ((bluetoothDevice.getType() & BluetoothDevice.DEVICE_TYPE_LE) != 0);
|
// Steam Controllers will always support Bluetooth Low Energy
|
||||||
|
if ((bluetoothDevice.getType() & BluetoothDevice.DEVICE_TYPE_LE) == 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Match on the name either the original Steam Controller or the new second-generation one advertise with.
|
||||||
|
return bluetoothDevice.getName().equals("SteamController") || bluetoothDevice.getName().startsWith("Steam Ctrl");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void close() {
|
private void close() {
|
||||||
@@ -681,7 +688,7 @@ public class HIDDeviceManager {
|
|||||||
private native void HIDDeviceRegisterCallback();
|
private native void HIDDeviceRegisterCallback();
|
||||||
private native void HIDDeviceReleaseCallback();
|
private native void HIDDeviceReleaseCallback();
|
||||||
|
|
||||||
native void HIDDeviceConnected(int deviceID, String identifier, int vendorId, int productId, String serial_number, int release_number, String manufacturer_string, String product_string, int interface_number, int interface_class, int interface_subclass, int interface_protocol, boolean bBluetooth);
|
native void HIDDeviceConnected(int deviceID, String identifier, int vendorId, int productId, String serial_number, int release_number, String manufacturer_string, String product_string, int interface_number, int interface_class, int interface_subclass, int interface_protocol, boolean bBluetooth, int reportID);
|
||||||
native void HIDDeviceOpenPending(int deviceID);
|
native void HIDDeviceOpenPending(int deviceID);
|
||||||
native void HIDDeviceOpenResult(int deviceID, boolean opened);
|
native void HIDDeviceOpenResult(int deviceID, boolean opened);
|
||||||
native void HIDDeviceDisconnected(int deviceID);
|
native void HIDDeviceDisconnected(int deviceID);
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ class HIDDeviceUSB implements HIDDevice {
|
|||||||
protected InputThread mInputThread;
|
protected InputThread mInputThread;
|
||||||
protected boolean mRunning;
|
protected boolean mRunning;
|
||||||
protected boolean mFrozen;
|
protected boolean mFrozen;
|
||||||
|
protected boolean mClaimed;
|
||||||
|
|
||||||
public HIDDeviceUSB(HIDDeviceManager manager, UsbDevice usbDevice, int interface_index) {
|
public HIDDeviceUSB(HIDDeviceManager manager, UsbDevice usbDevice, int interface_index) {
|
||||||
mManager = manager;
|
mManager = manager;
|
||||||
@@ -29,6 +30,7 @@ class HIDDeviceUSB implements HIDDevice {
|
|||||||
mInterface = mDevice.getInterface(mInterfaceIndex).getId();
|
mInterface = mDevice.getInterface(mInterfaceIndex).getId();
|
||||||
mDeviceId = manager.getDeviceIDForIdentifier(getIdentifier());
|
mDeviceId = manager.getDeviceIDForIdentifier(getIdentifier());
|
||||||
mRunning = false;
|
mRunning = false;
|
||||||
|
mClaimed = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
String getIdentifier() {
|
String getIdentifier() {
|
||||||
@@ -114,6 +116,7 @@ class HIDDeviceUSB implements HIDDevice {
|
|||||||
close();
|
close();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
mClaimed = true;
|
||||||
|
|
||||||
// Find the endpoints
|
// Find the endpoints
|
||||||
for (int j = 0; j < iface.getEndpointCount(); j++) {
|
for (int j = 0; j < iface.getEndpointCount(); j++) {
|
||||||
@@ -132,9 +135,12 @@ class HIDDeviceUSB implements HIDDevice {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure the required endpoints were present
|
// Make sure the required endpoints were present. The original Steam Controller and the wireless dongle for it do NOT
|
||||||
if (mInputEndpoint == null || mOutputEndpoint == null) {
|
// actually have -- or require -- output endpoints, so we need to accept only an input one for them or else we'll fall
|
||||||
|
// back to the Android system gamepad functionality (and lose our paddles et al).
|
||||||
|
if (mInputEndpoint == null) {
|
||||||
Log.w(TAG, "Missing required endpoint on USB device " + getDeviceName());
|
Log.w(TAG, "Missing required endpoint on USB device " + getDeviceName());
|
||||||
|
mConnection.releaseInterface(iface);
|
||||||
close();
|
close();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -154,6 +160,11 @@ class HIDDeviceUSB implements HIDDevice {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!mClaimed) {
|
||||||
|
Log.w(TAG, "writeReport() called but some other process currently owns the USB device");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (feature) {
|
if (feature) {
|
||||||
int res = -1;
|
int res = -1;
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
@@ -185,6 +196,11 @@ class HIDDeviceUSB implements HIDDevice {
|
|||||||
}
|
}
|
||||||
return length;
|
return length;
|
||||||
} else {
|
} else {
|
||||||
|
if (mOutputEndpoint == null)
|
||||||
|
{
|
||||||
|
Log.e(TAG, "Tried to write an output report to an interface with no output endpoint!");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
int res = mConnection.bulkTransfer(mOutputEndpoint, report, report.length, 1000);
|
int res = mConnection.bulkTransfer(mOutputEndpoint, report, report.length, 1000);
|
||||||
if (res != report.length) {
|
if (res != report.length) {
|
||||||
Log.w(TAG, "writeOutputReport() returned " + res + " on device " + getDeviceName());
|
Log.w(TAG, "writeOutputReport() returned " + res + " on device " + getDeviceName());
|
||||||
@@ -205,6 +221,12 @@ class HIDDeviceUSB implements HIDDevice {
|
|||||||
Log.w(TAG, "readReport() called with no device connection");
|
Log.w(TAG, "readReport() called with no device connection");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (!mClaimed) {
|
||||||
|
if (feature) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (report_number == 0x0) {
|
if (report_number == 0x0) {
|
||||||
/* Offset the return buffer by 1, so that the report ID
|
/* Offset the return buffer by 1, so that the report ID
|
||||||
@@ -258,10 +280,13 @@ class HIDDeviceUSB implements HIDDevice {
|
|||||||
mInputThread = null;
|
mInputThread = null;
|
||||||
}
|
}
|
||||||
if (mConnection != null) {
|
if (mConnection != null) {
|
||||||
UsbInterface iface = mDevice.getInterface(mInterfaceIndex);
|
if (mClaimed) {
|
||||||
mConnection.releaseInterface(iface);
|
UsbInterface iface = mDevice.getInterface(mInterfaceIndex);
|
||||||
|
mConnection.releaseInterface(iface);
|
||||||
|
}
|
||||||
mConnection.close();
|
mConnection.close();
|
||||||
mConnection = null;
|
mConnection = null;
|
||||||
|
mClaimed = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -274,6 +299,22 @@ class HIDDeviceUSB implements HIDDevice {
|
|||||||
@Override
|
@Override
|
||||||
public void setFrozen(boolean frozen) {
|
public void setFrozen(boolean frozen) {
|
||||||
mFrozen = frozen;
|
mFrozen = frozen;
|
||||||
|
|
||||||
|
/* If we have a valid device connection and the claim state doesn't match what we want, try to correct that. */
|
||||||
|
if (mConnection != null && mClaimed == mFrozen) {
|
||||||
|
UsbInterface iface = mDevice.getInterface(mInterfaceIndex);
|
||||||
|
if (frozen) {
|
||||||
|
mClaimed = !mConnection.releaseInterface(iface);
|
||||||
|
if (mClaimed) {
|
||||||
|
Log.e(TAG, "Tried to release claim on USB device, but failed!");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
mClaimed = mConnection.claimInterface(iface, true);
|
||||||
|
if (!mClaimed) {
|
||||||
|
Log.e(TAG, "Tried to regain claim on USB device, but failed!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected class InputThread extends Thread {
|
protected class InputThread extends Thread {
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
|
|||||||
private static final String TAG = "SDL";
|
private static final String TAG = "SDL";
|
||||||
private static final int SDL_MAJOR_VERSION = 3;
|
private static final int SDL_MAJOR_VERSION = 3;
|
||||||
private static final int SDL_MINOR_VERSION = 4;
|
private static final int SDL_MINOR_VERSION = 4;
|
||||||
private static final int SDL_MICRO_VERSION = 8;
|
private static final int SDL_MICRO_VERSION = 10;
|
||||||
/*
|
/*
|
||||||
// Display InputType.SOURCE/CLASS of events and devices
|
// Display InputType.SOURCE/CLASS of events and devices
|
||||||
//
|
//
|
||||||
@@ -530,7 +530,8 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
|
|||||||
|
|
||||||
if (mHIDDeviceManager != null) {
|
if (mHIDDeviceManager != null) {
|
||||||
mHIDDeviceManager.setFrozen(true);
|
mHIDDeviceManager.setFrozen(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!mHasMultiWindow) {
|
if (!mHasMultiWindow) {
|
||||||
pauseNativeThread();
|
pauseNativeThread();
|
||||||
}
|
}
|
||||||
@@ -543,7 +544,8 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
|
|||||||
|
|
||||||
if (mHIDDeviceManager != null) {
|
if (mHIDDeviceManager != null) {
|
||||||
mHIDDeviceManager.setFrozen(false);
|
mHIDDeviceManager.setFrozen(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!mHasMultiWindow) {
|
if (!mHasMultiWindow) {
|
||||||
resumeNativeThread();
|
resumeNativeThread();
|
||||||
}
|
}
|
||||||
@@ -616,6 +618,14 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
|
|||||||
super.onWindowFocusChanged(hasFocus);
|
super.onWindowFocusChanged(hasFocus);
|
||||||
Log.v(TAG, "onWindowFocusChanged(): " + hasFocus);
|
Log.v(TAG, "onWindowFocusChanged(): " + hasFocus);
|
||||||
|
|
||||||
|
// If we are gaining focus, we can always try to restore our USB devices. If we are losing focus,
|
||||||
|
// only try to relinquish them if we don't have background events allowed (for multi-window Android setups).
|
||||||
|
if (hasFocus || !SDLActivity.nativeGetHintBoolean("SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS", false)) {
|
||||||
|
if (mHIDDeviceManager != null) {
|
||||||
|
mHIDDeviceManager.setFrozen(!hasFocus);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (SDLActivity.mBrokenLibraries) {
|
if (SDLActivity.mBrokenLibraries) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1481,11 +1491,11 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
|
|||||||
if (SDLControllerManager.isDeviceSDLJoystick(deviceId)) {
|
if (SDLControllerManager.isDeviceSDLJoystick(deviceId)) {
|
||||||
// Note that we process events with specific key codes here
|
// Note that we process events with specific key codes here
|
||||||
if (event.getAction() == KeyEvent.ACTION_DOWN) {
|
if (event.getAction() == KeyEvent.ACTION_DOWN) {
|
||||||
if (SDLControllerManager.onNativePadDown(deviceId, keyCode)) {
|
if (SDLControllerManager.onNativePadDown(deviceId, keyCode, event.getScanCode())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
} else if (event.getAction() == KeyEvent.ACTION_UP) {
|
} else if (event.getAction() == KeyEvent.ACTION_UP) {
|
||||||
if (SDLControllerManager.onNativePadUp(deviceId, keyCode)) {
|
if (SDLControllerManager.onNativePadUp(deviceId, keyCode, event.getScanCode())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1963,7 +1973,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
|
|||||||
Intent i = new Intent(Intent.ACTION_VIEW);
|
Intent i = new Intent(Intent.ACTION_VIEW);
|
||||||
i.setData(Uri.parse(url));
|
i.setData(Uri.parse(url));
|
||||||
|
|
||||||
int flags = Intent.FLAG_ACTIVITY_NO_HISTORY
|
int flags = Intent.FLAG_ACTIVITY_NO_HISTORY
|
||||||
| Intent.FLAG_ACTIVITY_MULTIPLE_TASK
|
| Intent.FLAG_ACTIVITY_MULTIPLE_TASK
|
||||||
| Intent.FLAG_ACTIVITY_NEW_DOCUMENT;
|
| Intent.FLAG_ACTIVITY_NEW_DOCUMENT;
|
||||||
i.addFlags(flags);
|
i.addFlags(flags);
|
||||||
@@ -2227,3 +2237,4 @@ class SDLClipboardHandler implements
|
|||||||
SDLActivity.onNativeClipboardChanged();
|
SDLActivity.onNativeClipboardChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,10 @@ import android.hardware.lights.Light;
|
|||||||
import android.hardware.lights.LightsRequest;
|
import android.hardware.lights.LightsRequest;
|
||||||
import android.hardware.lights.LightsManager;
|
import android.hardware.lights.LightsManager;
|
||||||
import android.hardware.lights.LightState;
|
import android.hardware.lights.LightState;
|
||||||
|
import android.hardware.Sensor;
|
||||||
|
import android.hardware.SensorEvent;
|
||||||
|
import android.hardware.SensorEventListener;
|
||||||
|
import android.hardware.SensorManager;
|
||||||
import android.graphics.Color;
|
import android.graphics.Color;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.VibrationEffect;
|
import android.os.VibrationEffect;
|
||||||
@@ -30,16 +34,18 @@ public class SDLControllerManager
|
|||||||
static native void nativeAddJoystick(int device_id, String name, String desc,
|
static native void nativeAddJoystick(int device_id, String name, String desc,
|
||||||
int vendor_id, int product_id,
|
int vendor_id, int product_id,
|
||||||
int button_mask,
|
int button_mask,
|
||||||
int naxes, int axis_mask, int nhats, boolean can_rumble, boolean has_rgb_led);
|
int naxes, int axis_mask, int nhats, boolean can_rumble, boolean has_rgb_led,
|
||||||
|
boolean has_accelerometer, boolean has_gyroscope);
|
||||||
static native void nativeRemoveJoystick(int device_id);
|
static native void nativeRemoveJoystick(int device_id);
|
||||||
static native void nativeAddHaptic(int device_id, String name);
|
static native void nativeAddHaptic(int device_id, String name);
|
||||||
static native void nativeRemoveHaptic(int device_id);
|
static native void nativeRemoveHaptic(int device_id);
|
||||||
static public native boolean onNativePadDown(int device_id, int keycode);
|
static public native boolean onNativePadDown(int device_id, int keycode, int scancode);
|
||||||
static public native boolean onNativePadUp(int device_id, int keycode);
|
static public native boolean onNativePadUp(int device_id, int keycode, int scancode);
|
||||||
static native void onNativeJoy(int device_id, int axis,
|
static native void onNativeJoy(int device_id, int axis,
|
||||||
float value);
|
float value);
|
||||||
static native void onNativeHat(int device_id, int hat_id,
|
static native void onNativeHat(int device_id, int hat_id,
|
||||||
int x, int y);
|
int x, int y);
|
||||||
|
static native void onNativeJoySensor(int device_id, int sensor_type, long sensor_timestamp, float x, float y, float z);
|
||||||
|
|
||||||
protected static SDLJoystickHandler mJoystickHandler;
|
protected static SDLJoystickHandler mJoystickHandler;
|
||||||
protected static SDLHapticHandler mHapticHandler;
|
protected static SDLHapticHandler mHapticHandler;
|
||||||
@@ -81,6 +87,13 @@ public class SDLControllerManager
|
|||||||
mJoystickHandler.setLED(device_id, red, green, blue);
|
mJoystickHandler.setLED(device_id, red, green, blue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method is called by SDL using JNI.
|
||||||
|
*/
|
||||||
|
static void joystickSetSensorsEnabled(int device_id, boolean enabled) {
|
||||||
|
mJoystickHandler.setSensorsEnabled(device_id, enabled);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method is called by SDL using JNI.
|
* This method is called by SDL using JNI.
|
||||||
*/
|
*/
|
||||||
@@ -153,6 +166,10 @@ class SDLJoystickHandler {
|
|||||||
ArrayList<InputDevice.MotionRange> hats;
|
ArrayList<InputDevice.MotionRange> hats;
|
||||||
ArrayList<Light> lights;
|
ArrayList<Light> lights;
|
||||||
LightsManager.LightsSession lightsSession;
|
LightsManager.LightsSession lightsSession;
|
||||||
|
SensorManager sensorManager;
|
||||||
|
SDLJoySensorListener sensorListener;
|
||||||
|
Sensor accelerometerSensor;
|
||||||
|
Sensor gyroscopeSensor;
|
||||||
}
|
}
|
||||||
static class RangeComparator implements Comparator<InputDevice.MotionRange> {
|
static class RangeComparator implements Comparator<InputDevice.MotionRange> {
|
||||||
@Override
|
@Override
|
||||||
@@ -225,12 +242,13 @@ class SDLJoystickHandler {
|
|||||||
joystick.desc = getJoystickDescriptor(joystickDevice);
|
joystick.desc = getJoystickDescriptor(joystickDevice);
|
||||||
joystick.axes = new ArrayList<InputDevice.MotionRange>();
|
joystick.axes = new ArrayList<InputDevice.MotionRange>();
|
||||||
joystick.hats = new ArrayList<InputDevice.MotionRange>();
|
joystick.hats = new ArrayList<InputDevice.MotionRange>();
|
||||||
|
java.util.Set<Integer> axisStrsSet = new java.util.HashSet<Integer>();
|
||||||
joystick.lights = new ArrayList<Light>();
|
joystick.lights = new ArrayList<Light>();
|
||||||
|
|
||||||
List<InputDevice.MotionRange> ranges = joystickDevice.getMotionRanges();
|
List<InputDevice.MotionRange> ranges = joystickDevice.getMotionRanges();
|
||||||
Collections.sort(ranges, new RangeComparator());
|
Collections.sort(ranges, new RangeComparator());
|
||||||
for (InputDevice.MotionRange range : ranges) {
|
for (InputDevice.MotionRange range : ranges) {
|
||||||
if ((range.getSource() & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) {
|
if (((range.getSource() & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) && axisStrsSet.add(range.getAxis())) {
|
||||||
if (range.getAxis() == MotionEvent.AXIS_HAT_X || range.getAxis() == MotionEvent.AXIS_HAT_Y) {
|
if (range.getAxis() == MotionEvent.AXIS_HAT_X || range.getAxis() == MotionEvent.AXIS_HAT_Y) {
|
||||||
joystick.hats.add(range);
|
joystick.hats.add(range);
|
||||||
} else {
|
} else {
|
||||||
@@ -241,6 +259,8 @@ class SDLJoystickHandler {
|
|||||||
|
|
||||||
boolean can_rumble = false;
|
boolean can_rumble = false;
|
||||||
boolean has_rgb_led = false;
|
boolean has_rgb_led = false;
|
||||||
|
boolean has_accelerometer = false;
|
||||||
|
boolean has_gyroscope = false;
|
||||||
if (Build.VERSION.SDK_INT >= 31 /* Android 12.0 (S) */) {
|
if (Build.VERSION.SDK_INT >= 31 /* Android 12.0 (S) */) {
|
||||||
VibratorManager vibratorManager = joystickDevice.getVibratorManager();
|
VibratorManager vibratorManager = joystickDevice.getVibratorManager();
|
||||||
int[] vibrators = vibratorManager.getVibratorIds();
|
int[] vibrators = vibratorManager.getVibratorIds();
|
||||||
@@ -258,12 +278,26 @@ class SDLJoystickHandler {
|
|||||||
joystick.lightsSession = lightsManager.openSession();
|
joystick.lightsSession = lightsManager.openSession();
|
||||||
has_rgb_led = true;
|
has_rgb_led = true;
|
||||||
}
|
}
|
||||||
|
SensorManager sensorManager = joystickDevice.getSensorManager();
|
||||||
|
if (sensorManager != null) {
|
||||||
|
joystick.sensorManager = sensorManager;
|
||||||
|
joystick.sensorListener = new SDLJoySensorListener(joystick.device_id);
|
||||||
|
joystick.accelerometerSensor = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
|
||||||
|
if (joystick.accelerometerSensor != null) {
|
||||||
|
has_accelerometer = true;
|
||||||
|
}
|
||||||
|
joystick.gyroscopeSensor = sensorManager.getDefaultSensor(Sensor.TYPE_GYROSCOPE);
|
||||||
|
if (joystick.gyroscopeSensor != null) {
|
||||||
|
has_gyroscope = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mJoysticks.add(joystick);
|
mJoysticks.add(joystick);
|
||||||
SDLControllerManager.nativeAddJoystick(joystick.device_id, joystick.name, joystick.desc,
|
SDLControllerManager.nativeAddJoystick(joystick.device_id, joystick.name, joystick.desc,
|
||||||
getVendorId(joystickDevice), getProductId(joystickDevice),
|
getVendorId(joystickDevice), getProductId(joystickDevice),
|
||||||
getButtonMask(joystickDevice), joystick.axes.size(), getAxisMask(joystick.axes), joystick.hats.size()/2, can_rumble, has_rgb_led);
|
getButtonMask(joystickDevice), joystick.axes.size(), getAxisMask(joystick.axes), joystick.hats.size()/2, can_rumble, has_rgb_led,
|
||||||
|
has_accelerometer, has_gyroscope);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -508,6 +542,31 @@ class SDLJoystickHandler {
|
|||||||
}
|
}
|
||||||
joystick.lightsSession.requestLights(lightsRequest.build());
|
joystick.lightsSession.requestLights(lightsRequest.build());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void setSensorsEnabled(int device_id, boolean enabled) {
|
||||||
|
if (Build.VERSION.SDK_INT < 31 /* Android 12.0 (S) */) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
SDLJoystick joystick = getJoystick(device_id);
|
||||||
|
if (joystick == null || joystick.sensorManager == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (enabled) {
|
||||||
|
if (joystick.accelerometerSensor != null) {
|
||||||
|
SDLSensorManager.registerListener(joystick.sensorManager, joystick.sensorListener, joystick.accelerometerSensor, SensorManager.SENSOR_DELAY_GAME);
|
||||||
|
}
|
||||||
|
if (joystick.gyroscopeSensor != null) {
|
||||||
|
SDLSensorManager.registerListener(joystick.sensorManager, joystick.sensorListener, joystick.gyroscopeSensor, SensorManager.SENSOR_DELAY_GAME);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (joystick.accelerometerSensor != null) {
|
||||||
|
SDLSensorManager.unregisterListener(joystick.sensorManager, joystick.sensorListener, joystick.accelerometerSensor);
|
||||||
|
}
|
||||||
|
if (joystick.gyroscopeSensor != null) {
|
||||||
|
SDLSensorManager.unregisterListener(joystick.sensorManager, joystick.sensorListener, joystick.gyroscopeSensor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SDLHapticHandler_API31 extends SDLHapticHandler {
|
class SDLHapticHandler_API31 extends SDLHapticHandler {
|
||||||
@@ -933,3 +992,19 @@ class SDLGenericMotionListener_API29 extends SDLGenericMotionListener_API26 {
|
|||||||
return penDevice.isExternal() ? SDL_PEN_DEVICE_TYPE_INDIRECT : SDL_PEN_DEVICE_TYPE_DIRECT;
|
return penDevice.isExternal() ? SDL_PEN_DEVICE_TYPE_INDIRECT : SDL_PEN_DEVICE_TYPE_DIRECT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class SDLJoySensorListener implements SensorEventListener {
|
||||||
|
int device_id;
|
||||||
|
|
||||||
|
public SDLJoySensorListener(int device_id) {
|
||||||
|
this.device_id = device_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onAccuracyChanged(Sensor sensor, int accuracy) {}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSensorChanged(SensorEvent event) {
|
||||||
|
SDLControllerManager.onNativeJoySensor(device_id, event.sensor.getType(), event.timestamp, event.values[0], event.values[1], event.values[2]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
package org.libsdl.app;
|
||||||
|
|
||||||
|
import android.hardware.Sensor;
|
||||||
|
import android.hardware.SensorEventListener;
|
||||||
|
import android.hardware.SensorManager;
|
||||||
|
|
||||||
|
// This class coordinates synchronized access to sensor manager registration
|
||||||
|
//
|
||||||
|
// This prevents a java.util.ConcurrentModificationException exception on
|
||||||
|
// Android 16, specifically on the Samsung Tab S9 Ultra.
|
||||||
|
|
||||||
|
class SDLSensorManager
|
||||||
|
{
|
||||||
|
static private SDLSensorManager mManager = new SDLSensorManager();
|
||||||
|
|
||||||
|
public static void registerListener(SensorManager manager, SensorEventListener listener, Sensor sensor, int samplingPeriodUs) {
|
||||||
|
mManager.RegisterListener(manager, listener, sensor, samplingPeriodUs);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void unregisterListener(SensorManager manager, SensorEventListener listener, Sensor sensor) {
|
||||||
|
mManager.UnregisterListener(manager, listener, sensor);
|
||||||
|
}
|
||||||
|
|
||||||
|
private synchronized void RegisterListener(SensorManager manager, SensorEventListener listener, Sensor sensor, int samplingPeriodUs) {
|
||||||
|
manager.registerListener(listener, sensor, samplingPeriodUs, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
private synchronized void UnregisterListener(SensorManager manager, SensorEventListener listener, Sensor sensor) {
|
||||||
|
manager.unregisterListener(listener, sensor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -47,6 +47,9 @@ public class SDLSurface extends SurfaceView implements SurfaceHolder.Callback,
|
|||||||
// Is SurfaceView ready for rendering
|
// Is SurfaceView ready for rendering
|
||||||
protected boolean mIsSurfaceReady;
|
protected boolean mIsSurfaceReady;
|
||||||
|
|
||||||
|
// Is on-screen keyboard visible
|
||||||
|
protected boolean mKeyboardVisible;
|
||||||
|
|
||||||
// Pinch events
|
// Pinch events
|
||||||
private final ScaleGestureDetector scaleGestureDetector;
|
private final ScaleGestureDetector scaleGestureDetector;
|
||||||
|
|
||||||
@@ -213,6 +216,18 @@ public class SDLSurface extends SurfaceView implements SurfaceHolder.Callback,
|
|||||||
WindowInsets.Type.displayCutout());
|
WindowInsets.Type.displayCutout());
|
||||||
|
|
||||||
SDLActivity.onNativeInsetsChanged(combined.left, combined.right, combined.top, combined.bottom);
|
SDLActivity.onNativeInsetsChanged(combined.left, combined.right, combined.top, combined.bottom);
|
||||||
|
|
||||||
|
if (insets.isVisible(WindowInsets.Type.ime())) {
|
||||||
|
if (!mKeyboardVisible) {
|
||||||
|
mKeyboardVisible = true;
|
||||||
|
SDLActivity.onNativeScreenKeyboardShown();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (mKeyboardVisible) {
|
||||||
|
mKeyboardVisible = false;
|
||||||
|
SDLActivity.onNativeScreenKeyboardHidden();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pass these to any child views in case they need them
|
// Pass these to any child views in case they need them
|
||||||
@@ -318,11 +333,11 @@ public class SDLSurface extends SurfaceView implements SurfaceHolder.Callback,
|
|||||||
protected void enableSensor(int sensortype, boolean enabled) {
|
protected void enableSensor(int sensortype, boolean enabled) {
|
||||||
// TODO: This uses getDefaultSensor - what if we have >1 accels?
|
// TODO: This uses getDefaultSensor - what if we have >1 accels?
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
mSensorManager.registerListener(this,
|
SDLSensorManager.registerListener(mSensorManager, this,
|
||||||
mSensorManager.getDefaultSensor(sensortype),
|
mSensorManager.getDefaultSensor(sensortype),
|
||||||
SensorManager.SENSOR_DELAY_GAME, null);
|
SensorManager.SENSOR_DELAY_GAME);
|
||||||
} else {
|
} else {
|
||||||
mSensorManager.unregisterListener(this,
|
SDLSensorManager.unregisterListener(mSensorManager, this,
|
||||||
mSensorManager.getDefaultSensor(sensortype));
|
mSensorManager.getDefaultSensor(sensortype));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<component type="desktop-application">
|
||||||
|
<id>dev.twilitrealm.dusk</id>
|
||||||
|
<launchable type="desktop-id">dev.twilitrealm.dusk.desktop</launchable>
|
||||||
|
<name>Dusklight</name>
|
||||||
|
<summary>Native port of a classic adventure game</summary>
|
||||||
|
<developer id="dev.twilitrealm">
|
||||||
|
<name>Twilit Realm</name>
|
||||||
|
</developer>
|
||||||
|
<url type="homepage">https://twilitrealm.dev</url>
|
||||||
|
<url type="bugtracker">https://github.com/TwilitRealm/dusklight/issues</url>
|
||||||
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
|
<project_license>CC0-1.0</project_license>
|
||||||
|
<content_rating type="oars-1.0"/>
|
||||||
|
<supports>
|
||||||
|
<control>console</control>
|
||||||
|
<control>gamepad</control>
|
||||||
|
</supports>
|
||||||
|
<description>
|
||||||
|
<p>
|
||||||
|
Dusklight is a reverse-engineered reimplementation of a classic adventure game.
|
||||||
|
It aims to be as accurate as possible to the original while also providing new options, enhancements, and tools to customize your experience.
|
||||||
|
</p>
|
||||||
|
</description>
|
||||||
|
|
||||||
|
<provides>
|
||||||
|
<binary>dusklight</binary>
|
||||||
|
<id>dev.twilitrealm.dusk.desktop</id>
|
||||||
|
</provides>
|
||||||
|
|
||||||
|
<releases>
|
||||||
|
<release version="UNRELEASED" date="2026-12-31">
|
||||||
|
<description>
|
||||||
|
<p>Initial Flatpak release.</p>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
|
</releases>
|
||||||
|
</component>
|
||||||
File diff suppressed because it is too large
Load Diff
+53
-3
@@ -16,11 +16,12 @@ body {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
z-index: 1;
|
z-index: 2;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
fps,
|
fps,
|
||||||
|
pipeline-progress,
|
||||||
toast {
|
toast {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border: 1dp #92875B;
|
border: 1dp #92875B;
|
||||||
@@ -98,7 +99,7 @@ toast message row.muted {
|
|||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
toast progress {
|
progress {
|
||||||
height: 4dp;
|
height: 4dp;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
@@ -106,10 +107,50 @@ toast progress {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
toast progress fill {
|
progress fill {
|
||||||
background-color: rgba(194, 164, 45, 80%);
|
background-color: rgba(194, 164, 45, 80%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pipeline-progress {
|
||||||
|
left: 12dp;
|
||||||
|
bottom: 12dp;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
z-index: 100;
|
||||||
|
min-width: 260dp;
|
||||||
|
max-width: 90%;
|
||||||
|
padding: 10dp 16dp 12dp;
|
||||||
|
border-radius: 7dp;
|
||||||
|
overflow: hidden;
|
||||||
|
filter: opacity(0);
|
||||||
|
transition: filter 0.2s linear-in-out;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
pipeline-progress[open] {
|
||||||
|
filter: opacity(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
pipeline-status {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8dp;
|
||||||
|
font-size: 18dp;
|
||||||
|
font-weight: normal;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
icon.pipeline-spinner {
|
||||||
|
width: 1.2em;
|
||||||
|
height: 1.2em;
|
||||||
|
line-height: 1.2em;
|
||||||
|
font-size: 1.2em;
|
||||||
|
color: #C2A42D;
|
||||||
|
text-align: center;
|
||||||
|
transform-origin: center;
|
||||||
|
animation: 1s linear infinite pipeline-spinner-spin;
|
||||||
|
}
|
||||||
|
|
||||||
toast.achievement {
|
toast.achievement {
|
||||||
border: 1dp #C2A42D;
|
border: 1dp #C2A42D;
|
||||||
}
|
}
|
||||||
@@ -310,6 +351,15 @@ logo img.outer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes pipeline-spinner-spin {
|
||||||
|
from {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-height: 640dp) {
|
@media (max-height: 640dp) {
|
||||||
toast {
|
toast {
|
||||||
top: 20dp;
|
top: 20dp;
|
||||||
|
|||||||
@@ -0,0 +1,339 @@
|
|||||||
|
*, *:before, *:after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
font-family: "Fira Sans Condensed";
|
||||||
|
font-weight: bold;
|
||||||
|
color: rgba(248, 244, 232, 90%);
|
||||||
|
z-index: 1;
|
||||||
|
filter: opacity(0);
|
||||||
|
transition: filter 0.2s linear-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
body[open] {
|
||||||
|
filter: opacity(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
body:not([open]) {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
decorator: none;
|
||||||
|
padding: 0;
|
||||||
|
border: 1dp rgba(255, 255, 255, 22%);
|
||||||
|
background-color: rgba(22, 24, 28, 48%);
|
||||||
|
color: rgba(248, 244, 232, 90%);
|
||||||
|
text-align: center;
|
||||||
|
/* backdrop-filter: blur(7dp); */
|
||||||
|
/* box-shadow: 0 6dp 18dp rgba(0, 0, 0, 28%); */
|
||||||
|
transform-origin: center;
|
||||||
|
transition: background-color border-color filter transform 0.08s linear-in-out,
|
||||||
|
opacity 0.2s linear-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.pressed,
|
||||||
|
button.active {
|
||||||
|
background-color: rgba(63, 78, 90, 68%);
|
||||||
|
border-color: rgba(255, 255, 255, 48%);
|
||||||
|
filter: brightness(1.18);
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hidden {
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
button span {
|
||||||
|
display: block;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
button icon {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
button icon glyph {
|
||||||
|
display: block;
|
||||||
|
font-family: "Material Symbols Rounded";
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 24dp;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.midna-icon,
|
||||||
|
.item-icon,
|
||||||
|
.item-count,
|
||||||
|
.oil-meter {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.midna-icon.visible,
|
||||||
|
.item-icon.visible,
|
||||||
|
.item-count.visible,
|
||||||
|
.oil-meter.visible {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trigger-l.active {
|
||||||
|
background-color: rgba(57, 116, 133, 74%);
|
||||||
|
border-color: rgba(128, 222, 234, 72%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.trigger,
|
||||||
|
.skip {
|
||||||
|
border-radius: 23dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trigger {
|
||||||
|
font-size: 22dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-z {
|
||||||
|
background-color: rgba(118, 79, 158, 58%);
|
||||||
|
border-color: rgba(203, 170, 255, 36%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.midna-icon {
|
||||||
|
position: absolute;
|
||||||
|
left: 9dp;
|
||||||
|
top: -1dp;
|
||||||
|
height: 48dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-z.has-icon span,
|
||||||
|
.face.has-item span {
|
||||||
|
position: absolute;
|
||||||
|
font-size: 13dp;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-z.has-icon span {
|
||||||
|
right: 9dp;
|
||||||
|
bottom: 7dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-z.pressed {
|
||||||
|
background-color: rgba(139, 91, 187, 82%);
|
||||||
|
border-color: rgba(220, 194, 255, 70%);
|
||||||
|
}
|
||||||
|
|
||||||
|
action-bar {
|
||||||
|
position: absolute;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
border: 1dp rgba(255, 255, 255, 22%);
|
||||||
|
border-radius: 23dp;
|
||||||
|
background-color: rgba(22, 24, 28, 48%);
|
||||||
|
/* backdrop-filter: blur(7dp); */
|
||||||
|
/* box-shadow: 0 -6dp 18dp rgba(0, 0, 0, 28%); */
|
||||||
|
overflow: hidden;
|
||||||
|
opacity: 1;
|
||||||
|
transform-origin: center;
|
||||||
|
transition: opacity 0.2s linear-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
action-bar:hidden,
|
||||||
|
action-bar:hidden button,
|
||||||
|
action-bar:hidden separator {
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.utility {
|
||||||
|
position: relative;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
width: 56dp;
|
||||||
|
height: 44dp;
|
||||||
|
margin: 0;
|
||||||
|
border-width: 0dp;
|
||||||
|
border-radius: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.utility,
|
||||||
|
.skip {
|
||||||
|
opacity: 0.55;
|
||||||
|
}
|
||||||
|
|
||||||
|
.utility.pressed {
|
||||||
|
background-color: rgba(63, 78, 90, 68%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.utility.pressed,
|
||||||
|
.skip.pressed {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skip {
|
||||||
|
z-index: 1;
|
||||||
|
border-color: rgba(255, 255, 255, 36%);
|
||||||
|
}
|
||||||
|
|
||||||
|
separator {
|
||||||
|
display: block;
|
||||||
|
flex: 0 0 1dp;
|
||||||
|
width: 1dp;
|
||||||
|
height: 24dp;
|
||||||
|
background-color: rgba(255, 255, 255, 18%);
|
||||||
|
opacity: 1;
|
||||||
|
transition: opacity 0.2s linear-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.face {
|
||||||
|
position: absolute;
|
||||||
|
border-radius: 29dp;
|
||||||
|
font-size: 24dp;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-icon {
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
max-width: 76%;
|
||||||
|
max-height: 76%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-count {
|
||||||
|
position: absolute;
|
||||||
|
left: 6dp;
|
||||||
|
bottom: 5dp;
|
||||||
|
min-width: 17dp;
|
||||||
|
height: 15dp;
|
||||||
|
padding: 1dp 3dp;
|
||||||
|
border-radius: 7dp;
|
||||||
|
background-color: rgba(0, 0, 0, 52%);
|
||||||
|
color: rgba(255, 255, 255, 92%);
|
||||||
|
font-size: 12dp;
|
||||||
|
line-height: 13dp;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.oil-meter {
|
||||||
|
position: absolute;
|
||||||
|
left: 12dp;
|
||||||
|
bottom: -5dp;
|
||||||
|
width: 34dp;
|
||||||
|
height: 8dp;
|
||||||
|
padding: 2dp;
|
||||||
|
border: 1dp rgba(42, 32, 18, 82%);
|
||||||
|
border-radius: 4dp;
|
||||||
|
background-color: rgba(18, 14, 10, 70%);
|
||||||
|
/* box-shadow: 0 2dp 6dp rgba(0, 0, 0, 35%); */
|
||||||
|
}
|
||||||
|
|
||||||
|
oil-fill {
|
||||||
|
display: block;
|
||||||
|
width: 0%;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 2dp;
|
||||||
|
background-color: rgb(255, 232, 74);
|
||||||
|
}
|
||||||
|
|
||||||
|
.face.has-item span {
|
||||||
|
right: 6dp;
|
||||||
|
bottom: 6dp;
|
||||||
|
color: rgba(255, 255, 255, 88%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.face.a {
|
||||||
|
border-radius: 37dp;
|
||||||
|
font-size: 31dp;
|
||||||
|
background-color: rgba(34, 112, 123, 62%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.face.b {
|
||||||
|
background-color: rgba(161, 61, 66, 58%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.face.x {
|
||||||
|
background-color: rgba(83, 115, 151, 56%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.face.y {
|
||||||
|
background-color: rgba(113, 91, 150, 54%);
|
||||||
|
}
|
||||||
|
|
||||||
|
button.control.docked-top,
|
||||||
|
action-bar.docked-top {
|
||||||
|
border-top-width: 0dp;
|
||||||
|
border-top-left-radius: 0dp;
|
||||||
|
border-top-right-radius: 0dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.control.docked-bottom,
|
||||||
|
action-bar.docked-bottom {
|
||||||
|
border-bottom-width: 0dp;
|
||||||
|
border-bottom-left-radius: 0dp;
|
||||||
|
border-bottom-right-radius: 0dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.control.docked-left,
|
||||||
|
action-bar.docked-left {
|
||||||
|
border-left-width: 0dp;
|
||||||
|
border-top-left-radius: 0dp;
|
||||||
|
border-bottom-left-radius: 0dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.control.docked-right,
|
||||||
|
action-bar.docked-right {
|
||||||
|
border-right-width: 0dp;
|
||||||
|
border-top-right-radius: 0dp;
|
||||||
|
border-bottom-right-radius: 0dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
touch-stick {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
width: 124dp;
|
||||||
|
height: 124dp;
|
||||||
|
border-radius: 62dp;
|
||||||
|
background-color: rgba(18, 20, 24, 35%);
|
||||||
|
border: 1dp rgba(255, 255, 255, 20%);
|
||||||
|
/* backdrop-filter: blur(7dp); */
|
||||||
|
/* box-shadow: 0 8dp 24dp rgba(0, 0, 0, 24%); */
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
transition: opacity 0.18s linear-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
touch-stick.active {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
stick-ring {
|
||||||
|
position: absolute;
|
||||||
|
left: 18dp;
|
||||||
|
top: 18dp;
|
||||||
|
width: 88dp;
|
||||||
|
height: 88dp;
|
||||||
|
border-radius: 44dp;
|
||||||
|
border: 1dp rgba(255, 255, 255, 18%);
|
||||||
|
}
|
||||||
|
|
||||||
|
stick-knob {
|
||||||
|
position: absolute;
|
||||||
|
width: 48dp;
|
||||||
|
height: 48dp;
|
||||||
|
border-radius: 24dp;
|
||||||
|
background-color: rgba(238, 236, 226, 55%);
|
||||||
|
border: 1dp rgba(255, 255, 255, 45%);
|
||||||
|
}
|
||||||
@@ -0,0 +1,138 @@
|
|||||||
|
body.touch-editor {
|
||||||
|
background-color: rgba(4, 6, 8, 34%);
|
||||||
|
z-index: 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.touch-editor .control,
|
||||||
|
body.touch-editor action-bar {
|
||||||
|
opacity: 0.88;
|
||||||
|
cursor: move;
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.touch-editor .control:hover,
|
||||||
|
body.touch-editor action-bar:hover,
|
||||||
|
body.touch-editor .control.editor-selected,
|
||||||
|
body.touch-editor action-bar.editor-selected {
|
||||||
|
border-color: rgba(255, 232, 128, 80%);
|
||||||
|
filter: brightness(1.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.touch-editor action-bar button,
|
||||||
|
body.touch-editor action-bar separator {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
selection-frame {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 20;
|
||||||
|
border: 2dp rgba(255, 232, 128, 88%);
|
||||||
|
background-color: rgba(255, 232, 128, 7%);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
selection-frame.visible {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
width: 22dp;
|
||||||
|
height: 22dp;
|
||||||
|
border: 2dp rgba(255, 244, 190, 96%);
|
||||||
|
border-radius: 11dp;
|
||||||
|
background-color: rgba(34, 37, 42, 86%);
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.left {
|
||||||
|
left: -12dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.right {
|
||||||
|
right: -12dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.top {
|
||||||
|
top: -12dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.bottom {
|
||||||
|
bottom: -12dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.horizontal {
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -11dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.vertical {
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -11dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.corner.left {
|
||||||
|
left: -12dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.corner.right {
|
||||||
|
right: -12dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.corner.top {
|
||||||
|
top: -12dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize-handle.corner.bottom {
|
||||||
|
bottom: -12dp;
|
||||||
|
}
|
||||||
|
|
||||||
|
editor-toolbar {
|
||||||
|
display: flex;
|
||||||
|
position: absolute;
|
||||||
|
left: 24dp;
|
||||||
|
right: 24dp;
|
||||||
|
top: 50%;
|
||||||
|
z-index: 30;
|
||||||
|
height: 48dp;
|
||||||
|
margin-top: -24dp;
|
||||||
|
gap: 8dp;
|
||||||
|
justify-content: center;
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
editor-toolbar button.editor-command {
|
||||||
|
flex: 0 1 150dp;
|
||||||
|
min-width: 96dp;
|
||||||
|
height: 48dp;
|
||||||
|
padding: 0 14dp;
|
||||||
|
border-radius: 8dp;
|
||||||
|
border: 1dp rgba(255, 255, 255, 26%);
|
||||||
|
background-color: rgba(17, 19, 24, 88%);
|
||||||
|
color: rgba(255, 250, 232, 94%);
|
||||||
|
font-family: "Fira Sans";
|
||||||
|
font-size: 18dp;
|
||||||
|
line-height: 48dp;
|
||||||
|
opacity: 1;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
editor-toolbar button.editor-command span {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
line-height: 48dp;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
editor-toolbar button.editor-command.primary {
|
||||||
|
border-color: rgba(255, 232, 128, 70%);
|
||||||
|
background-color: rgba(96, 82, 38, 90%);
|
||||||
|
}
|
||||||
|
|
||||||
|
editor-toolbar button.editor-command:hover,
|
||||||
|
editor-toolbar button.editor-command:focus-visible {
|
||||||
|
border-color: rgba(255, 244, 190, 92%);
|
||||||
|
background-color: rgba(78, 85, 96, 92%);
|
||||||
|
}
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
#include "os_report.h"
|
#include "os_report.h"
|
||||||
|
|
||||||
Z2SoundObjBase::Z2SoundObjBase()
|
Z2SoundObjBase::Z2SoundObjBase()
|
||||||
#if DEBUG
|
#if PARTIAL_DEBUG || DEBUG
|
||||||
: JSULink<Z2SoundObjBase>(this)
|
: JSULink<Z2SoundObjBase>(this)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
|||||||
+46
-18
@@ -12734,7 +12734,19 @@ void daAlink_c::setMagicArmorBrk(int i_status) {
|
|||||||
|
|
||||||
BOOL daAlink_c::checkMagicArmorHeavy() const {
|
BOOL daAlink_c::checkMagicArmorHeavy() const {
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
return checkMagicArmorWearAbility() && (dComIfGs_getRupee() == 0 && !dusk::getSettings().game.freeMagicArmor);
|
if(!checkMagicArmorWearAbility()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch(dusk::getSettings().game.armorRupeeDrain) {
|
||||||
|
case dusk::MagicArmorMode::NORMAL:
|
||||||
|
return dComIfGs_getRupee() == 0;
|
||||||
|
case dusk::MagicArmorMode::ON_DAMAGE:
|
||||||
|
case dusk::MagicArmorMode::DOUBLE_DEFENSE:
|
||||||
|
case dusk::MagicArmorMode::INVINCIBLE:
|
||||||
|
case dusk::MagicArmorMode::COSMETIC:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
return checkMagicArmorWearAbility() && dComIfGs_getRupee() == 0;
|
return checkMagicArmorWearAbility() && dComIfGs_getRupee() == 0;
|
||||||
#endif
|
#endif
|
||||||
@@ -14796,6 +14808,8 @@ void daAlink_c::deleteEquipItem(BOOL i_isPlaySound, BOOL i_isDeleteKantera) {
|
|||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
mIBChainInterpPrevValid = false;
|
mIBChainInterpPrevValid = false;
|
||||||
mIBChainInterpCurrValid = false;
|
mIBChainInterpCurrValid = false;
|
||||||
|
mHsChainInterpPrevValid = false;
|
||||||
|
mHsChainInterpCurrValid = false;
|
||||||
#endif
|
#endif
|
||||||
field_0x0774 = NULL;
|
field_0x0774 = NULL;
|
||||||
field_0x0778 = NULL;
|
field_0x0778 = NULL;
|
||||||
@@ -18707,7 +18721,7 @@ int daAlink_c::execute() {
|
|||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
// This handles rupee drain and transitions between rupees/no rupees
|
// This handles rupee drain and transitions between rupees/no rupees
|
||||||
// We can skip all of that if the magic armor doesn't use rupees
|
// We can skip all of that if the magic armor doesn't use rupees
|
||||||
if (!dusk::getSettings().game.freeMagicArmor && checkMagicArmorWearAbility() && mClothesChangeWaitTimer == 0) {
|
if (dusk::getSettings().game.armorRupeeDrain.getValue() == dusk::MagicArmorMode::NORMAL && checkMagicArmorWearAbility() && mClothesChangeWaitTimer == 0) {
|
||||||
#else
|
#else
|
||||||
if (checkMagicArmorWearAbility() && mClothesChangeWaitTimer == 0) {
|
if (checkMagicArmorWearAbility() && mClothesChangeWaitTimer == 0) {
|
||||||
#endif
|
#endif
|
||||||
@@ -19768,23 +19782,37 @@ int daAlink_c::draw() {
|
|||||||
dComIfGd_getOpaListDark()->entryImm(mpHookChain, 0);
|
dComIfGd_getOpaListDark()->entryImm(mpHookChain, 0);
|
||||||
|
|
||||||
#if TARGET_PC
|
#if TARGET_PC
|
||||||
if (dusk::frame_interp::is_enabled() &&
|
if (dusk::frame_interp::is_enabled()) {
|
||||||
mEquipItem == dItemNo_IRONBALL_e &&
|
if (mEquipItem == dItemNo_IRONBALL_e &&
|
||||||
mIronBallChainPos != NULL && mIronBallChainAngle != NULL)
|
mIronBallChainPos != NULL && mIronBallChainAngle != NULL)
|
||||||
{
|
{
|
||||||
if (mIBChainInterpCurrValid) {
|
if (mIBChainInterpCurrValid) {
|
||||||
memcpy(mIBChainInterpPrevPos, mIBChainInterpCurrPos, IRON_BALL_CHAIN_COUNT * sizeof(cXyz));
|
memcpy(mIBChainInterpPrevPos, mIBChainInterpCurrPos, IRON_BALL_CHAIN_COUNT * sizeof(cXyz));
|
||||||
memcpy(mIBChainInterpPrevAngle, mIBChainInterpCurrAngle, IRON_BALL_CHAIN_COUNT * sizeof(csXyz));
|
memcpy(mIBChainInterpPrevAngle, mIBChainInterpCurrAngle, IRON_BALL_CHAIN_COUNT * sizeof(csXyz));
|
||||||
mIBChainInterpPrevHandRoot = mIBChainInterpCurrHandRoot;
|
mIBChainInterpPrevHandRoot = mIBChainInterpCurrHandRoot;
|
||||||
mIBChainInterpPrevValid = true;
|
mIBChainInterpPrevValid = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(mIBChainInterpCurrPos, mIronBallChainPos, IRON_BALL_CHAIN_COUNT * sizeof(cXyz));
|
||||||
|
memcpy(mIBChainInterpCurrAngle, mIronBallChainAngle, IRON_BALL_CHAIN_COUNT * sizeof(csXyz));
|
||||||
|
mIBChainInterpCurrHandRoot = mHookshotTopPos;
|
||||||
|
mIBChainInterpCurrValid = true;
|
||||||
|
|
||||||
|
dusk::frame_interp::add_interpolation_callback(&ironBallChainInterpCallback, this);
|
||||||
|
} else {
|
||||||
|
if (mHsChainInterpCurrValid) {
|
||||||
|
mHsChainInterpPrevTop = mHsChainInterpCurrTop;
|
||||||
|
mHsChainInterpPrevRoot = mHsChainInterpCurrRoot;
|
||||||
|
mHsChainInterpPrevSubRoot = mHsChainInterpCurrSubRoot;
|
||||||
|
mHsChainInterpPrevSubTop = mHsChainInterpCurrSubTop;
|
||||||
|
mHsChainInterpPrevValid = true;
|
||||||
|
}
|
||||||
|
mHsChainInterpCurrTop = mHookshotTopPos;
|
||||||
|
mHsChainInterpCurrRoot = mHeldItemRootPos;
|
||||||
|
mHsChainInterpCurrSubRoot = field_0x3810;
|
||||||
|
mHsChainInterpCurrSubTop = mIronBallBgChkPos;
|
||||||
|
mHsChainInterpCurrValid = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy(mIBChainInterpCurrPos, mIronBallChainPos, IRON_BALL_CHAIN_COUNT * sizeof(cXyz));
|
|
||||||
memcpy(mIBChainInterpCurrAngle, mIronBallChainAngle, IRON_BALL_CHAIN_COUNT * sizeof(csXyz));
|
|
||||||
mIBChainInterpCurrHandRoot = mHookshotTopPos;
|
|
||||||
mIBChainInterpCurrValid = true;
|
|
||||||
|
|
||||||
dusk::frame_interp::add_interpolation_callback(&ironBallChainInterpCallback, this);
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user