From 345bd1d2beb937c3bf88b84471231468139a8164 Mon Sep 17 00:00:00 2001 From: arDTDev Date: Sun, 30 Nov 2025 10:33:16 +0900 Subject: [PATCH] .. --- .../CharacterActionControl.vcxproj | 2 + .../Client/GlobalScript/GlobalScript.vcxproj | 2 + Client/Client/RYLClient/RYLClient.vcxproj | 5 +- .../Client/ScriptEngine/ScriptEngine.vcxproj | 2 + Client/Client/fix_runtime_library.ps1 | 56 ------------------ Game/NeoRylClient.exp | Bin 920 -> 0 bytes Game/NeoRylClient.lib | Bin 2152 -> 0 bytes .../Microsoft.Cpp.Win32.user.props | 2 +- 8 files changed, 11 insertions(+), 58 deletions(-) delete mode 100644 Client/Client/fix_runtime_library.ps1 delete mode 100644 Game/NeoRylClient.exp delete mode 100644 Game/NeoRylClient.lib diff --git a/Client/Client/CharacterActionControl/CharacterActionControl.vcxproj b/Client/Client/CharacterActionControl/CharacterActionControl.vcxproj index d2759bc..185abf4 100644 --- a/Client/Client/CharacterActionControl/CharacterActionControl.vcxproj +++ b/Client/Client/CharacterActionControl/CharacterActionControl.vcxproj @@ -105,6 +105,7 @@ Level3 EditAndContinue + 4996;4819;4482;%(DisableSpecificWarnings) MultiThreadedDebug @@ -122,6 +123,7 @@ ProgramDatabase true StreamingSIMDExtensions2 + 4996;4819;4482;%(DisableSpecificWarnings) $(OutDir)CharacterActionControl.lib diff --git a/Client/Client/GlobalScript/GlobalScript.vcxproj b/Client/Client/GlobalScript/GlobalScript.vcxproj index 52e6a47..d915932 100644 --- a/Client/Client/GlobalScript/GlobalScript.vcxproj +++ b/Client/Client/GlobalScript/GlobalScript.vcxproj @@ -105,6 +105,7 @@ Level3 EditAndContinue + 4996;4819;4482;%(DisableSpecificWarnings) MultiThreadedDebug @@ -122,6 +123,7 @@ ProgramDatabase true StreamingSIMDExtensions2 + 4996;4819;4482;%(DisableSpecificWarnings) $(OutDir)GlobalScript.lib diff --git a/Client/Client/RYLClient/RYLClient.vcxproj b/Client/Client/RYLClient/RYLClient.vcxproj index 739888e..5e20936 100644 --- a/Client/Client/RYLClient/RYLClient.vcxproj +++ b/Client/Client/RYLClient/RYLClient.vcxproj @@ -113,6 +113,7 @@ Level3 EditAndContinue + 4996;4819;4482;%(DisableSpecificWarnings) false false true @@ -122,7 +123,7 @@ ws2_32.lib;dsound.lib;eaxguid.lib;d3d8.lib;d3dx8.lib;dxguid.lib;dinput8.lib;shlwapi.lib;ole32.lib;wbemuuid.lib;winmm.lib;dxerr8.lib;odbc32.lib;odbccp32.lib;iphlpapi.lib;ijl15.lib;imm32.lib;../../Engine/SoundLib/vorbis_sdk/lib/ogg_static_d.lib;../../Engine/SoundLib/vorbis_sdk/lib/vorbis_static_d.lib;../../Engine/SoundLib/vorbis_sdk/lib/vorbisfile_static_d.lib;luad.lib;%(AdditionalDependencies) $(OutDir)Client.exe ../../Engine/SoundLib/vorbis_sdk/lib;../../Library/Debug;%(AdditionalLibraryDirectories) - %(IgnoreSpecificDefaultLibraries) + LIBC;LIBCD;MSVCRT;MSVCRTD;LIBCMT;%(IgnoreSpecificDefaultLibraries) true $(OutDir)Client.pdb Windows @@ -150,6 +151,7 @@ ProgramDatabase StreamingSIMDExtensions2 true + 4996;4819;4482;%(DisableSpecificWarnings) ws2_32.lib;dsound.lib;eaxguid.lib;d3d8.lib;d3dx8.lib;dxguid.lib;dinput8.lib;shlwapi.lib;ole32.lib;wbemuuid.lib;winmm.lib;dxerr8.lib;odbc32.lib;odbccp32.lib;iphlpapi.lib;ijl15.lib;imm32.lib;lua.lib;../../Engine/SoundLib/vorbis_sdk/lib/ogg_static.lib;../../Engine/SoundLib/vorbis_sdk/lib/vorbis_static.lib;../../Engine/SoundLib/vorbis_sdk/lib/vorbisfile_static.lib;%(AdditionalDependencies) @@ -162,6 +164,7 @@ true MachineX86 Client.exe.manifest + LIBC;LIBCD;MSVCRT;MSVCRTD;LIBCMTD;%(IgnoreSpecificDefaultLibraries) NDEBUG;%(PreprocessorDefinitions) diff --git a/Client/Client/ScriptEngine/ScriptEngine.vcxproj b/Client/Client/ScriptEngine/ScriptEngine.vcxproj index 6638dc4..84a8c8b 100644 --- a/Client/Client/ScriptEngine/ScriptEngine.vcxproj +++ b/Client/Client/ScriptEngine/ScriptEngine.vcxproj @@ -105,6 +105,7 @@ Level3 EditAndContinue + 4996;4819;4482;%(DisableSpecificWarnings) MultiThreadedDebug @@ -122,6 +123,7 @@ ProgramDatabase StreamingSIMDExtensions2 true + 4996;4819;4482;%(DisableSpecificWarnings) $(OutDir)ScriptEngine.lib diff --git a/Client/Client/fix_runtime_library.ps1 b/Client/Client/fix_runtime_library.ps1 deleted file mode 100644 index d3b5dd9..0000000 --- a/Client/Client/fix_runtime_library.ps1 +++ /dev/null @@ -1,56 +0,0 @@ -# Fix Runtime Library Settings for All Projects -# Changes all Debug configurations to /MDd (MultiThreadedDebugDLL) -# Changes all Release configurations to /MD (MultiThreadedDLL) - -Write-Host "========================================" -ForegroundColor Cyan -Write-Host "Runtime Library Fix Script" -ForegroundColor Cyan -Write-Host "========================================`n" -ForegroundColor Cyan - -$projectFiles = Get-ChildItem -Recurse -Filter "*.vcxproj" | Where-Object { - $_.Name -notlike "*LUA.vcxproj" # LUA project may need different settings -} - -$totalFiles = $projectFiles.Count -$currentFile = 0 - -Write-Host "Found $totalFiles project files to process`n" -ForegroundColor Green - -foreach ($file in $projectFiles) { - $currentFile++ - Write-Host "[$currentFile/$totalFiles] Processing: $($file.Name)" -ForegroundColor Yellow - - $content = Get-Content $file.FullName -Raw -Encoding UTF8 - $originalContent = $content - - # Debug configurations: Change to MultiThreadedDebugDLL (/MDd) - $content = $content -replace 'MultiThreadedDebug', 'MultiThreadedDebugDLL' - - # Release configurations: Change to MultiThreadedDLL (/MD) - $content = $content -replace 'MultiThreaded', 'MultiThreadedDLL' - - if ($content -ne $originalContent) { - # Backup original file - $backupPath = $file.FullName + ".bak" - Copy-Item $file.FullName $backupPath -Force - - # Save modified content - [System.IO.File]::WriteAllText($file.FullName, $content, [System.Text.Encoding]::UTF8) - Write-Host " -> Modified (backup saved as $($file.Name).bak)" -ForegroundColor Green - } else { - Write-Host " -> No changes needed" -ForegroundColor Gray - } -} - -Write-Host "`n========================================" -ForegroundColor Cyan -Write-Host "Summary" -ForegroundColor Cyan -Write-Host "========================================" -ForegroundColor Cyan -Write-Host "Processed $totalFiles project files" -ForegroundColor Green -Write-Host "`nAll Debug configurations -> /MDd (MultiThreadedDebugDLL)" -ForegroundColor Green -Write-Host "All Release configurations -> /MD (MultiThreadedDLL)" -ForegroundColor Green -Write-Host "`nBackup files created with .bak extension" -ForegroundColor Yellow -Write-Host "`nNext steps:" -ForegroundColor Cyan -Write-Host "1. Close Visual Studio if it's open" -ForegroundColor White -Write-Host "2. Run: Clean solution (delete Intermediate/ folder)" -ForegroundColor White -Write-Host "3. Rebuild solution" -ForegroundColor White -Write-Host "`nPress any key to exit..." -ForegroundColor Gray -$null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown") diff --git a/Game/NeoRylClient.exp b/Game/NeoRylClient.exp deleted file mode 100644 index 11d6083324d76529c2fec0b987102887a7482f59..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 920 zcma)5O;6iE5FLlMp{R%EObXGwQg6*{D-2Ybtb^|HG#1c~h+uL^kFipgi z#fi_@_vRONT<`w~WhfKr2J&3^tj5?cEUfqUk?aS`JBer2&1TQ8vE~jTR=xT621R&> z(E@rAOvD#DDkHwsQ3a7sTm&2Om5w$LU+bu@k?zvIJM>R@ycIA?7=mS0v#aHfM71N7 za~8}_G=_E9DiyJenrB85EZ-P#D7{F<>UUyRoK>^E-}wp`@VNxu#E0%j-c@Pj3GS!~ zcaDzDZ;|>VyoAS*$Fs-hi}SOc5kM2fome`I+>yB_0}-2*X=8JhKQ`;hICTTFo20%} zX3e&2-rMB^8S+4eCt3xlLZd_q&Mn6VZXmhmlZAO|G`6I_d~*#C4>X&npCdJ1fcU(F z^90z!EMubK_!JW$v2rG>BGGbYaunfr+?X-tj*V7>)-&b3-J=RoB#j- diff --git a/Game/NeoRylClient.lib b/Game/NeoRylClient.lib deleted file mode 100644 index d11a5f02bb1192410fd02cb6b83f2a266346889e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2152 zcmcIl&2G~`5FR^e3l@hExD`Z@Dp5Fu#C4NYLS)?^iKtE*(u7J}w)rvCB2B8sl`1a0 z0FOX#JVV6^^#M3=;MhY?c?`;o?TsC1VIzfAc4v2XGCT9_H|vMbnuqPZ=i1ZMc+2K< z#!^0$)AezECRpnELNMFa0ALP4Jq3uL1I#9I*$Vm)<&g7Ixw=)W^YxAGwOXlK->UJo zu4DIH;JnhXtUveRgKyw(*IzU$n|$4@n@}ufc=^b+kJ-TOF!s{iU^@nH^qijKI?b;0 z-tMq0W3SP(vwy&)&5K2Ym(U0A_S^3UBj=|1DwAdADvc4RGPV;VS_l!HK}b(kfb%#& zau%S4_ztn-58^Nb3aFlp$>SlL;N({|A=1KJ2E*%E;FBY5AKO04|6;4LB6z#2SxOAP zEgqaiA_m&?AFoSg>8Qcz;NP{dF&$eaas zxj+rKaPkxTg;1bmkUGOFhTCw{(`sQ-kKj&%uA1CYqY9fpNtT`VVSmtn - $(ExecutablePath) + $(VCInstallDir)bin;$(WindowsSdkDir)bin;$(VSInstallDir)Common7\Tools;$(VSInstallDir)Common7\IDE;$(ExecutablePath) $(IncludePath);D:\RowProjeckt\Client\Library\dxx8\include