mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-08 00:52:55 +00:00
Version prep See merge request KartKrew/Kart!148 (cherry picked from commit dfc4b22c911340e330a0f71fabb4a1461b5747ed)2e221946Final v1 colors359d06f1Modify the first shade of Byzantium3a707c09Add options for adjusting deadzone, increase default deadzone from 0.25 to 0.5889ead78Fix wheel animations2d9ae1abDumbass typoe954f0b4Missed a spot5316e63aMerge branch 'next-colors' into 'v1'55db2268Merge branch 'anim-fix' into 'v1'26159aaeMerge branch 'deadzone-bullshit' into 'v1' 30c19caa Update version number 8f07ed77 Update patch.kart hash
59 lines
1.9 KiB
C
59 lines
1.9 KiB
C
/** SRB2 CMake Configuration */
|
|
|
|
#ifndef __CONFIG_H__
|
|
#define __CONFIG_H__
|
|
|
|
/* DO NOT MODIFY config.h DIRECTLY! It will be overwritten by cmake.
|
|
* If you want to change a configuration option here, modify it in
|
|
* your CMakeCache.txt. config.h.in is used as a template for CMake
|
|
* variables, so you can insert them here too.
|
|
*/
|
|
|
|
#ifdef CMAKECONFIG
|
|
|
|
// Base SRB2 hashes
|
|
#define ASSET_HASH_SRB2_SRB "${SRB2_ASSET_srb2.srb_HASH}"
|
|
#ifdef USE_PATCH_DTA
|
|
#define ASSET_HASH_PATCH_DTA "${SRB2_ASSET_patch.dta_HASH}"
|
|
#endif
|
|
|
|
// SRB2Kart-specific hashes
|
|
#define ASSET_HASH_GFX_KART "${SRB2_ASSET_gfx.kart_HASH}"
|
|
#define ASSET_HASH_TEXTURES_KART "${SRB2_ASSET_textures.kart_HASH}"
|
|
#define ASSET_HASH_CHARS_KART "${SRB2_ASSET_chars.kart_HASH}"
|
|
#define ASSET_HASH_MAPS_KART "${SRB2_ASSET_maps.kart_HASH}"
|
|
#ifdef USE_PATCH_KART
|
|
#define ASSET_HASH_PATCH_KART "${SRB2_ASSET_patch.kart_HASH}"
|
|
#endif
|
|
|
|
#define SRB2_COMP_REVISION "${SRB2_COMP_REVISION}"
|
|
#define SRB2_COMP_BRANCH "${SRB2_COMP_BRANCH}"
|
|
|
|
#define CMAKE_ASSETS_DIR "${CMAKE_SOURCE_DIR}/assets"
|
|
|
|
#else
|
|
|
|
/* Manually defined asset hashes for non-CMake builds
|
|
* Last updated 2015 / 05 / 03 - SRB2 v2.1.15 - srb2.srb
|
|
* Last updated 2018 / 12 / 23 - SRB2 v2.1.22 - patch.dta
|
|
* Last updated 2019 / 01 / 18 - Kart v1.0.2 - Main assets
|
|
* Last updated 2019 / 03 / 11 - Kart v1.1.0 - patch.kart
|
|
*/
|
|
|
|
// Base SRB2 hashes
|
|
#define ASSET_HASH_SRB2_SRB "c1b9577687f8a795104aef4600720ea7"
|
|
#ifdef USE_PATCH_DTA
|
|
#define ASSET_HASH_PATCH_DTA "b04fd9624bfd94dc96dcf4f400f7deb4"
|
|
#endif
|
|
|
|
// SRB2Kart-specific hashes
|
|
#define ASSET_HASH_GFX_KART "99c39f223d84ebc78e67ab68f3bead95"
|
|
#define ASSET_HASH_TEXTURES_KART "ec8e9b7535cf585afe72ef277b08f490"
|
|
#define ASSET_HASH_CHARS_KART "e2c428347dde52858a3dacd29fc5b964"
|
|
#define ASSET_HASH_MAPS_KART "1335cd064656aedca359cfbb5233ac4a"
|
|
#ifdef USE_PATCH_KART
|
|
#define ASSET_HASH_PATCH_KART "6461b30bb20754a16a1b582120f55842"
|
|
#endif
|
|
|
|
#endif
|
|
#endif
|