Skip to content

Commit

Permalink
Update rcheevos yet again
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Jan 17, 2024
1 parent 8b5f932 commit 9555563
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 6 deletions.
9 changes: 6 additions & 3 deletions UWP/rcheevos_UWP/rcheevos_UWP.vcxproj
Expand Up @@ -72,6 +72,7 @@
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\runtime_progress.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\trigger.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rcheevos\value.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\aes.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\cdreader.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\hash.c" />
<ClCompile Include="..\..\ext\rcheevos\src\rhash\md5.c" />
Expand Down Expand Up @@ -100,8 +101,10 @@
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings"></ImportGroup>
<ImportGroup Label="Shared"></ImportGroup>
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
Expand All @@ -126,4 +129,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>
5 changes: 4 additions & 1 deletion UWP/rcheevos_UWP/rcheevos_UWP.vcxproj.filters
Expand Up @@ -155,5 +155,8 @@
<ClCompile Include="..\..\ext\rcheevos\src\rc_util.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\..\ext\rcheevos\src\rhash\aes.c">
<Filter>rhash</Filter>
</ClCompile>
</ItemGroup>
</Project>
</Project>
3 changes: 2 additions & 1 deletion android/jni/Android.mk
Expand Up @@ -134,7 +134,8 @@ RCHEEVOS_FILES := \
${SRC}/ext/rcheevos/src/rcheevos/value.c \
${SRC}/ext/rcheevos/src/rhash/cdreader.c \
${SRC}/ext/rcheevos/src/rhash/hash.c \
${SRC}/ext/rcheevos/src/rhash/md5.c
${SRC}/ext/rcheevos/src/rhash/md5.c \
${SRC}/ext/rcheevos/src/rhash/aes.c

ifeq ($(TARGET_ARCH_ABI),arm64-v8a)
ADRENOTOOLS_FILES := \
Expand Down
2 changes: 1 addition & 1 deletion ext/rcheevos
Submodule rcheevos updated 71 files
+28 −30 include/rc_api_editor.h
+14 −18 include/rc_api_info.h
+6 −10 include/rc_api_request.h
+38 −27 include/rc_api_runtime.h
+18 −18 include/rc_api_user.h
+93 −75 include/rc_client.h
+85 −0 include/rc_client_raintegration.h
+8 −10 include/rc_consoles.h
+5 −7 include/rc_error.h
+100 −0 include/rc_export.h
+45 −27 include/rc_hash.h
+27 −31 include/rc_runtime.h
+34 −31 include/rc_runtime_types.h
+17 −19 include/rc_url.h
+4 −6 include/rc_util.h
+52 −6 src/rapi/rc_api_common.c
+6 −7 src/rapi/rc_api_common.h
+11 −0 src/rapi/rc_api_editor.c
+52 −5 src/rapi/rc_api_runtime.c
+9 −2 src/rapi/rc_api_user.c
+623 −85 src/rc_client.c
+132 −0 src/rc_client_external.h
+57 −13 src/rc_client_internal.h
+493 −0 src/rc_client_raintegration.c
+52 −0 src/rc_client_raintegration_internal.h
+4 −6 src/rc_compat.h
+51 −39 src/rc_libretro.c
+23 −25 src/rc_libretro.h
+1 −1 src/rc_util.c
+11 −0 src/rc_version.c
+9 −6 src/rc_version.h
+8 −50 src/rcheevos/alloc.c
+1 −1 src/rcheevos/condset.c
+30 −1 src/rcheevos/consoleinfo.c
+74 −0 src/rcheevos/format.c
+1 −1 src/rcheevos/lboard.c
+4 −9 src/rcheevos/operand.c
+4 −14 src/rcheevos/rc_internal.h
+1 −2 src/rcheevos/rc_validate.c
+2 −6 src/rcheevos/rc_validate.h
+9 −25 src/rcheevos/richpresence.c
+1 −1 src/rcheevos/runtime.c
+1 −1 src/rcheevos/runtime_progress.c
+1 −1 src/rcheevos/value.c
+480 −0 src/rhash/aes.c
+49 −0 src/rhash/aes.h
+1,000 −10 src/rhash/hash.c
+12 −1 test/Makefile
+74 −0 test/rapi/test_rc_api_common.c
+41 −2 test/rapi/test_rc_api_editor.c
+175 −0 test/rapi/test_rc_api_runtime.c
+41 −0 test/rapi/test_rc_api_user.c
+14 −2 test/rcheevos-test.vcxproj
+18 −2 test/rcheevos-test.vcxproj.filters
+133 −0 test/rcheevos/test_condset.c
+4 −2 test/rcheevos/test_consoleinfo.c
+40 −0 test/rcheevos/test_format.c
+2 −2 test/rcheevos/test_rc_validate.c
+43 −0 test/rcheevos/test_richpresence.c
+47 −0 test/rcheevos/test_trigger.c
+94 −0 test/rhash/data.c
+7 −6 test/rhash/data.h
+2 −2 test/rhash/mock_filereader.c
+4 −6 test/rhash/mock_filereader.h
+83 −5 test/rhash/test_hash.c
+17 −0 test/test.c
+787 −59 test/test_rc_client.c
+1,253 −0 test/test_rc_client_external.c
+391 −0 test/test_rc_client_raintegration.c
+84 −1 test/test_rc_libretro.c
+3 −3 validator/validator.c
1 change: 1 addition & 0 deletions ext/rcheevos-build/CMakeLists.txt
Expand Up @@ -38,6 +38,7 @@ set(ALL_SOURCE_FILES
# rhash
${SRC_DIR}/rhash/cdreader.c
${SRC_DIR}/rhash/hash.c
${SRC_DIR}/rhash/aes.c
${SRC_DIR}/rhash/md5.c
${SRC_DIR}/rhash/md5.h
)
Expand Down
1 change: 1 addition & 0 deletions ext/rcheevos-build/rcheevos.vcxproj
Expand Up @@ -57,6 +57,7 @@
<ClCompile Include="..\rcheevos\src\rc_client.c" />
<ClCompile Include="..\rcheevos\src\rc_compat.c" />
<ClCompile Include="..\rcheevos\src\rc_util.c" />
<ClCompile Include="..\rcheevos\src\rhash\aes.c" />
<ClCompile Include="..\rcheevos\src\rhash\cdreader.c" />
<ClCompile Include="..\rcheevos\src\rhash\hash.c" />
<ClCompile Include="..\rcheevos\src\rhash\md5.c" />
Expand Down
3 changes: 3 additions & 0 deletions ext/rcheevos-build/rcheevos.vcxproj.filters
Expand Up @@ -90,6 +90,9 @@
<ClCompile Include="..\rcheevos\src\rc_util.c">
<Filter>rcheevos</Filter>
</ClCompile>
<ClCompile Include="..\rcheevos\src\rhash\aes.c">
<Filter>rhash</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\rcheevos\src\rapi\rc_api_common.h">
Expand Down
1 change: 1 addition & 0 deletions libretro/Makefile.common
Expand Up @@ -220,6 +220,7 @@ SOURCES_C += \
$(EXTDIR)/rcheevos/src/rcheevos/runtime_progress.c \
$(EXTDIR)/rcheevos/src/rcheevos/trigger.c \
$(EXTDIR)/rcheevos/src/rcheevos/value.c \
$(EXTDIR)/rcheevos/src/rhash/aes.c \
$(EXTDIR)/rcheevos/src/rhash/cdreader.c \
$(EXTDIR)/rcheevos/src/rhash/hash.c \
$(EXTDIR)/rcheevos/src/rhash/md5.c
Expand Down

0 comments on commit 9555563

Please sign in to comment.