Skip to content

Commit

Permalink
Adds the latest submodule of IEEE PCVI.
Browse files Browse the repository at this point in the history
Also fixes a bug in the demos related to the latest update to IEEE PCVI.
  • Loading branch information
Incrementis committed May 12, 2024
1 parent 128cee7 commit 283d2b5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Demos/Demo_BGEE/Create_and_Distribute.bat
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM --------------------------------------------
REM Changes path to rename sound files extension
REM --------------------------------------------
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
REM Reads all WAV files in folder and renames them accordingly.
For %%c in (*.ogg) Do (
REN "%%c" "%%~nc.wav")
Expand Down Expand Up @@ -262,7 +262,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM Changes path to read sound files
REM --------------------------------
REM https://ss64.com/nt/dir.html; bare(/b) file sorted by name(/o:n)
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
set countedFiles=0
Set index=0
for /f "tokens=*" %%s in ('dir /b /o:n "*.wav"') do (
Expand All @@ -277,7 +277,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM -----------------------------------------------------------
REM Changes path to create init-file to fill it with WeiDU code
REM -----------------------------------------------------------
cd "%MOD_FOLDER%\%%l"
cd %MOD_FOLDER%\%%l
Copy NUL "InitVoxArrays.tpa"
REM --------------------------
REM INITIALIZE DYN ARRAY TEXTS
Expand Down Expand Up @@ -444,7 +444,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM -----------------------------
REM Redistributes all sound files
REM -----------------------------
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
REM https://ss64.com/nt/move.html; https://ss64.com/nt/if.html
REM https://stackoverflow.com/questions/26391925/in-a-batch-file-how-do-you-verify-part-of-a-filename-matches-a-given-string
for /F "tokens=2 delims==" %%w in ('Set soundsetFiles[') do (
Expand Down
8 changes: 4 additions & 4 deletions Demos/Demo_BGIIEE/Create_and_Distribute.bat
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM --------------------------------------------
REM Changes path to rename sound files extension
REM --------------------------------------------
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
REM Reads all WAV files in folder and renames them accordingly.
For %%c in (*.ogg) Do (
REN "%%c" "%%~nc.wav")
Expand Down Expand Up @@ -262,7 +262,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM Changes path to read sound files
REM --------------------------------
REM https://ss64.com/nt/dir.html; bare(/b) file sorted by name(/o:n)
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
set countedFiles=0
Set index=0
for /f "tokens=*" %%s in ('dir /b /o:n "*.wav"') do (
Expand All @@ -277,7 +277,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM -----------------------------------------------------------
REM Changes path to create init-file to fill it with WeiDU code
REM -----------------------------------------------------------
cd "%MOD_FOLDER%\%%l"
cd %MOD_FOLDER%\%%l
Copy NUL "InitVoxArrays.tpa"
REM --------------------------
REM INITIALIZE DYN ARRAY TEXTS
Expand Down Expand Up @@ -444,7 +444,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM -----------------------------
REM Redistributes all sound files
REM -----------------------------
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
REM https://ss64.com/nt/move.html; https://ss64.com/nt/if.html
REM https://stackoverflow.com/questions/26391925/in-a-batch-file-how-do-you-verify-part-of-a-filename-matches-a-given-string
for /F "tokens=2 delims==" %%w in ('Set soundsetFiles[') do (
Expand Down
8 changes: 4 additions & 4 deletions Demos/Demo_IWDEE/Create_and_Distribute.bat
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM --------------------------------------------
REM Changes path to rename sound files extension
REM --------------------------------------------
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
REM Reads all WAV files in folder and renames them accordingly.
For %%c in (*.ogg) Do (
REN "%%c" "%%~nc.wav")
Expand Down Expand Up @@ -262,7 +262,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM Changes path to read sound files
REM --------------------------------
REM https://ss64.com/nt/dir.html; bare(/b) file sorted by name(/o:n)
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
set countedFiles=0
Set index=0
for /f "tokens=*" %%s in ('dir /b /o:n "*.wav"') do (
Expand All @@ -277,7 +277,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM -----------------------------------------------------------
REM Changes path to create init-file to fill it with WeiDU code
REM -----------------------------------------------------------
cd "%MOD_FOLDER%\%%l"
cd %MOD_FOLDER%\%%l
Copy NUL "InitVoxArrays.tpa"
REM --------------------------
REM INITIALIZE DYN ARRAY TEXTS
Expand Down Expand Up @@ -444,7 +444,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM -----------------------------
REM Redistributes all sound files
REM -----------------------------
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
REM https://ss64.com/nt/move.html; https://ss64.com/nt/if.html
REM https://stackoverflow.com/questions/26391925/in-a-batch-file-how-do-you-verify-part-of-a-filename-matches-a-given-string
for /F "tokens=2 delims==" %%w in ('Set soundsetFiles[') do (
Expand Down
8 changes: 4 additions & 4 deletions Demos/Demo_SoD/Create_and_Distribute.bat
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM --------------------------------------------
REM Changes path to rename sound files extension
REM --------------------------------------------
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
REM Reads all WAV files in folder and renames them accordingly.
For %%c in (*.ogg) Do (
REN "%%c" "%%~nc.wav")
Expand Down Expand Up @@ -262,7 +262,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM Changes path to read sound files
REM --------------------------------
REM https://ss64.com/nt/dir.html; bare(/b) file sorted by name(/o:n)
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
set countedFiles=0
Set index=0
for /f "tokens=*" %%s in ('dir /b /o:n "*.wav"') do (
Expand All @@ -277,7 +277,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM -----------------------------------------------------------
REM Changes path to create init-file to fill it with WeiDU code
REM -----------------------------------------------------------
cd "%MOD_FOLDER%\%%l"
cd %MOD_FOLDER%\%%l
Copy NUL "InitVoxArrays.tpa"
REM --------------------------
REM INITIALIZE DYN ARRAY TEXTS
Expand Down Expand Up @@ -444,7 +444,7 @@ for /F "tokens=2 delims==" %%l in ('Set languages[') do (
REM -----------------------------
REM Redistributes all sound files
REM -----------------------------
cd "%VOX_FOLDER%\%%l"
cd %VOX_FOLDER%\%%l
REM https://ss64.com/nt/move.html; https://ss64.com/nt/if.html
REM https://stackoverflow.com/questions/26391925/in-a-batch-file-how-do-you-verify-part-of-a-filename-matches-a-given-string
for /F "tokens=2 delims==" %%w in ('Set soundsetFiles[') do (
Expand Down
2 changes: 1 addition & 1 deletion IEEE-Player-Character-Voice-Installer-

0 comments on commit 283d2b5

Please sign in to comment.