diff --git a/biscottihud/customization default.bat b/biscottihud/customization default.bat new file mode 100644 index 0000000..402ed69 --- /dev/null +++ b/biscottihud/customization default.bat @@ -0,0 +1,12 @@ +for /f "delims=" %%a in ('dir /b/ad "customization\manual\*#*(default)*"') do xcopy /c /e /i /q /y "customization\manual\%%a" + +rem You can add your own lines like this: +rem for /f "delims=" %%a in ('dir /b/ad "customization\manual\[HITMARKER] konrwings #*"') do xcopy /c /e /i /q /y "customization\manual\%%a" +rem The for loop is just to ensure that it still finds the folder if you add or change the (tag) at the end. Because of the wildcard (* (<--asterisk)). +rem The # is to signify the end of the regular file name. It's fine to add anything after that. + +rem You can also add the tag "(default)" at the end of the folder name in customization/manual. +rem e.g. "[CLASS MENU] small model # (default)" + +rem But, I mean, I kind of made the "customization modified" .bat file for all that. +rem But you can do it here too. diff --git a/biscottihud/customization modified.bat b/biscottihud/customization modified.bat new file mode 100644 index 0000000..4c6e6ef --- /dev/null +++ b/biscottihud/customization modified.bat @@ -0,0 +1,9 @@ +for /f "delims=" %%a in ('dir /b/ad "customization\manual\*#*(modified)*"') do xcopy /c /e /i /q /y "customization\manual\%%a" + +rem You can add your own lines like this: +rem for /f "delims=" %%a in ('dir /b/ad "customization\manual\[HITMARKER] konrwings #*"') do xcopy /c /e /i /q /y "customization\manual\%%a" +rem The for loop is just to ensure that it still finds the folder if you add or change the (tag) at the end. Because of the wildcard (* (<--asterisk)). +rem The # is to signify the end of the regular file name. It's fine to add anything after that. + +rem You can also add the tag "(modified)" at the end of the folder name in customization/manual. +rem e.g. "[CLASS MENU] small model # (modified)" diff --git a/biscottihud/customization/[!BACKGROUNDS PACK] black # (default).bat b/biscottihud/customization/[!BACKGROUNDS PACK] black # (default).bat new file mode 100644 index 0000000..c2a4516 --- /dev/null +++ b/biscottihud/customization/[!BACKGROUNDS PACK] black # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[!BACKGROUNDS PACK] black #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[!BACKGROUNDS PACK] coloured #.bat b/biscottihud/customization/[!BACKGROUNDS PACK] coloured #.bat new file mode 100644 index 0000000..1cdcce8 --- /dev/null +++ b/biscottihud/customization/[!BACKGROUNDS PACK] coloured #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[!BACKGROUNDS PACK] coloured #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[!LEGACY] scabber's HUD #.bat b/biscottihud/customization/[!LEGACY] scabber's HUD #.bat new file mode 100644 index 0000000..d507106 --- /dev/null +++ b/biscottihud/customization/[!LEGACY] scabber's HUD #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[!LEGACY] scabber's HUD #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[BISON MANGLER 6000] ammo # (default).bat b/biscottihud/customization/[BISON MANGLER 6000] ammo # (default).bat new file mode 100644 index 0000000..27e3887 --- /dev/null +++ b/biscottihud/customization/[BISON MANGLER 6000] ammo # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[BISON MANGLER 6000] ammo #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[BISON MANGLER 6000] centered #.bat b/biscottihud/customization/[BISON MANGLER 6000] centered #.bat new file mode 100644 index 0000000..b89ef91 --- /dev/null +++ b/biscottihud/customization/[BISON MANGLER 6000] centered #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[BISON MANGLER 6000] centered #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[BOX LINES HORIZONTAL] off # (default).bat b/biscottihud/customization/[BOX LINES HORIZONTAL] off # (default).bat new file mode 100644 index 0000000..cb61c4e --- /dev/null +++ b/biscottihud/customization/[BOX LINES HORIZONTAL] off # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[BOX LINES HORIZONTAL] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[BOX LINES HORIZONTAL] on #.bat b/biscottihud/customization/[BOX LINES HORIZONTAL] on #.bat new file mode 100644 index 0000000..c3b3b83 --- /dev/null +++ b/biscottihud/customization/[BOX LINES HORIZONTAL] on #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[BOX LINES HORIZONTAL] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[BOX LINES VERTICAL] off # (default).bat b/biscottihud/customization/[BOX LINES VERTICAL] off # (default).bat new file mode 100644 index 0000000..a88d78b --- /dev/null +++ b/biscottihud/customization/[BOX LINES VERTICAL] off # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[BOX LINES VERTICAL] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[BOX LINES VERTICAL] on #.bat b/biscottihud/customization/[BOX LINES VERTICAL] on #.bat new file mode 100644 index 0000000..b086175 --- /dev/null +++ b/biscottihud/customization/[BOX LINES VERTICAL] on #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[BOX LINES VERTICAL] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[BOX TRANSPARENCY] fulltrans #.bat b/biscottihud/customization/[BOX TRANSPARENCY] fulltrans #.bat new file mode 100644 index 0000000..9c91d60 --- /dev/null +++ b/biscottihud/customization/[BOX TRANSPARENCY] fulltrans #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[BOX TRANSPARENCY] fulltrans #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[BOX TRANSPARENCY] semi-trans # (default).bat b/biscottihud/customization/[BOX TRANSPARENCY] semi-trans # (default).bat new file mode 100644 index 0000000..1ed55e8 --- /dev/null +++ b/biscottihud/customization/[BOX TRANSPARENCY] semi-trans # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[BOX TRANSPARENCY] semi-trans #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[BOX TRANSPARENCY] solid #.bat b/biscottihud/customization/[BOX TRANSPARENCY] solid #.bat new file mode 100644 index 0000000..11585c7 --- /dev/null +++ b/biscottihud/customization/[BOX TRANSPARENCY] solid #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[BOX TRANSPARENCY] solid #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[CHAT] bigger font #.bat b/biscottihud/customization/[CHAT] bigger font #.bat new file mode 100644 index 0000000..daaac6f --- /dev/null +++ b/biscottihud/customization/[CHAT] bigger font #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[CHAT] bigger font #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[CHAT] stock font # (default).bat b/biscottihud/customization/[CHAT] stock font # (default).bat new file mode 100644 index 0000000..84c8369 --- /dev/null +++ b/biscottihud/customization/[CHAT] stock font # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[CHAT] stock font #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[CLASS MENU] giant model # (default).bat b/biscottihud/customization/[CLASS MENU] giant model # (default).bat new file mode 100644 index 0000000..7bdd8d7 --- /dev/null +++ b/biscottihud/customization/[CLASS MENU] giant model # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[CLASS MENU] giant model #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[CLASS MENU] small model #.bat b/biscottihud/customization/[CLASS MENU] small model #.bat new file mode 100644 index 0000000..c8f74a6 --- /dev/null +++ b/biscottihud/customization/[CLASS MENU] small model #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[CLASS MENU] small model #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[COLOURS HP] blue-red #.bat b/biscottihud/customization/[COLOURS HP] blue-red #.bat new file mode 100644 index 0000000..4c06772 --- /dev/null +++ b/biscottihud/customization/[COLOURS HP] blue-red #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[COLOURS HP] blue-red #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[COLOURS HP] green-orange # (default).bat b/biscottihud/customization/[COLOURS HP] green-orange # (default).bat new file mode 100644 index 0000000..3ddd09e --- /dev/null +++ b/biscottihud/customization/[COLOURS HP] green-orange # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[COLOURS HP] green-orange #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[COLOURS UBER] magenta # (default).bat b/biscottihud/customization/[COLOURS UBER] magenta # (default).bat new file mode 100644 index 0000000..684a9f1 --- /dev/null +++ b/biscottihud/customization/[COLOURS UBER] magenta # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[COLOURS UBER] magenta #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[COLOURS UBER] slinfire #.bat b/biscottihud/customization/[COLOURS UBER] slinfire #.bat new file mode 100644 index 0000000..8189ddf --- /dev/null +++ b/biscottihud/customization/[COLOURS UBER] slinfire #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[COLOURS UBER] slinfire #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[CROSSHAIR] notch in brackets #.bat b/biscottihud/customization/[CROSSHAIR] notch in brackets #.bat new file mode 100644 index 0000000..a550b5d --- /dev/null +++ b/biscottihud/customization/[CROSSHAIR] notch in brackets #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[CROSSHAIR] notch in brackets #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[CROSSHAIR] off # (default).bat b/biscottihud/customization/[CROSSHAIR] off # (default).bat new file mode 100644 index 0000000..a03b73e --- /dev/null +++ b/biscottihud/customization/[CROSSHAIR] off # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[CROSSHAIR] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[CROSSHAIR] seeker #.bat b/biscottihud/customization/[CROSSHAIR] seeker #.bat new file mode 100644 index 0000000..e3f8f8f --- /dev/null +++ b/biscottihud/customization/[CROSSHAIR] seeker #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[CROSSHAIR] seeker #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[CROSSHAIR] sniper #.bat b/biscottihud/customization/[CROSSHAIR] sniper #.bat new file mode 100644 index 0000000..b405d50 --- /dev/null +++ b/biscottihud/customization/[CROSSHAIR] sniper #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[CROSSHAIR] sniper #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[CROSSHAIR] split in circle #.bat b/biscottihud/customization/[CROSSHAIR] split in circle #.bat new file mode 100644 index 0000000..01a20b2 --- /dev/null +++ b/biscottihud/customization/[CROSSHAIR] split in circle #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[CROSSHAIR] split in circle #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[DISGUISE SILHOUETTE] bottom left #.bat b/biscottihud/customization/[DISGUISE SILHOUETTE] bottom left #.bat new file mode 100644 index 0000000..6771f96 --- /dev/null +++ b/biscottihud/customization/[DISGUISE SILHOUETTE] bottom left #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[DISGUISE SILHOUETTE] bottom left #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[DISGUISE SILHOUETTE] bottom right # (default).bat b/biscottihud/customization/[DISGUISE SILHOUETTE] bottom right # (default).bat new file mode 100644 index 0000000..f20e8c5 --- /dev/null +++ b/biscottihud/customization/[DISGUISE SILHOUETTE] bottom right # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[DISGUISE SILHOUETTE] bottom right #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[DISGUISE SILHOUETTE] center #.bat b/biscottihud/customization/[DISGUISE SILHOUETTE] center #.bat new file mode 100644 index 0000000..a7f13c2 --- /dev/null +++ b/biscottihud/customization/[DISGUISE SILHOUETTE] center #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[DISGUISE SILHOUETTE] center #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[DISGUISE SILHOUETTE] center left #.bat b/biscottihud/customization/[DISGUISE SILHOUETTE] center left #.bat new file mode 100644 index 0000000..fca0ad8 --- /dev/null +++ b/biscottihud/customization/[DISGUISE SILHOUETTE] center left #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[DISGUISE SILHOUETTE] center left #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[DISGUISE SILHOUETTE] center right #.bat b/biscottihud/customization/[DISGUISE SILHOUETTE] center right #.bat new file mode 100644 index 0000000..9c23280 --- /dev/null +++ b/biscottihud/customization/[DISGUISE SILHOUETTE] center right #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[DISGUISE SILHOUETTE] center right #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[DISGUISE SILHOUETTE] far left #.bat b/biscottihud/customization/[DISGUISE SILHOUETTE] far left #.bat new file mode 100644 index 0000000..9d073ca --- /dev/null +++ b/biscottihud/customization/[DISGUISE SILHOUETTE] far left #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[DISGUISE SILHOUETTE] far left #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[DISGUISE SILHOUETTE] far right #.bat b/biscottihud/customization/[DISGUISE SILHOUETTE] far right #.bat new file mode 100644 index 0000000..e558656 --- /dev/null +++ b/biscottihud/customization/[DISGUISE SILHOUETTE] far right #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[DISGUISE SILHOUETTE] far right #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[DISGUISE SILHOUETTE] off #.bat b/biscottihud/customization/[DISGUISE SILHOUETTE] off #.bat new file mode 100644 index 0000000..fa2ff69 --- /dev/null +++ b/biscottihud/customization/[DISGUISE SILHOUETTE] off #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[DISGUISE SILHOUETTE] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HITMARKER] brackets #.bat b/biscottihud/customization/[HITMARKER] brackets #.bat new file mode 100644 index 0000000..50847d4 --- /dev/null +++ b/biscottihud/customization/[HITMARKER] brackets #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HITMARKER] brackets #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HITMARKER] crosshair2 alpha #.bat b/biscottihud/customization/[HITMARKER] crosshair2 alpha #.bat new file mode 100644 index 0000000..2238d92 --- /dev/null +++ b/biscottihud/customization/[HITMARKER] crosshair2 alpha #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HITMARKER] crosshair2 alpha #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HITMARKER] crosshair2 colour #.bat b/biscottihud/customization/[HITMARKER] crosshair2 colour #.bat new file mode 100644 index 0000000..79d60af --- /dev/null +++ b/biscottihud/customization/[HITMARKER] crosshair2 colour #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HITMARKER] crosshair2 colour #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HITMARKER] half circle #.bat b/biscottihud/customization/[HITMARKER] half circle #.bat new file mode 100644 index 0000000..8d29a1c --- /dev/null +++ b/biscottihud/customization/[HITMARKER] half circle #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HITMARKER] half circle #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HITMARKER] konrwings #.bat b/biscottihud/customization/[HITMARKER] konrwings #.bat new file mode 100644 index 0000000..5a3b66d --- /dev/null +++ b/biscottihud/customization/[HITMARKER] konrwings #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HITMARKER] konrwings #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HITMARKER] off # (default).bat b/biscottihud/customization/[HITMARKER] off # (default).bat new file mode 100644 index 0000000..6cab2f8 --- /dev/null +++ b/biscottihud/customization/[HITMARKER] off # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HITMARKER] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HP SELF OVERHEAL CROSS] off # (default).bat b/biscottihud/customization/[HP SELF OVERHEAL CROSS] off # (default).bat new file mode 100644 index 0000000..f9f0a32 --- /dev/null +++ b/biscottihud/customization/[HP SELF OVERHEAL CROSS] off # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HP SELF OVERHEAL CROSS] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HP SELF OVERHEAL CROSS] on #.bat b/biscottihud/customization/[HP SELF OVERHEAL CROSS] on #.bat new file mode 100644 index 0000000..7c49478 --- /dev/null +++ b/biscottihud/customization/[HP SELF OVERHEAL CROSS] on #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HP SELF OVERHEAL CROSS] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HP SELF STYLE] cross armor #.bat b/biscottihud/customization/[HP SELF STYLE] cross armor #.bat new file mode 100644 index 0000000..f72f097 --- /dev/null +++ b/biscottihud/customization/[HP SELF STYLE] cross armor #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HP SELF STYLE] cross armor #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HP SELF STYLE] cross dropshadow #.bat b/biscottihud/customization/[HP SELF STYLE] cross dropshadow #.bat new file mode 100644 index 0000000..cfb83a8 --- /dev/null +++ b/biscottihud/customization/[HP SELF STYLE] cross dropshadow #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HP SELF STYLE] cross dropshadow #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HP SELF STYLE] no cross # (default).bat b/biscottihud/customization/[HP SELF STYLE] no cross # (default).bat new file mode 100644 index 0000000..3c712af --- /dev/null +++ b/biscottihud/customization/[HP SELF STYLE] no cross # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HP SELF STYLE] no cross #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HP SPEC STYLE] cross #.bat b/biscottihud/customization/[HP SPEC STYLE] cross #.bat new file mode 100644 index 0000000..d181355 --- /dev/null +++ b/biscottihud/customization/[HP SPEC STYLE] cross #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HP SPEC STYLE] cross #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HP SPEC STYLE] cube # (default).bat b/biscottihud/customization/[HP SPEC STYLE] cube # (default).bat new file mode 100644 index 0000000..bc89a95 --- /dev/null +++ b/biscottihud/customization/[HP SPEC STYLE] cube # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HP SPEC STYLE] cube #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HP SPEC STYLE] cube + bigger numbers #.bat b/biscottihud/customization/[HP SPEC STYLE] cube + bigger numbers #.bat new file mode 100644 index 0000000..94f882f --- /dev/null +++ b/biscottihud/customization/[HP SPEC STYLE] cube + bigger numbers #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HP SPEC STYLE] cube + bigger numbers #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[HP SPEC STYLE] slimmer rectangle #.bat b/biscottihud/customization/[HP SPEC STYLE] slimmer rectangle #.bat new file mode 100644 index 0000000..6db32b0 --- /dev/null +++ b/biscottihud/customization/[HP SPEC STYLE] slimmer rectangle #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[HP SPEC STYLE] slimmer rectangle #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[KOTH ACTIVE] lighter overlay #.bat b/biscottihud/customization/[KOTH ACTIVE] lighter overlay #.bat new file mode 100644 index 0000000..78d14f2 --- /dev/null +++ b/biscottihud/customization/[KOTH ACTIVE] lighter overlay #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[KOTH ACTIVE] lighter overlay #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[KOTH ACTIVE] white bar # (default).bat b/biscottihud/customization/[KOTH ACTIVE] white bar # (default).bat new file mode 100644 index 0000000..86ecc53 --- /dev/null +++ b/biscottihud/customization/[KOTH ACTIVE] white bar # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[KOTH ACTIVE] white bar #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[MENU COLOUR] dark #.bat b/biscottihud/customization/[MENU COLOUR] dark #.bat new file mode 100644 index 0000000..e1c2c61 --- /dev/null +++ b/biscottihud/customization/[MENU COLOUR] dark #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[MENU COLOUR] dark #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[MENU COLOUR] light #.bat b/biscottihud/customization/[MENU COLOUR] light #.bat new file mode 100644 index 0000000..8a91af7 --- /dev/null +++ b/biscottihud/customization/[MENU COLOUR] light #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[MENU COLOUR] light #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[METAL LABEL 1 CENTER] off #.bat b/biscottihud/customization/[METAL LABEL 1 CENTER] off #.bat new file mode 100644 index 0000000..7719b5d --- /dev/null +++ b/biscottihud/customization/[METAL LABEL 1 CENTER] off #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[METAL LABEL 1 CENTER] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[METAL LABEL 1 CENTER] on # (default).bat b/biscottihud/customization/[METAL LABEL 1 CENTER] on # (default).bat new file mode 100644 index 0000000..53c1b24 --- /dev/null +++ b/biscottihud/customization/[METAL LABEL 1 CENTER] on # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[METAL LABEL 1 CENTER] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[METAL LABEL 2 CROSSHAIR] off #.bat b/biscottihud/customization/[METAL LABEL 2 CROSSHAIR] off #.bat new file mode 100644 index 0000000..d3a0663 --- /dev/null +++ b/biscottihud/customization/[METAL LABEL 2 CROSSHAIR] off #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[METAL LABEL 2 CROSSHAIR] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[METAL LABEL 2 CROSSHAIR] on # (default).bat b/biscottihud/customization/[METAL LABEL 2 CROSSHAIR] on # (default).bat new file mode 100644 index 0000000..88c697b --- /dev/null +++ b/biscottihud/customization/[METAL LABEL 2 CROSSHAIR] on # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[METAL LABEL 2 CROSSHAIR] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[METERS] bigger #.bat b/biscottihud/customization/[METERS] bigger #.bat new file mode 100644 index 0000000..7396288 --- /dev/null +++ b/biscottihud/customization/[METERS] bigger #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[METERS] bigger #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[METERS] small # (default).bat b/biscottihud/customization/[METERS] small # (default).bat new file mode 100644 index 0000000..f16a0e0 --- /dev/null +++ b/biscottihud/customization/[METERS] small # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[METERS] small #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[METERS] thin #.bat b/biscottihud/customization/[METERS] thin #.bat new file mode 100644 index 0000000..0fdd16a --- /dev/null +++ b/biscottihud/customization/[METERS] thin #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[METERS] thin #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[METERS] thin and long #.bat b/biscottihud/customization/[METERS] thin and long #.bat new file mode 100644 index 0000000..909a337 --- /dev/null +++ b/biscottihud/customization/[METERS] thin and long #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[METERS] thin and long #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[PDA MENUS] center condensed # (default).bat b/biscottihud/customization/[PDA MENUS] center condensed # (default).bat new file mode 100644 index 0000000..55a8acd --- /dev/null +++ b/biscottihud/customization/[PDA MENUS] center condensed # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[PDA MENUS] center condensed #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[PDA MENUS] center normal #.bat b/biscottihud/customization/[PDA MENUS] center normal #.bat new file mode 100644 index 0000000..b22a28e --- /dev/null +++ b/biscottihud/customization/[PDA MENUS] center normal #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[PDA MENUS] center normal #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[PDA MENUS] side vertical #.bat b/biscottihud/customization/[PDA MENUS] side vertical #.bat new file mode 100644 index 0000000..3c4c634 --- /dev/null +++ b/biscottihud/customization/[PDA MENUS] side vertical #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[PDA MENUS] side vertical #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[POSITIONING] closer position 1 #.bat b/biscottihud/customization/[POSITIONING] closer position 1 #.bat new file mode 100644 index 0000000..bab5fcb --- /dev/null +++ b/biscottihud/customization/[POSITIONING] closer position 1 #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[POSITIONING] closer position 1 #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[POSITIONING] closer position 2 #.bat b/biscottihud/customization/[POSITIONING] closer position 2 #.bat new file mode 100644 index 0000000..80860f4 --- /dev/null +++ b/biscottihud/customization/[POSITIONING] closer position 2 #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[POSITIONING] closer position 2 #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[POSITIONING] further position 1 # (default).bat b/biscottihud/customization/[POSITIONING] further position 1 # (default).bat new file mode 100644 index 0000000..33aedc7 --- /dev/null +++ b/biscottihud/customization/[POSITIONING] further position 1 # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[POSITIONING] further position 1 #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[POSITIONING] further position 2 #.bat b/biscottihud/customization/[POSITIONING] further position 2 #.bat new file mode 100644 index 0000000..f5b1e5b --- /dev/null +++ b/biscottihud/customization/[POSITIONING] further position 2 #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[POSITIONING] further position 2 #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[SCOREBOARD NUMBER] 12 #.bat b/biscottihud/customization/[SCOREBOARD NUMBER] 12 #.bat new file mode 100644 index 0000000..0d05904 --- /dev/null +++ b/biscottihud/customization/[SCOREBOARD NUMBER] 12 #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[SCOREBOARD NUMBER] 12 #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[SCOREBOARD NUMBER] 18 #.bat b/biscottihud/customization/[SCOREBOARD NUMBER] 18 #.bat new file mode 100644 index 0000000..831dcd3 --- /dev/null +++ b/biscottihud/customization/[SCOREBOARD NUMBER] 18 #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[SCOREBOARD NUMBER] 18 #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[SCOREBOARD NUMBER] 24 # (default).bat b/biscottihud/customization/[SCOREBOARD NUMBER] 24 # (default).bat new file mode 100644 index 0000000..72d3eac --- /dev/null +++ b/biscottihud/customization/[SCOREBOARD NUMBER] 24 # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[SCOREBOARD NUMBER] 24 #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[SCOREBOARD NUMBER] 32 #.bat b/biscottihud/customization/[SCOREBOARD NUMBER] 32 #.bat new file mode 100644 index 0000000..38676aa --- /dev/null +++ b/biscottihud/customization/[SCOREBOARD NUMBER] 32 #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[SCOREBOARD NUMBER] 32 #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[STICKY LABEL 1 AMMO] off #.bat b/biscottihud/customization/[STICKY LABEL 1 AMMO] off #.bat new file mode 100644 index 0000000..7acf6fa --- /dev/null +++ b/biscottihud/customization/[STICKY LABEL 1 AMMO] off #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[STICKY LABEL 1 AMMO] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[STICKY LABEL 1 AMMO] on # (default).bat b/biscottihud/customization/[STICKY LABEL 1 AMMO] on # (default).bat new file mode 100644 index 0000000..be2222d --- /dev/null +++ b/biscottihud/customization/[STICKY LABEL 1 AMMO] on # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[STICKY LABEL 1 AMMO] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[STICKY LABEL 2 CROSSHAIR] off #.bat b/biscottihud/customization/[STICKY LABEL 2 CROSSHAIR] off #.bat new file mode 100644 index 0000000..66b47b1 --- /dev/null +++ b/biscottihud/customization/[STICKY LABEL 2 CROSSHAIR] off #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[STICKY LABEL 2 CROSSHAIR] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[STICKY LABEL 2 CROSSHAIR] on # (default).bat b/biscottihud/customization/[STICKY LABEL 2 CROSSHAIR] on # (default).bat new file mode 100644 index 0000000..6044128 --- /dev/null +++ b/biscottihud/customization/[STICKY LABEL 2 CROSSHAIR] on # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[STICKY LABEL 2 CROSSHAIR] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[STICKY LABEL 3 BAR] off # (default).bat b/biscottihud/customization/[STICKY LABEL 3 BAR] off # (default).bat new file mode 100644 index 0000000..1521c95 --- /dev/null +++ b/biscottihud/customization/[STICKY LABEL 3 BAR] off # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[STICKY LABEL 3 BAR] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[STICKY LABEL 3 BAR] on #.bat b/biscottihud/customization/[STICKY LABEL 3 BAR] on #.bat new file mode 100644 index 0000000..4c457bc --- /dev/null +++ b/biscottihud/customization/[STICKY LABEL 3 BAR] on #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[STICKY LABEL 3 BAR] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[TARGET ID] black # (default).bat b/biscottihud/customization/[TARGET ID] black # (default).bat new file mode 100644 index 0000000..f0b7184 --- /dev/null +++ b/biscottihud/customization/[TARGET ID] black # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[TARGET ID] black #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[TARGET ID] coloured #.bat b/biscottihud/customization/[TARGET ID] coloured #.bat new file mode 100644 index 0000000..79ed861 --- /dev/null +++ b/biscottihud/customization/[TARGET ID] coloured #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[TARGET ID] coloured #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[TEAM STATUS] off #.bat b/biscottihud/customization/[TEAM STATUS] off #.bat new file mode 100644 index 0000000..23d1b93 --- /dev/null +++ b/biscottihud/customization/[TEAM STATUS] off #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[TEAM STATUS] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[TEAM STATUS] on # (default).bat b/biscottihud/customization/[TEAM STATUS] on # (default).bat new file mode 100644 index 0000000..011791d --- /dev/null +++ b/biscottihud/customization/[TEAM STATUS] on # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[TEAM STATUS] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[TIMERS] black # (default).bat b/biscottihud/customization/[TIMERS] black # (default).bat new file mode 100644 index 0000000..13b7767 --- /dev/null +++ b/biscottihud/customization/[TIMERS] black # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[TIMERS] black #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[TIMERS] coloured #.bat b/biscottihud/customization/[TIMERS] coloured #.bat new file mode 100644 index 0000000..8648518 --- /dev/null +++ b/biscottihud/customization/[TIMERS] coloured #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[TIMERS] coloured #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[UBER LABEL 1 AMMO] off #.bat b/biscottihud/customization/[UBER LABEL 1 AMMO] off #.bat new file mode 100644 index 0000000..2085ba9 --- /dev/null +++ b/biscottihud/customization/[UBER LABEL 1 AMMO] off #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[UBER LABEL 1 AMMO] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[UBER LABEL 1 AMMO] on # (default).bat b/biscottihud/customization/[UBER LABEL 1 AMMO] on # (default).bat new file mode 100644 index 0000000..371bb90 --- /dev/null +++ b/biscottihud/customization/[UBER LABEL 1 AMMO] on # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[UBER LABEL 1 AMMO] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[UBER LABEL 2 CROSSHAIR] off #.bat b/biscottihud/customization/[UBER LABEL 2 CROSSHAIR] off #.bat new file mode 100644 index 0000000..c3c27f9 --- /dev/null +++ b/biscottihud/customization/[UBER LABEL 2 CROSSHAIR] off #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[UBER LABEL 2 CROSSHAIR] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[UBER LABEL 2 CROSSHAIR] on # (default).bat b/biscottihud/customization/[UBER LABEL 2 CROSSHAIR] on # (default).bat new file mode 100644 index 0000000..154eb4b --- /dev/null +++ b/biscottihud/customization/[UBER LABEL 2 CROSSHAIR] on # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[UBER LABEL 2 CROSSHAIR] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[UBER LABEL 3 BAR] off # (default).bat b/biscottihud/customization/[UBER LABEL 3 BAR] off # (default).bat new file mode 100644 index 0000000..21492a0 --- /dev/null +++ b/biscottihud/customization/[UBER LABEL 3 BAR] off # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[UBER LABEL 3 BAR] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[UBER LABEL 3 BAR] on #.bat b/biscottihud/customization/[UBER LABEL 3 BAR] on #.bat new file mode 100644 index 0000000..c06e0d5 --- /dev/null +++ b/biscottihud/customization/[UBER LABEL 3 BAR] on #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[UBER LABEL 3 BAR] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[VACC ICON] center bottom # (default).bat b/biscottihud/customization/[VACC ICON] center bottom # (default).bat new file mode 100644 index 0000000..832b14a --- /dev/null +++ b/biscottihud/customization/[VACC ICON] center bottom # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[VACC ICON] center bottom #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[VACC ICON] center top #.bat b/biscottihud/customization/[VACC ICON] center top #.bat new file mode 100644 index 0000000..fff2ebe --- /dev/null +++ b/biscottihud/customization/[VACC ICON] center top #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[VACC ICON] center top #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[VACC ICON] left (clips with long names) #.bat b/biscottihud/customization/[VACC ICON] left (clips with long names) #.bat new file mode 100644 index 0000000..a4252cd --- /dev/null +++ b/biscottihud/customization/[VACC ICON] left (clips with long names) #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[VACC ICON] left (clips with long names) #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[VACC LABEL CROSSHAIR] off # (default).bat b/biscottihud/customization/[VACC LABEL CROSSHAIR] off # (default).bat new file mode 100644 index 0000000..cc244ba --- /dev/null +++ b/biscottihud/customization/[VACC LABEL CROSSHAIR] off # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[VACC LABEL CROSSHAIR] off #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[VACC LABEL CROSSHAIR] on #.bat b/biscottihud/customization/[VACC LABEL CROSSHAIR] on #.bat new file mode 100644 index 0000000..c42e906 --- /dev/null +++ b/biscottihud/customization/[VACC LABEL CROSSHAIR] on #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[VACC LABEL CROSSHAIR] on #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[WIN PANEL] black # (default).bat b/biscottihud/customization/[WIN PANEL] black # (default).bat new file mode 100644 index 0000000..f921890 --- /dev/null +++ b/biscottihud/customization/[WIN PANEL] black # (default).bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[WIN PANEL] black #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/[WIN PANEL] coloured #.bat b/biscottihud/customization/[WIN PANEL] coloured #.bat new file mode 100644 index 0000000..8c14ca3 --- /dev/null +++ b/biscottihud/customization/[WIN PANEL] coloured #.bat @@ -0,0 +1 @@ +for /f "delims=" %%a in ('dir /b/ad "manual\[WIN PANEL] coloured #*"') do xcopy /c /e /i /q /y "manual\%%a" .. diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/disguisestatuspanel_background.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/disguisestatuspanel_background.res new file mode 100644 index 0000000..3058f40 --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/disguisestatuspanel_background.res @@ -0,0 +1,13 @@ +"Resource/UI/ItemModelPanel.res" +{ + "DisguiseStatusBG" + { + "ypos" "26" + "tall" "2" + } + + "BlackBG2" + { + "visible" "1" + } +} diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/freezepanel_basic_background.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/freezepanel_basic_background.res new file mode 100644 index 0000000..9a76ded --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/freezepanel_basic_background.res @@ -0,0 +1,15 @@ +"Resource/UI/FreezePanel_Basic.res" +{ "FreezePanelBase" [$WIN32] + { + "FreezePanelBG" + { + "ypos" "188" + "tall" "3" + } + + "BlackBG2" + { + "visible" "1" + } + } +} diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/hudobjectivetimepanel.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/hudobjectivetimepanel.res new file mode 100644 index 0000000..ade1197 --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/hudobjectivetimepanel.res @@ -0,0 +1,309 @@ +"Resource/UI/HudObjectiveTimePanel.res" +{ + "TimePanelBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "TimePanelBG" + "xpos" "16" + "xpos_minmode" "36" + "ypos" "0" + "zpos" "2" + "wide" "78" + "wide_minmode" "38" + "tall" "4" + "tall_minmode" "2" + "visible" "1" + "enabled" "1" + "image" "../hud/objectives_timepanel_blue_bg" + "scaleImage" "1" + "src_corner_height" "3" // pixels inside the image + "src_corner_width" "3" + + if_match + { + "xpos" "36" + "wide" "38" + "tall" "2" + } + } + + "MainBG" + { + "ControlName" "ImagePanel" + "fieldName" "MainBG" + "xpos" "16" + "xpos_minmode" "36" + "ypos" "4" + "ypos_minmode" "2" + "zpos" "2" + "wide" "78" + "wide_minmode" "38" + "tall" "28" + "tall_minmode" "13" // 23 + "visible" "1" + "enabled" "1" + + "fillcolor" "bBlackBG" + + if_match + { + "xpos" "36" + "ypos" "2" + "wide" "38" + "tall" "13" + } + } + "TimePanelProgressBar" + { + "ControlName" "CTFProgressBar" + "fieldName" "TimePanelProgressBar" + "xpos" "71" + "ypos" "6" + "zpos" "4" + "wide" "20" + "tall" "20" + "visible" "0" + "visible_minmode" "0" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/objectives_timepanel_progressbar" + "color_active" "TimerProgress.Active" + "color_inactive" "TimerProgress.InActive" + "color_warning" "TimerProgress.Warning" + "percent_warning" "0.75" + } + "WaitingForPlayersLabel" + { + "ControlName" "CExLabel" + "fieldName" "WaitingForPlayersLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_WaitingForPlayers" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubTextTiny" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + } + } + "WaitingForPlayersBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "WaitingForPlayersBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "tall_minmode" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "OvertimeLabel" + { + "ControlName" "CExLabel" + "fieldName" "OvertimeLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_Overtime" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubText" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + } + } + "OvertimeBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "OvertimeBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "tall_minmode" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "SuddenDeathLabel" + { + "ControlName" "CExLabel" + "fieldName" "SuddenDeathLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_SuddenDeath" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubTextSuddenDeath" + "font_hidef" "HudFontSmall" + "font_lodef" "HudFontSmall" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + } + } + "SuddenDeathBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "SuddenDeathBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "0" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "SetupLabel" + { + "ControlName" "CExLabel" + "fieldName" "SetupLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_Setup" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubText" + "font_minmode" "ClockSubTextSuddenDeath" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + "font" "ClockSubTextSuddenDeath" + } + } + "SetupBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "SetupBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "ServerTimeLimitLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLimitLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "24" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "1" + "enabled" "1" + "labelText" "%servertimeleft%" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubText" + "font_minmode" "ClockSubTextSuddenDeath" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + "font" "ClockSubTextSuddenDeath" + } + } + "ServerTimeLimitLabelBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ServerTimeLimitLabelBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "tall_minmode" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } +} diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/targetid_background.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/targetid_background.res new file mode 100644 index 0000000..1478999 --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/targetid_background.res @@ -0,0 +1,25 @@ +"Resource/UI/TargetID.res" +{ + "TargetIDBG" + { + "ypos" "26" + "tall" "2" + } + + "TargetIDBG_Spec_Blue" + { + "ypos" "26" + "tall" "2" + } + + "TargetIDBG_Spec_Red" + { + "ypos" "26" + "tall" "2" + } + + "BlackBG2" + { + "visible" "1" + } +} diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/winpanel_background.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/winpanel_background.res new file mode 100644 index 0000000..4b0cb5a --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] black # (default)/resource/ui/winpanel_background.res @@ -0,0 +1,12 @@ +"Resource/UI/winpanel.res" +{ + "WinPanelBGBorder" + { + "tall" "17" + } + + "BlackBG" + { + "visible" "1" + } +} diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/disguisestatuspanel_background.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/disguisestatuspanel_background.res new file mode 100644 index 0000000..0c39927 --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/disguisestatuspanel_background.res @@ -0,0 +1,13 @@ +"Resource/UI/ItemModelPanel.res" +{ + "DisguiseStatusBG" + { + "ypos" "6" + "tall" "22" + } + + "BlackBG2" + { + "visible" "0" + } +} diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/freezepanel_basic_background.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/freezepanel_basic_background.res new file mode 100644 index 0000000..e97cee1 --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/freezepanel_basic_background.res @@ -0,0 +1,15 @@ +"Resource/UI/FreezePanel_Basic.res" +{ "FreezePanelBase" [$WIN32] + { + "FreezePanelBG" + { + "ypos" "160" + "tall" "31" + } + + "BlackBG2" + { + "visible" "0" + } + } +} diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/hudobjectivetimepanel.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/hudobjectivetimepanel.res new file mode 100644 index 0000000..95f875d --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/hudobjectivetimepanel.res @@ -0,0 +1,282 @@ +"Resource/UI/HudObjectiveTimePanel.res" +{ + "TimePanelBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "TimePanelBG" + "xpos" "16" + "xpos_minmode" "36" + "ypos" "0" + "zpos" "2" + "wide" "78" + "wide_minmode" "38" + "tall" "32" + "tall_minmode" "15" // 23 + "visible" "1" + "enabled" "1" + "image" "../hud/objectives_timepanel_blue_bg" + "scaleImage" "1" + "src_corner_height" "3" // pixels inside the image + "src_corner_width" "3" + + if_match + { + "xpos" "36" + "wide" "38" + "tall" "15" + } + } + "TimePanelProgressBar" + { + "ControlName" "CTFProgressBar" + "fieldName" "TimePanelProgressBar" + "xpos" "71" + "ypos" "6" + "zpos" "4" + "wide" "20" + "tall" "20" + "visible" "0" + "visible_minmode" "0" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/objectives_timepanel_progressbar" + "color_active" "TimerProgress.Active" + "color_inactive" "TimerProgress.InActive" + "color_warning" "TimerProgress.Warning" + "percent_warning" "0.75" + } + "WaitingForPlayersLabel" + { + "ControlName" "CExLabel" + "fieldName" "WaitingForPlayersLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_WaitingForPlayers" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubTextTiny" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + } + } + "WaitingForPlayersBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "WaitingForPlayersBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "tall_minmode" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "OvertimeLabel" + { + "ControlName" "CExLabel" + "fieldName" "OvertimeLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_Overtime" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubText" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + } + } + "OvertimeBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "OvertimeBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "tall_minmode" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "SuddenDeathLabel" + { + "ControlName" "CExLabel" + "fieldName" "SuddenDeathLabel" + "xpos" "16" + "xpos" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_SuddenDeath" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubTextSuddenDeath" + "font_hidef" "HudFontSmall" + "font_lodef" "HudFontSmall" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + } + } + "SuddenDeathBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "SuddenDeathBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "0" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "SetupLabel" + { + "ControlName" "CExLabel" + "fieldName" "SetupLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_Setup" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubText" + "font_minmode" "ClockSubTextSuddenDeath" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + "font" "ClockSubTextSuddenDeath" + } + } + "SetupBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "SetupBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "ServerTimeLimitLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLimitLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "24" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "1" + "enabled" "1" + "labelText" "%servertimeleft%" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubText" + "font_minmode" "ClockSubTextSuddenDeath" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + "font" "ClockSubTextSuddenDeath" + } + } + "ServerTimeLimitLabelBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ServerTimeLimitLabelBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "tall_minmode" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } +} diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/targetid_background.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/targetid_background.res new file mode 100644 index 0000000..ad0dc6c --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/targetid_background.res @@ -0,0 +1,25 @@ +"Resource/UI/TargetID.res" +{ + "TargetIDBG" + { + "ypos" "6" + "tall" "50" + } + + "TargetIDBG_Spec_Blue" + { + "ypos" "6" + "tall" "30" + } + + "TargetIDBG_Spec_Red" + { + "ypos" "6" + "tall" "30" + } + + "BlackBG2" + { + "visible" "0" + } +} diff --git a/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/winpanel_background.res b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/winpanel_background.res new file mode 100644 index 0000000..d0b818a --- /dev/null +++ b/biscottihud/customization/manual/[!BACKGROUNDS PACK] coloured #/resource/ui/winpanel_background.res @@ -0,0 +1,12 @@ +"Resource/UI/winpanel.res" +{ + "WinPanelBGBorder" + { + "tall" "159" + } + + "BlackBG" + { + "visible" "0" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/README.md b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/README.md new file mode 100644 index 0000000..16acb8d --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/README.md @@ -0,0 +1,54 @@ +# scabber's HUD +v. 1.05 + +This is a customization for the old design of my HUD, from back when I went by the alias **sgt. scabberdaddle**. It's the resurrection of **scabber's HUD**! + +Basically it's much, MUCH closer to the design of the stock TF2 HUD, so it's actually really simple to accomplish. + +*Just delete all the hard work I've done for the past few years* + +That's right, simply copy in the files in this folder and delete all the other files listed below from `biscottiHUD/resource/ui`. + +* freezepanel_basic.res +* freezepanelkillerhealth.res +* hudarenaplayercount.res +* huditemeffectmeter_killstreak.res +* hudmatchstatus.res +* hudobjectivekothtimepanel.res +* hudobjectivetimepanel.res +* hudplayerclass.res +* mvmbombcarrierprogresspanel.res +* mvminworldcurrency.res +* spectatorguihealth.res + +OPTIONAL: + +* hudarenawinpanel.res +* hudinspectpanel.res +* itemquickswitch.res +* hudstopwatch.res +* lobbycontainerframe.res +* lobbycontainerframe_casual.res +* lobbycontainerframe_comp.res +* lobbycontainerframe_mvm.res +* lobbypanel.res +* lobbypanel_casual.res +* lobbypanel_comp.res +* lobbypanel_mvm.res +* mvmcreditspendpanel +* mvmcreditsubpanel +* mvmscoreboard +* mvmscoreboardenemyinfo +* mvmvictorycontainer +* mvmvictorymannupentry +* mvmvictorymannuploot +* mvmvictorymannuppanel +* mvmvictorymannuptab +* mvmvictorypanel +* mvmwavelosspanel +* mvmvictorysplash +* scoreboard.res +* hudtournamentsetup.res +* winpanel.res + +To reset it back to the modern design the easiest way is to just re-download the HUD or keep a backup. This is because you simply just delete so many files, having all those files in backup would lead to a LOT of duplicate files that all need updating if something changes. \ No newline at end of file diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/gamemenu_base.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/gamemenu_base.res new file mode 100644 index 0000000..ccfb84e --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/gamemenu_base.res @@ -0,0 +1,100 @@ +"GameMenu" [$WIN32] +{ + "DemoUIButton" + { + "label" "Demo" + "command" "engine demoui" + "subimage" "glyph_tv" + "tooltip" "Open Demo UI" + } + "ConsoleButton" + { + "label" "Console" + "command" "engine toggleconsole" + "tooltip" "Open/Close Console" + } + "MinmodeButton" + { + "label" "Minimal HUD" + "command" "engine toggle cl_hud_minmode" + "tooltip" "Toggle Hud Minmode" + } + + "ResumeGameButton" + { + "label" "#MMenu_ResumeGame" + "command" "ResumeGame" + "subimage" "icon_resume" + "OnlyInGame" "1" + } + "FindAGameButton" + { + "label" "#MMenu_FindAGame" + "command" "toggle_play_menu" + "subimage" "glyph_multiplayer" + "OnlyAtMenu" "1" + } + + "FindAGameButtonHalfWidth" + { + "label" "#MMenu_FindAGame" + "command" "toggle_play_menu" + "subimage" "glyph_multiplayer" + "OnlyInGame" "1" + } + + "VRModeButton" + { + "label" "#MMenu_VRMode_Activate" + "command" "engine vr_toggle" + "subimage" "glyph_vr" + "OnlyWhenVREnabled" "1" + } + "GeneralStoreButton" + { + "label" "#MMenu_Shop" + "command" "engine open_store" + "subimage" "glyph_store" + } + "CharacterSetupButton" + { + "label" "#MMenu_CharacterSetup" + "command" "engine open_charinfo" + "subimage" "glyph_items" + } + + // These buttons are only shown while in-game + // and also are positioned by the .res file + "CallVoteButton" + { + "label" "" + "command" "callvote" + "OnlyInGame" "1" + "subimage" "icon_checkbox" + "tooltip" "#MMenu_CallVote" + } + "MutePlayersButton" + { + "label" "" + "command" "OpenPlayerListDialog" + "OnlyInGame" "1" + "subimage" "glyph_muted" + "tooltip" "#MMenu_MutePlayers" + } + "RequestCoachButton" + { + "label" "" + "command" "engine cl_coach_find_coach" + "OnlyInGame" "1" + "subimage" "icon_whistle" + "tooltip" "#MMenu_RequestCoach" + } + "ReportPlayerButton" + { + "label" "" + "command" "OpenReportPlayerDialog" + "OnlyInGame" "1" + "subimage" "glyph_alert" + "tooltip" "#MMenu_ReportPlayer" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_backpackitemquality.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_backpackitemquality.res new file mode 100644 index 0000000..cf9f0a2 --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_backpackitemquality.res @@ -0,0 +1,264 @@ +Scheme +{ + Borders + { + + // Unique ------------------------------------------------------------------------------------------------ + BackpackItemBorder_Unique + { + "color" "QualityColorUnique" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_Unique + { + "color" "QualityColorUnique_GreyedOut" + "image" "backpack_rect_color" + } + + // Rarity1 ------------------------------------------------------------------------------------------------ + BackpackItemBorder_1 + { + "color" "QualityColorrarity1" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_1 + { + "color" "QualityColorrarity1_GreyedOut" + "image" "backpack_rect_color" + } + + // Rarity2 ------------------------------------------------------------------------------------------------ + BackpackItemBorder_2 + { + "color" "QualityColorrarity2" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_2 + { + "color" "QualityColorrarity2_GreyedOut" + "image" "backpack_rect_color" + } + + // Rarity3 ------------------------------------------------------------------------------------------------ + BackpackItemBorder_3 + { + "color" "QualityColorrarity3" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_3 + { + "color" "QualityColorrarity3_GreyedOut" + "image" "backpack_rect_color" + } + + // Rarity4 ------------------------------------------------------------------------------------------------ + BackpackItemBorder_4 + { + "color" "QualityColorrarity4" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_4 + { + "color" "QualityColorrarity4_GreyedOut" + "image" "backpack_rect_color" + } + + // Haunted ------------------------------------------------------------------------------------------------ + BackpackItemBorder_Haunted + { + "color" "QualityColorHaunted" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_Haunted + { + "color" "QualityColorHaunted_GreyedOut" + "image" "backpack_rect_color" + } + + // PaintkitWeapon ------------------------------------------------------------------------------------------------ + BackpackItemBorder_PaintkitWeapon + { + "color" "QualityColorPaintkitWeapon" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_PaintkitWeapon + { + "color" "QualityColorPaintkitWeapon_GreyedOut" + "image" "backpack_rect_color" + } + + // Collector's ------------------------------------------------------------------------------------------------ + BackpackItemBorder_Collectors + { + "color" "QualityColorCollectors" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_Collectors + { + "color" "QualityColorCollectors_GreyedOut" + "image" "backpack_rect_color" + } + + // Vintage ------------------------------------------------------------------------------------------------ + BackpackItemBorder_Vintage + { + "color" "QualityColorVintage" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_Vintage + { + "color" "QualityColorVintage_GreyedOut" + "image" "backpack_rect_color" + } + + // Community ------------------------------------------------------------------------------------------------ + BackpackItemBorder_Community + { + "color" "QualityColorCommunity" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_Community + { + "color" "QualityColorCommunity_GreyedOut" + "image" "backpack_rect_color" + } + + // Developer ------------------------------------------------------------------------------------------------ + BackpackItemBorder_Developer + { + "color" "QualityColorDeveloper" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_Developer + { + "color" "QualityColorDeveloper_GreyedOut" + "image" "backpack_rect_color" + } + + // SelfMade ------------------------------------------------------------------------------------------------ + BackpackItemBorder_SelfMade + { + "color" "QualityColorSelfMade" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_SelfMade + { + "color" "QualityColorSelfMade_GreyedOut" + "image" "backpack_rect_color" + } + + // Customized ------------------------------------------------------------------------------------------------ + BackpackItemBorder_Customized + { + "color" "QualityColorCustomized" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_Customized + { + "color" "QualityColorCustomized_GreyedOut" + "image" "backpack_rect_color" + } + + // Strange ------------------------------------------------------------------------------------------------ + BackpackItemBorder_Strange + { + "color" "QualityColorStrange" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_Strange + { + "color" "QualityColorStrange_GreyedOut" + "image" "backpack_rect_color" + } + + // Completed ------------------------------------------------------------------------------------------------ + BackpackItemBorder_Completed + { + "color" "QualityColorCompleted" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_Completed + { + "color" "QualityColorCompleted_GreyedOut" + "image" "backpack_rect_color" + } + // *************************************************************************** + // Rarity Default + BackpackItemBorder_RarityDefault + { + "color" "ItemRarityDefault" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_RarityDefault + { + "color" "ItemRarityDefault_GreyedOut" + "image" "backpack_rect_color" + } + // *************************************************** + BackpackItemBorder_RarityCommon + { + "color" "ItemRarityCommon" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_RarityCommon + { + "color" "ItemRarityCommon_GreyedOut" + "image" "backpack_rect_color" + } + // + BackpackItemBorder_RarityUncommon + { + "color" "ItemRarityUncommon" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_RarityUncommon + { + "color" "ItemRarityUncommon_GreyedOut" + "image" "backpack_rect_color" + } + //************** + BackpackItemBorder_RarityRare + { + "color" "ItemRarityRare" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_RarityRare + { + "color" "ItemRarityRare_GreyedOut" + "image" "backpack_rect_color" + } + //****************** + BackpackItemBorder_RarityMythical + { + "color" "ItemRarityMythical" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_RarityMythical + { + "color" "ItemRarityMythical_GreyedOut" + "image" "backpack_rect_color" + } + // *************************************************** + BackpackItemBorder_RarityLegendary + { + "color" "ItemRarityLegendary" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_RarityLegendary + { + "color" "ItemRarityLegendary_GreyedOut" + "image" "backpack_rect_color" + } + //********************************************* + BackpackItemBorder_RarityAncient + { + "color" "ItemRarityAncient" + "image" "backpack_rect_color" + } + BackpackItemGreyedOutBorder_RarityAncient + { + "color" "ItemRarityAncient_GreyedOut" + "image" "backpack_rect_color" + } + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_buttonborder.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_buttonborder.res new file mode 100644 index 0000000..6997166 --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_buttonborder.res @@ -0,0 +1,3 @@ +Scheme +{ +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_frameborder.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_frameborder.res new file mode 100644 index 0000000..6997166 --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_frameborder.res @@ -0,0 +1,3 @@ +Scheme +{ +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_panelborder.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_panelborder.res new file mode 100644 index 0000000..c4a28f3 --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_panelborder.res @@ -0,0 +1,86 @@ +Scheme +{ + Borders + { + GrayDialogBorder + { + "draw_corner_width" "11" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "11" + } + + StoreFreeTrialBorder + { + "draw_corner_width" "11" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "11" + } + + MainMenuBGBorder + { + "draw_corner_width" "4" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "4" + } + MainMenuBGBorderAlpha + { + "draw_corner_width" "4" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "4" + } + MainMenuHighlightBorder + { + "draw_corner_width" "8" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "8" + } + + TrainingResultsBG + { + "draw_corner_width" "4" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "4" + } + + ReplayFatLineBorderRedBGOpaque + { + "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "5" + } + + ReplayFatLineBorderOpaque + { + "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "5" + } + ReplayGrayDialogBorder + { + "draw_corner_width" "11" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "11" + } + ReplayOutlinedGreyBox + { + "draw_corner_width" "11" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "11" + } + ReplayOutlinedDullGreyBox + { + "draw_corner_width" "11" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "11" + } + ReplayThinLineBorder + { + "draw_corner_width" "8" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "8" + } + ReplayDefaultBorder + { + "draw_corner_width" "7" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "7" + } + ReplayHighlightBorder + { + "draw_corner_width" "7" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "7" + } + ReplayBalloonBorder + { + "draw_corner_width" "7" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "7" + } + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_transparency_box.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_transparency_box.res new file mode 100644 index 0000000..8b3717c --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/schemes/scheme_transparency_box.res @@ -0,0 +1,2 @@ +#base "scheme_transparency_box_hp_fulltrans.res" +#base "scheme_transparency_box_uber_fulltrans.res" diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/disguisestatuspanel.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/disguisestatuspanel.res new file mode 100644 index 0000000..2effb97 --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/disguisestatuspanel.res @@ -0,0 +1,115 @@ +#base "disguisestatuspanel_incognito.res" + +"Resource/UI/ItemModelPanel.res" +{ + "itemmodelpanel" + { + "ControlName" "CEmbeddedItemModelPanel" + "fieldName" "itemmodelpanel" + + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "100" + "tall" "100" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "useparentbg" "1" + + "fov" "54" + "start_framed" "1" + + "disable_manipulation" "1" + + "model" + { + "angles_x" "10" + "angles_y" "130" + "angles_z" "0" + } + } + "DisguiseStatusBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "DisguiseStatusBG" + "xpos" "0" + "ypos" "3" + "zpos" "-1" + "wide" "150" + "tall" "28" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "5" + } + + "DisguiseNameLabel" + { + "ControlName" "Label" + "fieldName" "DisguiseNameLabel" + "font" "TFFontMedium" + "xpos" "35" + "ypos" "8" + "zpos" "1" + "wide" "110" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%disguisename%" + "textAlignment" "North-West" + "dulltext" "0" + "brighttext" "0" + } + + "WeaponNameLabel" + { + "ControlName" "Label" + "fieldName" "WeaponNameLabel" + "font" "TFFontMedium" + "xpos" "35" + "ypos" "17" + "zpos" "1" + "wide" "110" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%weaponname%" + "textAlignment" "North-West" + "dulltext" "0" + "brighttext" "0" + } + + "SpectatorGUIHealth" + { + "ControlName" "EditablePanel" + "fieldName" "SpectatorGUIHealth" + "xpos" "-3" + "ypos" "3" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "HealthBonusPosAdj" "10" + "HealthDeathWarning" "0.49" + "TFFont" "HudFontSmall" + "HealthDeathWarningColor" "HUDDeathWarning" + "TextColor" "HudOffWhite" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudammoweapons_lines.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudammoweapons_lines.res new file mode 100644 index 0000000..b502173 --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudammoweapons_lines.res @@ -0,0 +1,11 @@ +"Resource/UI/HudAmmoWeapons.res" +{ + "BGColoredLineH" + { + "visible" "0" + } + "BGColoredLineV" + { + "visible" "0" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudmediccharge_label1.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudmediccharge_label1.res new file mode 100644 index 0000000..111927a --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudmediccharge_label1.res @@ -0,0 +1,11 @@ +"Resource/UI/HudMedicCharge.res" +{ + "MedicChargedShadedBG" + { + "visible" "1" + } + "ChargeLabel" + { + "visible" "1" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudmediccharge_label2.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudmediccharge_label2.res new file mode 100644 index 0000000..e51c39b --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudmediccharge_label2.res @@ -0,0 +1,19 @@ +"Resource/UI/HudMedicCharge.res" +{ + "ChargeLabel2" + { + "visible" "0" + } + "ChargeLabel2Shadow" + { + "visible" "0" + } + "IndividualChargesLabel2" + { + "visible" "0" + } + "IndividualChargesLabel2Shadow" + { + "visible" "0" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudmediccharge_label3.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudmediccharge_label3.res new file mode 100644 index 0000000..7410b3e --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudmediccharge_label3.res @@ -0,0 +1,11 @@ +"Resource/UI/HudMedicCharge.res" +{ + "ChargeLabel3" + { + "visible" "0" + } + "ChargeLabel3Shadow" + { + "visible" "0" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudplayerhealth_lines.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudplayerhealth_lines.res new file mode 100644 index 0000000..23bdc69 --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudplayerhealth_lines.res @@ -0,0 +1,11 @@ +"Resource/UI/HudPlayerHealth.res" +{ + "BGColoredLineH" + { + "visible" "0" + } + "BGColoredLineV" + { + "visible" "0" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudplayerhealth_overhealcross.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudplayerhealth_overhealcross.res new file mode 100644 index 0000000..aa6992c --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudplayerhealth_overhealcross.res @@ -0,0 +1,7 @@ +"Resource/UI/HudPlayerHealth.res" +{ + "PlayerStatusHealthBonusImage" + { + "ypos" "46" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudplayerhealth_style.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudplayerhealth_style.res new file mode 100644 index 0000000..a70b58b --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/hudplayerhealth_style.res @@ -0,0 +1,23 @@ +"Resource/UI/HudPlayerHealth.res" +{ + "PlayerStatusHealthImage" + { + "visible" "0" + } + "PlayerStatusHealthImageBG" + { + "alpha" "0" + } + "PlayerStatusHealthImageBGH" + { + "visible" "0" + } + "PlayerStatusHealthImageBGV" + { + "visible" "0" + } + "PlayerStatusHealthBonusImage" + { + "xpos" "119" + } +} diff --git a/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/mainmenuoverride.res b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/mainmenuoverride.res new file mode 100644 index 0000000..664c510 --- /dev/null +++ b/biscottihud/customization/manual/[!LEGACY] scabber's HUD #/resource/ui/mainmenuoverride.res @@ -0,0 +1,4305 @@ +"Resource/UI/MainMenuOverride.res" +{ + MainMenuOverride + { + "fieldName" "MainMenuOverride" + "visible" "1" + "enabled" "1" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "480" + +// "bgcolor_override" "0 0 0 240" + + "update_url" "http://store.steampowered.com/news/?filter=updates&appids=440" + "blog_url" "http://www.teamfortress.com/" + + "button_x_offset" "-285" + "button_y" "120" + "button_y_delta" "5" + "button_kv" + { + "xpos" "0" + "ypos" "150" + "wide" "250" + "tall" "26" + "visible" "1" + + "SubButton" + { + "ControlName" "CExImageButton" + "fieldName" "SubButton" + "xpos" "0" + "ypos" "0" + "wide" "250" + "tall" "26" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "textinsetx" "25" + "use_proportional_insets" "1" + "font" "HudFontSmallBold" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "border_default" "MainMenuButtonDefault" + "border_armed" "MainMenuButtonArmed" + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "235 226 202 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "6" + "ypos" "6" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + } + } + + "SaxxySettings" + { + "xpos" "0" + "ypos" "0" + "zpos" "-101" + "wide" "f0" + "tall" "480" + + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "flashbounds_x" "50" + "flashbounds_y" "65" + "flashbounds_w" "250" + "flashbounds_h" "120" + + "flashstartsize_min" "8" + "flashstartsize_max" "12" + + "flash_maxscale" "4" + + "flash_lifelength_min" ".1" + "flash_lifelength_max" ".2" + + "curtain_anim_duration" "4.0" + "curtain_open_time" "2.8" + "flash_start_time" "4.0" + + "initial_freakout_duration" "15.0" + "clap_sound_duration" "10.0" + + "CameraFlashSettings" + { + "visible" "1" + "enabled" "1" + "tileImage" "0" + "scaleImage" "1" + "zpos" "9" + } + } + } + + "mouseoveritempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mouseoveritempanel" + "xpos" "c-70" + "ypos" "270" + "zpos" "100" + "wide" "300" + "tall" "300" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + "border" "MainMenuBGBorder" + + "text_ypos" "20" + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "15" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "center" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + } + + "Background" + { + "ControlName" "ScalableImagePanel" + "fieldName" "Background" + "xpos" "cs-0.5" + "ypos" "0" + "zpos" "-200" + "wide" "o1.6" + "tall" "f0" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "proportionaltoparent" "1" + + if_wider + { + "wide" "f0" + "tall" "o0.628" + } + + if_taller + { + "wide" "o1.6" + "tall" "f0" + } + + if_halloween_0 + { + "image" "../console/title_team_halloween2011_widescreen" + } + if_halloween_1 + { + "image" "../console/title_team_halloween2012_widescreen" + } + if_halloween_2 + { + "image" "../console/title_team_halloween2013_widescreen" + } + if_halloween_3 + { + "image" "../console/title_team_halloween2014_widescreen" + } + if_halloween_4 + { + "image" "../console/title_team_halloween2015_widescreen" + } + if_fullmoon + { + "image" "../console/title_fullmoon_widescreen" + } + if_christmas + { + "image" "../console/background_xmas2011_widescreen" + } + } + + "TFLogoImage" + { + "ControlName" "ImagePanel" + "fieldName" "TFLogoImage" + "xpos" "c-290" + "ypos" "24" + "zpos" "1" + "wide" "256" + "tall" "64" + "visible" "1" + "enabled" "1" + "image" "../logo/new_tf2_logo" + "scaleImage" "1" + "mouseinputenabled" "0" + +// if_operation +// { +// "image" "../logo/tough_break_logo" +// } + } + + "TFCharacterImage" + { + "ControlName" "ImagePanel" + "fieldName" "TFCharacterImage" + "xpos" "c-250" + "ypos" "-80" + "zpos" "-99" + "wide" "600" + "tall" "600" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + "Version" + { + "ControlName" "EditablePanel" + "fieldName" "Version" + "xpos" "c-188" + "ypos" "93" + "wide" "150" + "tall" "30" + "visible" "1" + + "SubButton" + { + "ControlName" "CExImageButton" + "fieldName" "SubButton" + "xpos" "0" + "ypos" "0" + "wide" "150" + "tall" "30" + "font" "HudFontSmallBold" + "textAlignment" "east" + "autoResize" "0" + "pinCorner" "0" + "paintbackground" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "defaultFgColor_override" "235 227 203 255" + "armedFgColor_override" "255 255 233 255" + } + } + + "ControlBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ControlBGPanel" + "xpos" "c-290" + "ypos" "373" + "zpos" "-61" + "wide" "260" + "tall" "28" + "visible" "1" + "PaintBackgroundType" "2" + "border" "MainMenuBGBorder" + } + + "DemoUIButton" + { + "ControlName" "EditablePanel" + "fieldName" "DemoUIButton" + "xpos" "c-34" + "ypos" "377" + "zpos" "11" + "wide" "38" + "tall" "40" + "visible" "1" + "paintbackground" "2" + + "navUp" "GeneralStoreButton" + "navDown" "QuitButton" + "navLeft" "MinmodeButton" + "navRight" "Notifications_ShowButtonPanel" + "navToRelay" "SubButton" + + "SubButton" + { + "ControlName" "CExImageButton" + "fieldName" "SubButton" + "xpos" "0" + "ypos" "0" + "wide" "38" + "tall" "40" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "textinsety" "25" + "use_proportional_insets" "1" + "font" "HudFontSmallestBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "border_default" "MainMenuButtonDefault" + "border_armed" "MainMenuButtonArmed" + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "235 226 202 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "9" + "ypos" "4" + "zpos" "1" + "wide" "20" + "tall" "20" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + } + } + + "ConsoleButton" + { + "ControlName" "EditablePanel" + "fieldName" "ConsoleButton" + "xpos" "c-285" + "ypos" "377" + "zpos" "11" + "wide" "130" + "tall" "20" + "visible" "1" + "paintbackground" "2" + + "navUp" "GeneralStoreButton" + "navDown" "QuitButton" + "navRight" "MinmodeButton" + "navToRelay" "SubButton" + + "SubButton" + { + "ControlName" "CExImageButton" + "fieldName" "SubButton" + "xpos" "0" + "ypos" "0" + "wide" "125" + "tall" "20" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "textinsetx" "0" + "use_proportional_insets" "1" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "border_default" "MainMenuButtonDefault" + "border_armed" "MainMenuButtonArmed" + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + } + } + + "MinmodeButton" + { + "ControlName" "EditablePanel" + "fieldName" "MinmodeButton" + "xpos" "c-160" + "ypos" "377" + "zpos" "11" + "wide" "135" + "tall" "20" + "visible" "1" + "paintbackground" "2" + + "navUp" "GeneralStoreButton" + "navDown" "VRModeButton" + "navLeft" "ConsoleButton" + "navRight" "DemoUIButton" + "navToRelay" "SubButton" + + "SubButton" + { + "ControlName" "CExImageButton" + "fieldName" "SubButton" + "xpos" "0" + "ypos" "0" + "wide" "125" + "tall" "20" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "textinsetx" "0" + "use_proportional_insets" "1" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "border_default" "MainMenuButtonDefault" + "border_armed" "MainMenuButtonArmed" + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + } + } + + "MainMenuBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "MainMenuBGPanel" + "xpos" "c-290" + "ypos" "92" + "zpos" "-1" + "wide" "260" + "tall" "60" + "visible" "1" + "pinCorner" "0" + "autoResize" "0" + "PaintBackgroundType" "2" + "border" "MainMenuBGBorder" + "mouseinputenabled" "0" + } + "PlayLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayLabel" + "font" "HudFontSmallBold" + "labelText" "#MMenu_Play" + "textAlignment" "west" + "xpos" "c-278" + "ypos" "93" + "auto_wide_tocontents" "1" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "235 227 203 255" + } + + "TooltipPanel" + { + "ControlName" "EditablePanel" + "fieldName" "TooltipPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "150" + "tall" "50" + "visible" "0" + "PaintBackgroundType" "2" + "border" "MainMenuBGBorder" + + "TipSubLabel" + { + "ControlName" "CExLabel" + "fieldName" "TipSubLabel" + "font" "HudFontSmall" + "labelText" "%tipsubtext%" + "textAlignment" "center" + "xpos" "20" + "ypos" "30" + "zpos" "2" + "wide" "250" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "117 107 94 255" + "wrap" "1" + } + + "TipLabel" + { + "ControlName" "CExLabel" + "fieldName" "TipLabel" + "font" "HudFontSmallBold" + "labelText" "%tiptext%" + "textAlignment" "center" + "xpos" "20" + "ypos" "5" + "zpos" "2" + "wide" "140" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "235 226 202 255" + "auto_wide_tocontents" "1" + } + } + + "Notifications_ShowButtonPanel" + { + "ControlName" "EditablePanel" + "fieldName" "Notifications_ShowButtonPanel" + "xpos" "c148" + "ypos" "28" + "zpos" "10" + "wide" "32" + "tall" "32" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + + "navUp" "MOTD_ShowButtonPanel" + "navDown" "SettingsButton" + "navLeft" "QuickplayButton" + "navRight" "Notifications_Panel" + "navToRelay" "Notifications_ShowButtonPanel_SB" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "16" + "ypos" "0" + "zpos" "3" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "image" "glyph_achievements" + "scaleImage" "1" + "drawcolor" "210 125 33 255" + } + + "Notifications_CountLabel" + { + "ControlName" "CExLabel" + "fieldName" "Notifications_CountLabel" + "font" "HudFontSmallestBold" + "labelText" "%noticount%" + "textAlignment" "center" + "xpos" "16" + "ypos" "0" + "zpos" "4" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "255 255 255 255" + } + + "Notifications_ShowButtonPanel_SB" + { + "ControlName" "CExImageButton" + "fieldName" "Notifications_ShowButtonPanel_SB" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "32" + "tall" "32" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "font" "HudFontSmallestBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "actionsignallevel" "2" + + "Command" "noti_show" + "navActivate" ">" + "textAlignment" "west" + "xpos" "c-300" + "ypos" "20" + "zpos" "1" + "wide" "20" + "tall" "15" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "ClassLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassLabel" + "font" "HudFontMediumBold" + "labelText" "#ClassBeingEquipped" + "textAlignment" "west" + "xpos" "c-280" + "ypos" "15" + "zpos" "1" + "wide" "240" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "TauntCaratLabel" + { + "ControlName" "CExLabel" + "fieldName" "TauntCaratLabel" + "font" "HudFontSmallestBold" + "labelText" ">>" + "textAlignment" "west" + "xpos" "c-150" + "ypos" "20" + "zpos" "1" + "wide" "20" + "tall" "15" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "TauntLabel" + { + "ControlName" "CExLabel" + "fieldName" "TauntLabel" + "font" "HudFontMediumBold" + "labelText" "#TF_Taunt" + "textAlignment" "west" + "xpos" "c-130" + "ypos" "15" + "zpos" "1" + "wide" "240" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "TopLine" + { + "ControlName" "ImagePanel" + "fieldName" "TopLine" + "xpos" "c-305" + "ypos" "40" + "zpos" "2" + "wide" "610" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "loadout_dotted_line" + "tileImage" "1" + "tileVertically" "0" + } + + "classmodelpanel" + { + "ControlName" "CTFPlayerModelPanel" + "fieldName" "classmodelpanel" + + "xpos" "c-135" + "ypos" "20" + "zpos" "-1" + "wide" "270" + "tall" "340" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "render_texture" "0" + "fov" "30" + "allow_rot" "1" + + "model" + { + "force_pos" "1" + + "angles_x" "0" + "angles_y" "170" + "angles_z" "0" + "origin_x" "190" + "origin_y" "0" + "origin_z" "-48" + "frame_origin_x" "0" + "frame_origin_y" "0" + "frame_origin_z" "0" + "spotlight" "1" + + "modelname" "" + } + } + + "mouseoveritempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mouseoveritempanel" + "xpos" "c-70" + "ypos" "270" + "zpos" "100" + "wide" "300" + "tall" "300" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "text_ypos" "15" + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "15" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "center" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + } + + "PassiveAttribsLabel" + { + "ControlName" "CExLabel" + "fieldName" "PassiveAttribsLabel" + "font" "ItemFontAttribLarge" + "xpos" "c-135" + "ypos" "120" + "zpos" "0" + "wide" "270" + "tall" "240" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "" + "textAlignment" "south" + "fgcolor" "255 215 0 255" + "centerwrap" "1" + } + + "loadout_preset_panel" + { + "ControlName" "CLoadoutPresetPanel" + "FieldName" "loadout_preset_panel" + "zpos" "20" + "wide" "150" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + + "PresetsExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "PresetsExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-200" + "end_y" "120" + "end_wide" "250" + "end_tall" "160" + "callout_inparents_x" "c0" + "callout_inparents_y" "75" + "next_explanation" "" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#ItemPresetsExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "210" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#ClassLoadoutItemPresetsExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "35" + "wide" "210" + "tall" "200" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "230" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + } + + "ItemOptionsPanel" + { + "ControlName" "CLoadoutParticleSlider" + "fieldname" "ItemOptionsPanel" + "xpos" "0" + "ypos" "0" + "zpos" "100" + "wide" "140" + "tall" "75" + "autoResize" "1" + "visible" "0" + "bgcolor_override" "69 64 63 255" + "PaintBackgroundType" "2" + } + + "RedButton" + { + "ControlName" "CExImageButton" + "fieldName" "RedButton" +// "xpos" "c-40" +// "ypos" "35" + "xpos" "c5" + "ypos" "22" + "zpos" "12" + "wide" "40" + "tall" "20" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_RedTeam_Name" + "textAlignment" "center" + "font" "HudFontSmallBold" + "scaleImage" "1" + "command" "sv_cheats 1;r_skin 0" + + "defaultFgColor_override" "bRed" + "armedFgColor_override" "TanLight" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "keyboardinputenabled" "0" + + "paintbackground" "1" + + "border_default" "NoBorder" + "border_armed" "NoBorder" + "border_depressed" "NoBorder" + } + + "BlueButton" + { + "ControlName" "CExImageButton" + "fieldName" "BlueButton" +// "xpos" "c-40" +// "ypos" "10" + "xpos" "c-45" + "ypos" "22" + "zpos" "12" + "wide" "40" + "tall" "20" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_BlueTeam_Name" + "textAlignment" "center" + "font" "HudFontSmallBold" + "scaleImage" "1" + "command" "sv_cheats 1;r_skin 1" + + "defaultFgColor_override" "bBlue" + "armedFgColor_override" "TanLight" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "keyboardinputenabled" "0" + + "paintbackground" "1" + + "border_default" "NoBorder" + "border_armed" "NoBorder" + "border_depressed" "NoBorder" + } + + "TauntHintLabel" + { + "ControlName" "CExLabel" + "fieldName" "TauntHintLabel" + "font" "ItemFontAttribLarge" + "xpos" "c90" + "ypos" "20" + "zpos" "1" + "wide" "250" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_ClassLoadoutTauntInputHint" + "textAlignment" "east" + "centerwrap" "1" + } + + "CharacterLoadoutButton" + { + "ControlName" "CExImageButton" + "fieldName" "CharacterLoadoutButton" + "labelText" "" + "xpos" "c-25" + "ypos" "c90" + "zpos" "2" + "wide" "25" + "tall" "25" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "Command" "characterloadout" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "4" + "ypos" "4" + "zpos" "1" + "wide" "17" + "tall" "17" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "glyph_items" + } + } + + "TauntLoadoutButton" + { + "ControlName" "CExImageButton" + "fieldName" "TauntLoadoutButton" + "labelText" "" + "xpos" "c2" + "ypos" "c90" + "zpos" "2" + "wide" "25" + "tall" "25" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "Command" "tauntloadout" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "4" + "ypos" "4" + "zpos" "1" + "wide" "17" + "tall" "17" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/ico_reel" + } + } + + "TauntsExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "TauntsExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-180" + "end_y" "150" + "end_wide" "250" + "end_tall" "140" + "callout_inparents_x" "c15" + "callout_inparents_y" "330" + "next_explanation" "" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TauntsExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "210" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#ClassLoadoutTauntsExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "35" + "wide" "210" + "tall" "200" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "230" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + } +} diff --git a/biscottihud/resource/ui/classloadoutpanel_colour.res b/biscottihud/resource/ui/classloadoutpanel_colour.res new file mode 100644 index 0000000..b80ee1a --- /dev/null +++ b/biscottihud/resource/ui/classloadoutpanel_colour.res @@ -0,0 +1,9 @@ +"Resource/UI/FullLoadoutPanel.res" +{ + "class_loadout_panel" + { + "bgcolor_override" "bBlackSolid3" + "infocus_bgcolor_override" "bBlackSolid3" + "outoffocus_bgcolor_override" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/classselection.res b/biscottihud/resource/ui/classselection.res new file mode 100644 index 0000000..a628f4c --- /dev/null +++ b/biscottihud/resource/ui/classselection.res @@ -0,0 +1,1970 @@ +"Resource/UI/ClassSelection.res" +{ + "class" + { + "ControlName" "Frame" + "fieldName" "class" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "SysMenu" + { + "ControlName" "Menu" + "fieldName" "SysMenu" + "xpos" "0" + "ypos" "0" + "wide" "64" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + } + + "MainBG" + { + "ControlName" "ImagePanel" + "fieldName" "MainBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "ColoredBar" + { "ControlName" "CTFImagePanel" + "fieldName" "ColoredBar" + "xpos" "c-300" + "ypos" "395" + "zpos" "0" + "wide" "600" + "tall" "4" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "BlackBar" + { "ControlName" "ImagePanel" + "fieldName" "BlackBar" + "xpos" "c-300" + "ypos" "320" + "zpos" "0" + "wide" "600" + "tall" "75" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackSolid1" + } + + "random" + { + "ControlName" "CExImageButton" + "fieldName" "random" + "xpos" "c250" + "xpos_lodef" "c217" + "xpos_hidef" "c238" + "ypos" "295" // -5 + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "&R" + "textAlignment" "south-west" + "Command" "select 12" + "Default" "1" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_random_inactive" + "image_armed" "class_sel_sm_random_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "0" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_random_inactive" + "scaleImage" "1" + } + } + + "Offense" + { + "ControlName" "CExLabel" + "fieldName" "Offense" + "xpos" "c-300" + "xpos_hidef" "c-287" + "xpos_lodef" "c-260" + "ypos" "300" // 96 + "ypos_hidef" "102" + "ypos_lodef" "116" + "zpos" "2" + "wide" "90" + "tall" "12" + "tall_lodef" "22" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Offense" + "textAlignment" "left" + "font" "MenuClassBuckets" + "font_lodef" "MenuMainTitle" + "fgcolor" "235 235 235 185" + } + "scout" + { + "ControlName" "CExImageButton" + "fieldName" "scout" + "xpos" "c-300" + "xpos_hidef" "c-290" + "xpos_lodef" "c-265" + "ypos" "295" // -5 + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "1" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "Command" "select 1" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_scout_inactive" + "image_armed" "class_sel_sm_scout_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + "selectedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_scout_inactive" + "scaleImage" "1" + } + } + "soldier" + { + "ControlName" "CExImageButton" + "fieldName" "soldier" + "xpos" "c-250" + "xpos_hidef" "c-244" + "xpos_lodef" "c-225" + "ypos" "295" + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "2" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "Command" "select 3" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_soldier_inactive" + "image_armed" "class_sel_sm_soldier_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + "selectedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_soldier_inactive" + "scaleImage" "1" + } + } + "pyro" + { + "ControlName" "CExImageButton" + "fieldName" "pyro" + "xpos" "c-200" + "xpos_hidef" "c-194" + "xpos_lodef" "c-180" + "ypos" "295" + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "3" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "Command" "select 7" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_pyro_inactive" + "image_armed" "class_sel_sm_pyro_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_pyro_inactive" + "scaleImage" "1" + } + } + + "Defense" + { + "ControlName" "CExLabel" + "fieldName" "Defense" + "xpos" "c-110" + "xpos_hidef" "c-105" + "xpos_lodef" "c-95" + "ypos" "300" + "ypos_hidef" "102" + "ypos_lodef" "116" + "zpos" "2" + "wide" "90" + "tall" "12" + "tall_lodef" "22" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Defense" + "textAlignment" "left" + "font" "MenuClassBuckets" + "font_lodef" "MenuMainTitle" + "fgcolor" "235 235 235 185" + } + "demoman" + { + "ControlName" "CExImageButton" + "fieldName" "demoman" + "xpos" "c-110" + "xpos_lodef" "c-100" + "ypos" "295" + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "4" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "Command" "select 4" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_demo_inactive" + "image_armed" "class_sel_sm_demo_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_demo_inactive" + "scaleImage" "1" + } + } + "heavyweapons" + { + "ControlName" "CExImageButton" + "fieldName" "heavyweapons" + "xpos" "c-60" + "xpos_lodef" "c-55" + "ypos" "295" + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "5" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "Command" "select 6" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_heavy_inactive" + "image_armed" "class_sel_sm_heavy_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_heavy_inactive" + "scaleImage" "1" + } + } + "engineer" + { + "ControlName" "CExImageButton" + "fieldName" "engineer" + "xpos" "c-10" + "ypos" "295" + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "6" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "Command" "select 9" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_engineer_inactive" + "image_armed" "class_sel_sm_engineer_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_engineer_inactive" + "scaleImage" "1" + } + } + + "Support" + { + "ControlName" "CExLabel" + "fieldName" "Support" + "xpos" "c76" + "xpos_hidef" "c74" + "xpos_lodef" "c70" + "ypos" "300" + "ypos_hidef" "102" + "ypos_lodef" "116" + "zpos" "2" + "wide" "90" + "tall" "12" + "tall_lodef" "22" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Support" + "textAlignment" "left" + "font" "MenuClassBuckets" + "font_lodef" "MenuMainTitle" + "fgcolor" "235 235 235 185" + } + "medic" + { + "ControlName" "CExImageButton" + "fieldName" "medic" + "xpos" "c78" + "xpos_hidef" "c70" + "xpos_lodef" "c65" + "ypos" "295" + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "7" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "Command" "select 5" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_medic_inactive" + "image_armed" "class_sel_sm_medic_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_medic_inactive" + "scaleImage" "1" + } + } + "sniper" + { + "ControlName" "CExImageButton" + "fieldName" "sniper" + "xpos" "c128" + "xpos_hidef" "c120" + "xpos_lodef" "c105" + "ypos" "295" + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "8" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "Command" "select 2" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_sniper_inactive" + "image_armed" "class_sel_sm_sniper_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_sniper_inactive" + "scaleImage" "1" + } + } + "spy" + { + "ControlName" "CExImageButton" + "fieldName" "spy" + "xpos" "c178" + "xpos_hidef" "c170" + "xpos_lodef" "c145" + "ypos" "295" + "ypos_lodef" "9" + "ypos_hidef" "0" + "zpos" "6" + "wide" "50" + "tall" "100" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "9" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "Command" "select 8" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + + "image_default" "class_sel_sm_spy_inactive" + "image_armed" "class_sel_sm_spy_inactive" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + + "image_drawcolor" "255 255 255 255" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "selectonhover" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "50" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "class_sel_sm_spy_inactive" + "scaleImage" "1" + } + } + + "CancelButton" [$WIN32] + { + "ControlName" "CExButton" + "fieldName" "CancelButton" + "xpos" "0" + "ypos" "0" + "zpos" "6" + "auto_wide_tocontents" "1" + "tall" "25" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ClassMenu_Cancel_NoKey" + "textAlignment" "center" + "textinsetx" "25" + "Command" "vguicancel" + "font" "HudFontSmallBold" + "paintbackground" "1" + "border_default" "NoBorder" + "fgcolor" "235 235 235 185" + "defaultFgColor_override" "235 235 235 185" + "armedFgColor_override" "TanLight" + "depressedFgColor_override" "235 235 235 185" + "selectedFgColor_override" "TanLight" + + "defaultBgColor_override" "color_panel_brown" + "armedBgColor_override" "color_panel_brown" + "depressedBgColor_override" "color_panel_brown" + + "pin_to_sibling" "CancelButtonShortcut" + "pin_to_sibling_corner" "0" + "pin_corner_to_sibling" "1" + } + "CancelButtonShortcut" [$WIN32] + { + "ControlName" "CExButton" + "fieldName" "CancelButtonShortcut" + "xpos" "c210" + "ypos" "c-22" + "zpos" "6" + "wide" "30" + "tall" "25" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "(&Q)" + "textAlignment" "east" + "textinsetx" "15" + "Command" "vguicancel" + "font" "HudFontSmallBold" + "paintbackground" "1" + "border_default" "NoBorder" + "fgcolor" "235 235 235 185" + "defaultFgColor_override" "235 235 235 185" + "armedFgColor_override" "TanLight" + "depressedFgColor_override" "235 235 235 185" + "selectedFgColor_override" "TanLight" + + "defaultBgColor_override" "color_panel_brown" + "armedBgColor_override" "color_panel_brown" + "depressedBgColor_override" "color_panel_brown" + } + + "EditLoadoutButton" [$WIN32] + { + "ControlName" "CExButton" + "fieldName" "EditLoadoutButton" + "xpos" "0" + "ypos" "0" + "zpos" "6" + "auto_wide_tocontents" "1" + "tall" "25" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#EditLoadout" + "textAlignment" "center" + "textinsetx" "25" + "Command" "openloadout" + "font" "HudFontSmallBold" + "paintbackground" "1" + "border_default" "NoBorder" + "fgcolor" "235 235 235 185" + "defaultFgColor_override" "235 235 235 185" + "armedFgColor_override" "TanLight" + "depressedFgColor_override" "235 235 235 185" + "selectedFgColor_override" "TanLight" + + "defaultBgColor_override" "color_panel_brown" + "armedBgColor_override" "color_panel_brown" + "depressedBgColor_override" "color_panel_brown" + + "pin_to_sibling" "EditLoadoutButtonShortcut" + "pin_to_sibling_corner" "0" + "pin_corner_to_sibling" "1" + } + "EditLoadoutButtonShortcut" [$WIN32] + { + "ControlName" "CExButton" + "fieldName" "EditLoadoutButtonShortcut" + "xpos" "c210" + "ypos" "c9" + "zpos" "6" + "wide" "30" + "tall" "25" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "(&E)" + "textAlignment" "east" + "textinsetx" "15" + "Command" "openloadout" + "font" "HudFontSmallBold" + "paintbackground" "1" + "border_default" "NoBorder" + "defaultFgColor_override" "235 235 235 185" + "armedFgColor_override" "TanLight" + "depressedFgColor_override" "235 235 235 185" + "selectedFgColor_override" "TanLight" + + "defaultBgColor_override" "color_panel_brown" + "armedBgColor_override" "color_panel_brown" + "depressedBgColor_override" "color_panel_brown" + } + + "CRASHTOOLTIP" + { + "ControlName" "CExLabel" + "fieldName" "CRASHTOOLTIP" + "xpos" "c140" + "ypos" "c-100" + "zpos" "6" + "wide" "100" + "tall" "50" + "visible" "1" + "enabled" "1" + "labelText" "Do NOT hover over 'random' and press 'E'! It will crash the game! Sorry!" + "textAlignment" "west" + "wrap" "1" + "textinsetx" "10" + "paintborder" "1" + "bgcolor_override" "color_panel_brown" + } + + "ResetButton" [$WIN32] + { + "ControlName" "CExButton" + "fieldName" "ResetButton" + "xpos" "r470" + "ypos" "r38" + "zpos" "6" + "wide" "110" + "tall" "25" + "autoResize" "0" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ClassMenu_Reset" + "textAlignment" "center" + "Command" "resetclass" + "font" "HudFontSmallBold" + } + + "ClassMenuSelect" + { + "ControlName" "CExLabel" + "fieldName" "ClassMenuSelect" + "xpos" "30" + "ypos" "r40" + "zpos" "5" + "wide" "450" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_SelectAClass" + "textAlignment" "west" + "font" "MenuMainTitle" + "fgcolor" "HudOffWhite" + } + + "Hint" + { + "ControlName" "CExLabel" + "fieldName" "Hint" + "xpos" "c-300" + "xpos_hidef" "c-287" + "xpos_lodef" "c-260" + "ypos" "95" + "ypos_hidef" "101" + "ypos_lodef" "115" + "zpos" "2" + "wide" "600" + "tall" "50" + "tall_lodef" "30" + "autoResize" "1" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "%hint%" + "textAlignment" "left" + "wrap" "1" + "font" "HudFontMediumSmallSecondary" + "font_lodef" "HudFontMediumSmallSecondary" + "fgcolor" "HudTrainingHint" + "fgcolor_lodef" "HudTrainingHint" + } + + "Footer" [$X360] + { + "ControlName" "CTFFooter" + "fieldName" "Footer" + "zpos" "6" + "tall" "80" + "button_separator" "10" + "button_separator_lodef" "5" + "buttongap" "50" + "buttongap_hidef" "35" + "buttongap_lodef" "18" + "textadjust" "3" + "textadjust_lodef" "0" + "buttonoffsety" "20" + "buttonoffsety_hidef" "0" + "buttonoffsety_lodef" "18" + "center" "0" + "button_pin_right_lodef" "55" + "fonttext" "MatchmakingDialogMenuLarge" + "fonttext_lodef" "MatchmakingDialogMenuSmall" + "fgcolor" "HudOffWhite" + + "button" + { + "name" "cancel" + "text" "#GameUI_Cancel" + "icon" "#GameUI_Icons_B_BUTTON" + } + + "button" + { + "name" "nextprev" + "text" "#TF_NextPrev" + "icon" "#GameUI_Icons_DPAD" + } + + "button" + { + "name" "select" + "text" "#GameUI_Select" + "icon" "#GameUI_Icons_A_BUTTON" + } + } + + "localPlayerImage" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "localPlayerImage" + "xpos" "c-30" + "ypos" "380" + "zpos" "9" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "localPlayerBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "localPlayerBG" + "xpos" "c-35" + "ypos" "395" + "zpos" "2" + "wide" "-55" + "tall" "80" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "image" "../hud/color_panel_clear" + "scaleImage" "1" + "teambg_2" "../hud/color_panel_clear" + "teambg_3" "../hud/color_panel_clear" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "5" + } + + "countImage0" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage0" + "xpos" "c20" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage1" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage1" + "xpos" "c45" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage2" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage2" + "xpos" "c70" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage3" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage3" + "xpos" "c95" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage4" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage4" + "xpos" "c120" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage5" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage5" + "xpos" "c145" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage6" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage6" + "xpos" "c170" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage7" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage7" + "xpos" "c195" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage8" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage8" + "xpos" "c220" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage9" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage9" + "xpos" "c245" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "countImage10" [$WIN32] + { + "ControlName" "CTFImagePanel" + "fieldName" "countImage10" + "xpos" "c270" + "ypos" "395" + "zpos" "9" + "wide" "30" + "tall" "60" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "CountLabel" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "CountLabel" + "xpos" "c35" + "ypos" "502" + "zpos" "10" + "wide" "150" + "tall" "18" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_TeamCount" + "textAlignment" "left" + "font" "HudFontMediumSmallSecondary" + "fgcolor" "TanLight" + } + + "numScout" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "numScout" + "xpos" "c-300" + "ypos" "310" + "zpos" "5" + "wide" "50" + "tall" "12" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%numScout%" + "textAlignment" "center" + "font" "MenuClassBuckets" + "fgcolor" "TanLight" + } + + "numSoldier" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "numSoldier" + "xpos" "c-250" + "ypos" "310" + "zpos" "5" + "wide" "50" + "tall" "12" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%numSoldier%" + "textAlignment" "center" + "font" "MenuClassBuckets" + "fgcolor" "TanLight" + } + + "numPyro" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "numPyro" + "xpos" "c-200" + "ypos" "310" + "zpos" "5" + "wide" "50" + "tall" "12" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%numPyro%" + "textAlignment" "center" + "font" "MenuClassBuckets" + "fgcolor" "TanLight" + } + + "numDemoman" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "numDemoman" + "xpos" "c-110" + "ypos" "310" + "zpos" "5" + "wide" "50" + "tall" "12" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%numDemoman%" + "textAlignment" "center" + "font" "MenuClassBuckets" + "fgcolor" "TanLight" + } + + "numHeavy" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "numHeavy" + "xpos" "c-60" + "ypos" "310" + "zpos" "5" + "wide" "50" + "tall" "12" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%numHeavy%" + "textAlignment" "center" + "font" "MenuClassBuckets" + "fgcolor" "TanLight" + } + + "numEngineer" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "numEngineer" + "xpos" "c-10" + "ypos" "310" + "zpos" "5" + "wide" "50" + "tall" "12" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%numEngineer%" + "textAlignment" "center" + "font" "MenuClassBuckets" + "fgcolor" "TanLight" + } + + "numMedic" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "numMedic" + "xpos" "c78" + "ypos" "310" + "zpos" "5" + "wide" "50" + "tall" "12" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%numMedic%" + "textAlignment" "center" + "font" "MenuClassBuckets" + "fgcolor" "TanLight" + } + + "numSniper" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "numSniper" + "xpos" "c128" + "ypos" "310" + "zpos" "5" + "wide" "50" + "tall" "12" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%numSniper%" + "textAlignment" "center" + "font" "MenuClassBuckets" + "fgcolor" "TanLight" + } + + "numSpy" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "numSpy" + "xpos" "c178" + "ypos" "310" + "zpos" "5" + "wide" "50" + "tall" "12" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%numSpy%" + "textAlignment" "center" + "font" "MenuClassBuckets" + "fgcolor" "TanLight" + } + + "MvMUpgradeImageScout" + { + "ControlName" "ImagePanel" + "fieldName" "MvMUpgradeImageScout" + "xpos" "c-270" + "ypos" "130" + "zpos" "10" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "mvm/class_upgraded" + "scaleImage" "1" + } + + "MvMUpgradeImageSolider" + { + "ControlName" "ImagePanel" + "fieldName" "MvMUpgradeImageSolider" + "xpos" "c-220" + "ypos" "130" + "zpos" "10" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "mvm/class_upgraded" + "scaleImage" "1" + } + + "MvMUpgradeImagePyro" + { + "ControlName" "ImagePanel" + "fieldName" "MvMUpgradeImagePyro" + "xpos" "c-170" + "ypos" "130" + "zpos" "10" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "mvm/class_upgraded" + "scaleImage" "1" + } + + "MvMUpgradeImageDemoman" + { + "ControlName" "ImagePanel" + "fieldName" "MvMUpgradeImageDemoman" + "xpos" "c-80" + "ypos" "130" + "zpos" "10" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "mvm/class_upgraded" + "scaleImage" "1" + } + + "MvMUpgradeImageHeavy" + { + "ControlName" "ImagePanel" + "fieldName" "MvMUpgradeImageHeavy" + "xpos" "c-30" + "ypos" "130" + "zpos" "10" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "mvm/class_upgraded" + "scaleImage" "1" + } + + "MvMUpgradeImageEngineer" + { + "ControlName" "ImagePanel" + "fieldName" "MvMUpgradeImageEngineer" + "xpos" "c20" + "ypos" "130" + "zpos" "10" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "mvm/class_upgraded" + "scaleImage" "1" + } + + "MvMUpgradeImageMedic" + { + "ControlName" "ImagePanel" + "fieldName" "MvMUpgradeImageMedic" + "xpos" "c108" + "ypos" "130" + "zpos" "10" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "mvm/class_upgraded" + "scaleImage" "1" + } + + "MvMUpgradeImageSniper" + { + "ControlName" "ImagePanel" + "fieldName" "MvMUpgradeImageSniper" + "xpos" "c158" + "ypos" "130" + "zpos" "10" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "mvm/class_upgraded" + "scaleImage" "1" + } + + "MvMUpgradeImageSpy" + { + "ControlName" "ImagePanel" + "fieldName" "MvMUpgradeImageSpy" + "xpos" "c208" + "ypos" "130" + "zpos" "10" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "mvm/class_upgraded" + "scaleImage" "1" + } + + "StartExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "StartExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "165" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-170" + "end_y" "115" + "end_wide" "300" + "end_tall" "240" + "callout_inparents_x" "c-270" + "callout_inparents_y" "40" + "next_explanation" "VoucherExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_MvM_UpgradeExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_MvM_UpgradeExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "170" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + } + + "TFPlayerModel" + { + "ControlName" "CTFPlayerModelPanel" + "fieldName" "TFPlayerModel" + + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "480" + + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "render_texture" "0" + "fov" "40" + "allow_rot" "0" + + "paintbackground" "0" + "paintbackgroundenabled" "1" + "bgcolor_override" "0 0 0 175" + + "model" + { + "force_pos" "1" + + "angles_x" "0" + "angles_y" "180" + "angles_z" "0" + "origin_x" "170" + "origin_y" "0" + "origin_z" "-55" + "frame_origin_x" "0" + "frame_origin_y" "0" + "frame_origin_z" "0" + "spotlight" "1" + + "modelname" "" + "vcd" "class_select.vcd" + } + } + + "PlayerModelLine1" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayerModelLine1" + "xpos" "0" + "ypos" "0" + "zpos" "6" + "wide" "f0" + "tall" "4" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + "PlayerModelLine2" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayerModelLine2" + "xpos" "r4" + "ypos" "4" + "zpos" "6" + "wide" "4" + "tall" "472" + "visible" "0" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + "PlayerModelLine3" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayerModelLine3" + "xpos" "0" + "ypos" "r4" + "zpos" "6" + "wide" "f0" + "tall" "4" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + "PlayerModelLine4" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayerModelLine4" + "xpos" "0" + "ypos" "4" + "zpos" "6" + "wide" "4" + "tall" "472" + "visible" "0" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "ClassTipsPanel" + { + "ControlName" "CTFClassTipsPanel" + "fieldName" "ClassTipsPanel" + "xpos" "c-335" + "ypos" "c-100" + "zpos" "7" + "wide" "235" + "tall" "165" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + } + + "ClassHighlightPanel" + { + "ControlName" "CExplanationPopup" + "fieldName" "ClassHighlightPanel" + "xpos" "c-75" + "ypos" "280" + "zpos" "100" + "wide" "250" + "tall" "170" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "start_x" "c-238" + "start_y" "100" + "start_wide" "1" + "start_tall" "1" + "end_x" "c-325" + "end_y" "250" + "end_wide" "275" + "end_tall" "150" + "callout_inparents_x" "c-210" + "callout_inparents_y" "437" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#CMenu_ClassHighlightPanel_Title" + "textAlignment" "north-west" + "xpos" "10" + "ypos" "10" + "wide" "210" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "ClassHighlightText" + { + "ControlName" "CExLabel" + "fieldName" "ClassHighlightText" + "font" "HudFontSmall" + "labelText" "%ClassHighlightText%" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "30" + "wide" "210" + "tall" "115" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "255" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + } +} diff --git a/biscottihud/resource/ui/comprankstooltip.res b/biscottihud/resource/ui/comprankstooltip.res new file mode 100644 index 0000000..ec26423 --- /dev/null +++ b/biscottihud/resource/ui/comprankstooltip.res @@ -0,0 +1,285 @@ +#base "comprankstooltip_colour.res" + +"Resource/UI/MatchMakingTooltip.res" +{ + "CompRanksTooltip" + { + // "ControlName" "EditablePanel" + "fieldName" "CompRanksTooltip" + "xpos" "0" + "ypos" "0" + "zpos" "30000" + "wide" "320" + "tall" "400" + "visible" "0" + "PaintBackgroundType" "0" + "mouseinputenabled" "0" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "XPSource" + "labelText" "#TF_Competitive_RankTooltipTitle" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "5" + "zpos" "2" + "wide" "f0" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "TanLight" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + } + + "DescLabel" + { + "ControlName" "CExLabel" + "fieldName" "DescLabel" + "font" "MMenuPlayListDesc" + "labelText" "#TF_Competitive_RankTooltipDesc" + "xpos" "cs-0.5" + "ypos" "15" + "zpos" "2" + "wide" "f20" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "TanLight" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + } + + "RanksContainer" + { + "ControlName" "EditablePanel" + "fieldName" "RanksContainer" + "xpos" "0" + "ypos" "30" + "wide" "f0" + "tall" "f0" + "proportionaltoparent" "1" + + + // ----------------- Row 1 ------------------- + "Rank1" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank1" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "1" + } + + "Rank2" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank2" + "xpos" "110" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "2" + } + + "Rank3" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank3" + "xpos" "220" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "3" + } + + // ----------------- Row 2 ------------------- + "Rank4" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank4" + "xpos" "0" + "ypos" "70" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "4" + } + + "Rank5" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank5" + "xpos" "110" + "ypos" "70" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "5" + } + + "Rank6" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank6" + "xpos" "220" + "ypos" "70" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "6" + } + + // ----------------- Row 3 ------------------- + "Rank7" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank7" + "xpos" "0" + "ypos" "140" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "7" + } + + "Rank8" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank8" + "xpos" "110" + "ypos" "140" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "8" + } + + "Rank9" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank9" + "xpos" "220" + "ypos" "140" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "9" + } + + // ----------------- Row 10 ------------------- + "Rank10" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank10" + "xpos" "0" + "ypos" "210" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "10" + } + + "Rank11" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank11" + "xpos" "110" + "ypos" "210" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "11" + } + + "Rank12" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank12" + "xpos" "220" + "ypos" "210" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "12" + } + + // ----------------- Row 10 ------------------- + "Rank13" + { + "ControlName" "CTFStaticBadgePanel" + "fieldName" "Rank13" + "xpos" "110" + "ypos" "280" + "zpos" "0" + "wide" "100" + "tall" "80" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "level" "13" + } + } +} \ No newline at end of file diff --git a/biscottihud/resource/ui/comprankstooltip_colour.res b/biscottihud/resource/ui/comprankstooltip_colour.res new file mode 100644 index 0000000..252675d --- /dev/null +++ b/biscottihud/resource/ui/comprankstooltip_colour.res @@ -0,0 +1,8 @@ +"Resource/UI/MatchMakingTooltip.res" +{ + "CompRanksTooltip" + { + "border" "bSchemePrimeBorder1" + "bgcolor_override" "bBlackSolid4" + } +} diff --git a/biscottihud/resource/ui/confirmabandondialog.res b/biscottihud/resource/ui/confirmabandondialog.res new file mode 100644 index 0000000..5c74c5b --- /dev/null +++ b/biscottihud/resource/ui/confirmabandondialog.res @@ -0,0 +1,165 @@ +#base "confirmabandondialog_colour.res" + +"Resource/UI/ConfirmDialogOptOut.res" +{ + "ConfirmDialog" + { + "ControlName" "Frame" + "fieldName" "ConfirmDialog" + "xpos" "c-150" + "ypos" "140" + "wide" "300" + "tall" "250" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + "PaintBackgroundType" "0" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "bBlackSolid3" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontMediumBold" + "labelText" "#ConfirmTitle" + "textAlignment" "north" + "xpos" "0" + "ypos" "15" + "zpos" "1" + "wide" "300" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "ExplanationLabel" + { + "ControlName" "CExLabel" + "fieldName" "ExplanationLabel" + "font" "HudFontSmallBold" + "labelText" "%text%" + "textAlignment" "center" + "xpos" "40" + "ypos" "45" + "zpos" "1" + "wide" "220" + "tall" "130" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "centerwrap" "1" + "fgcolor_override" "200 80 60 255" + } + + "CancelButton" + { + "ControlName" "CExButton" + "fieldName" "CancelButton" + "xpos" "190" + "ypos" "185" + "zpos" "20" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Cancel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "cancel" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "PaintBackgroundType" "0" + } + + "CancelButtonHintIcon" + { + "ControlName" "CSCHintIcon" + "fieldName" "CancelButtonHintIcon" + "xpos" "195" + "ypos" "165" + "zpos" "25" + "wide" "25" + "tall" "25" + "visible" "1" + "actionSet" "MenuControls" + "actionName" "menu_cancel" + } + + "ConfirmButton" + { + "ControlName" "CExButton" + "fieldName" "ConfirmButton" + "xpos" "10" + "ypos" "185" + "zpos" "20" + "wide" "175" + "tall" "25" + "default" "1" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ConfirmButtonText" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "confirm" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "PaintBackgroundType" "0" + } + + "ConfirmButtonHintIcon" + { + "ControlName" "CSCHintIcon" + "fieldName" "ConfirmButtonHintIcon" + "xpos" "15" + "ypos" "165" + "zpos" "25" + "wide" "25" + "tall" "25" + "visible" "1" + "actionSet" "MenuControls" + "actionName" "menu_select" + } + + "OptOutCheckbox" + { + "ControlName" "CheckButton" + "fieldName" "OptOutCheckbox" + "xpos" "0" + "ypos" "217" + "zpos" "2" + "wide" "300" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Confirm_Opt_Out" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "HudFontSmallest" + "selected_fgcolor_override" "255 0 0 255" + } +} diff --git a/biscottihud/resource/ui/confirmabandondialog_colour.res b/biscottihud/resource/ui/confirmabandondialog_colour.res new file mode 100644 index 0000000..c0b1ed5 --- /dev/null +++ b/biscottihud/resource/ui/confirmabandondialog_colour.res @@ -0,0 +1,8 @@ +"Resource/UI/ConfirmDialogOptOut.res" +{ + "ConfirmDialog" + { + "border" "bSchemePrimeBorder1" + "bgcolor_override" "bBlackSolid4" + } +} diff --git a/biscottihud/resource/ui/controlpointprogressbar.res b/biscottihud/resource/ui/controlpointprogressbar.res new file mode 100644 index 0000000..db3f56d --- /dev/null +++ b/biscottihud/resource/ui/controlpointprogressbar.res @@ -0,0 +1,123 @@ +"Resource/UI/ControlPointProgressBar.res" +{ + "ControlPointProgressBar" + { + "ControlName" "EditablePanel" + "fieldName" "ControlPointProgressBar" + "xpos" "0" + "ypos" "0" + "zpos" "20" + "wide" "100" + "wide_minmode" "66" + "tall" "65" + "tall_minmode" "44" + "visible" "0" + "enabled" "1" + } + + "ProgressBar" + { + "ControlName" "CircularProgressBar" + "fieldName" "ProgressBar" + "xpos" "30" + "xpos_minmode" "19" + "ypos" "5" + "ypos_minmode" "3" + "zpos" "23" + "wide" "40" + "wide_minmode" "30" + "tall" "40" + "tall_minmode" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fg_image" "progress_bar_blu" + "bg_image" "progress_bar_blu" + } + + "Teardrop" + { + "ControlName" "CIconPanel" + "fieldName" "Teardrop" + "xpos" "25" + "xpos_minmode" "16" + "ypos" "0" + "ypos_minmode" "0" + "zpos" "21" + "wide" "50" + "wide_minmode" "36" + "tall" "60" + "tall_minmode" "43" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "cappoint_progressbar_teardrop" + "iconColor" "255 255 255 255" + } + + "TeardropSide" + { + "ControlName" "CIconPanel" + "fieldName" "TeardropSide" + "xpos" "25" + "xpos_minmode" "16" + "ypos" "0" + "ypos_minmode" "0" + "zpos" "21" + "wide" "50" + "wide_minmode" "36" + "tall" "50" + "tall_minmode" "36" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "cappoint_progressbar_teardrop" + "iconColor" "255 255 255 255" + } + + "ProgressText" + { + "ControlName" "Label" + "fieldName" "ProgressText" + "font" "DefaultSmall" + "font_minmode" "DefaultVerySmall" + "xpos" "14" + "xpos_minmode" "10" + "ypos" "5" + "ypos_minmode" "3" + "zpos" "23" + "wide" "75" + "wide_minmode" "49" + "tall" "40" + "tall_minmode" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "progress" + "dulltext" "0" + "brighttext" "0" + "centerwrap" "1" + } + + "Blocked" + { + "ControlName" "CIconPanel" + "fieldName" "Blocked" + "xpos" "30" + "xpos_minmode" "19" + "ypos" "5" + "ypos_minmode" "3" + "zpos" "21" + "wide" "40" + "wide_minmode" "30" + "tall" "40" + "tall_minmode" "30" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "cappoint_progressbar_blocked" + "iconColor" "255 255 255 255" + } +} diff --git a/biscottihud/resource/ui/craftingpanel.res b/biscottihud/resource/ui/craftingpanel.res new file mode 100644 index 0000000..2f44480 --- /dev/null +++ b/biscottihud/resource/ui/craftingpanel.res @@ -0,0 +1,480 @@ +#base "craftingpanel_colour.res" + +"Resource/UI/CraftingPanel.res" +{ + "crafting_panel" + { + "ControlName" "Frame" + "fieldName" "crafting_panel" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "400" + "zpos" "501" + "visible" "1" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + "PaintBackgroundType" "0" + + "item_ypos" "85" + "output_item_ypos" "255" + "item_crafting_offcenter_x" "0" + "item_backpack_xdelta" "2" + "item_backpack_ydelta" "4" + + "button_xpos_offcenter" "175" + "button_ypos" "85" + "button_ydelta" "80" + "button_override_delete_xpos" "0" + + "modelpanels_kv" + { + "ControlName" "CItemModelPanel" + "wide" "70" + "tall" "45" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "35" + "text_center" "1" + "name_only" "1" + "text_forcesize" "3" + "noitem_use_fullpanel" "1" + + "inset_eq_x" "2" + "inset_eq_y" "2" + + "MainContentsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "MainContentsContainer" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "f0" + "visible" "1" + "bgcolor_override" "0 0 0 0" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + + "namelabel" + { + "ControlName" "CExLabel" + "fieldName" "namelabel" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "50" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%itemname%" + "textAlignment" "south" + "fgcolor" "235 226 202 255" + "wrap" "1" + "centerwrap" "1" + } + } + } + + "recipebuttons_kv" + { + "font" "HudFontSmallestBold" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "280" + "tall" "13" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "wrap" "0" + "centerwrap" "0" + "textAlignment" "west" + "textinsetx" "0" + "defaultFgColor_override" "117 107 94 255" + "defaultBgColor_override" "0 0 0 0" + "armedFgColor_override" "235 226 202 255" + "armedBgColor_override" "0 0 0 0" + "depressedFgColor_override" "178 82 22 255" + "depressedBgColor_override" "0 0 0 0" + } + + "filter_xoffset" "-290" + "filter_ypos" "30" + "filter_xdelta" "10" + "filter_ydelta" "10" + + "recipefilterbuttons_kv" + { + "zpos" "2" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "textAlignment" "south-west" + "Command" "" + "Default" "0" + "font" "MenuKeys" + "scaleImage" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + } + + "ClassLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassLabel" + "font" "HudFontSmallBold" + "labelText" "#CraftStep1" + "textAlignment" "north-west" + "xpos" "c-290" + "ypos" "10" + "zpos" "1" + "wide" "240" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 187 161 255" + } + + "selectedrecipecontainer" + { + "ControlName" "EditablePanel" + "fieldName" "selectedrecipecontainer" + "xpos" "c0" + "ypos" "0" + "zpos" "5" + "wide" "300" + "tall" "350" + "PaintBackgroundType" "2" + "bgcolor_override" "200 187 161 0" + + "RecipeTitle" + { + "ControlName" "CExLabel" + "fieldName" "RecipeTitle" + "font" "HudFontSmallBold" + "labelText" "%recipetitle%" + "textAlignment" "west" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "280" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "200 187 161 255" + "wrap" "1" + } + + "RecipeInputStringLabel" + { + "ControlName" "CExLabel" + "fieldName" "RecipeInputStringLabel" + "font" "ItemFontAttribLarge" + "labelText" "%recipeinputstring%" + "textAlignment" "north-west" + "xpos" "0" + "ypos" "45" + "zpos" "1" + "wide" "280" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "153 204 255 255" + "wrap" "1" + } + + "InputLabel" + { + "ControlName" "CExLabel" + "fieldName" "InputLabel" + "font" "HudFontSmallBold" + "labelText" "#Craft_Recipe_Inputs" + "textAlignment" "north-west" + "xpos" "0" + "ypos" "68" + "zpos" "1" + "wide" "200" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "117 107 94 255" + } + "OutputLabel" + { + "ControlName" "CExLabel" + "fieldName" "OutputLabel" + "font" "HudFontSmallBold" + "labelText" "#Craft_Recipe_Outputs" + "textAlignment" "north-west" + "xpos" "0" + "ypos" "238" + "zpos" "1" + "wide" "200" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "117 107 94 255" + } + + "CraftButton" + { + "ControlName" "CExButton" + "fieldName" "CraftButton" + "xpos" "0" + "ypos" "318" + "zpos" "20" + "wide" "200" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "labelText" "#CraftConfirm" + "font" "HudFontMediumBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "craft" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "FreeAccountLabel" + { + "ControlName" "CExLabel" + "fieldName" "FreeAccountLabel" + "font" "HudFontSmallestBold" + "labelText" "#Craft_PremiumRecipe" + "textAlignment" "west" + "xpos" "0" + "ypos" "318" + "zpos" "21" + "wide" "200" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor" "178 82 22 255" + } + "UpgradeButton" + { + "ControlName" "CExButton" + "fieldName" "UpgradeButton" + "xpos" "200" + "ypos" "318" + "zpos" "20" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Trial_Upgrade" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "upgrade" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "defaultBgColor_override" "102 122 42 255" + "armedBgColor_override" "143 167 57 255" + "depressedBgColor_override" "143 167 57 255" + "selectedBgColor_override" "143 167 57 255" + } + } + + "recipecontainerscroller" + { + "ControlName" "EditablePanel" + "fieldName" "recipecontainerscroller" + "xpos" "c-290" + "ypos" "70" + "zpos" "5" + "wide" "280" + "tall" "240" + "PaintBackgroundType" "2" + "fgcolor_override" "59 54 48 255" + "bgcolor_override" "200 187 161 0" + "autohide_buttons" "1" + } + "recipecontainer" + { + "ControlName" "EditablePanel" + "fieldName" "recipecontainer" + "xpos" "0" + "ypos" "0" + "zpos" "5" + "wide" "280" + "tall" "240" + "PaintBackgroundType" "2" + "bgcolor_override" "200 187 161 0" + } + + "mouseoveritempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mouseoveritempanel" + "xpos" "c-70" + "ypos" "270" + "zpos" "100" + "wide" "300" + "tall" "300" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "text_ypos" "20" + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "15" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "center" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + } + + "mousedragitempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mousedragitempanel" + + "xpos" "c-70" + "ypos" "270" + "zpos" "100" + "wide" "54" + "tall" "42" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "35" + "text_ypos" "60" + "text_center" "1" + "name_only" "1" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "TooltipPanel" + { + "ControlName" "EditablePanel" + "fieldName" "TooltipPanel" + "xpos" "0" + "ypos" "0" + "zpos" "100" + "wide" "140" + "tall" "50" + "visible" "0" + "PaintBackgroundType" "2" + "border" "MainMenuBGBorder" + + "TipLabel" + { + "ControlName" "CExLabel" + "fieldName" "TipLabel" + "font" "HudFontSmallest" + "labelText" "%tiptext%" + "textAlignment" "center" + "xpos" "20" + "ypos" "10" + "zpos" "2" + "wide" "100" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "235 226 202 255" + "wrap" "1" + "centerwrap" "1" + } + } + + "ShowExplanationsButton" + { + "ControlName" "CExButton" + "fieldName" "ShowExplanationsButton" + "xpos" "c275" + "ypos" "10" + "zpos" "100" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "?" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "Command" "reloadscheme" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } +} diff --git a/biscottihud/resource/ui/craftingpanel_colour.res b/biscottihud/resource/ui/craftingpanel_colour.res new file mode 100644 index 0000000..fa26753 --- /dev/null +++ b/biscottihud/resource/ui/craftingpanel_colour.res @@ -0,0 +1,9 @@ +"Resource/UI/CraftingPanel.res" +{ + "crafting_panel" + { + "bgcolor_override" "bBlackSolid3" + "infocus_bgcolor_override" "bBlackSolid3" + "outoffocus_bgcolor_override" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/craftingstatusdialog.res b/biscottihud/resource/ui/craftingstatusdialog.res new file mode 100644 index 0000000..6970621 --- /dev/null +++ b/biscottihud/resource/ui/craftingstatusdialog.res @@ -0,0 +1,120 @@ +#base "craftingstatusdialog_colour.res" + +"Resource/UI/CraftingStatusDialog.res" +{ + "CraftingStatusDialog" + { + "fieldName" "CraftingStatusDialog" + "visible" "1" + "enabled" "1" + "xpos" "c-100" + "ypos" "200" + "wide" "200" + "tall" "110" + "paintbackgroundtype" "0" + "settitlebarvisible" "0" + } + + "CenterPositioner" + { + "ControlName" "Label" + "fieldName" "CenterPositioner" + "font" "HudFontSmallBold" + "xpos" "0" + "ypos" "10" + "zpos" "0" + "wide" "200" + "tall" "0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "centerwrap" "0" + "labelText" "" + "textAlignment" "center" + "bgcolor_override" "0 0 0 0" + } + + "RecipeItemModelPanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "RecipeItemModelPanel" + "visible" "0" + } + + "TitleLabel" + { + "ControlName" "Label" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "200" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "centerwrap" "1" + "labelText" "%updatetext%" + "textAlignment" "center" + "fgcolor_override" "200 80 60 255" + "bgcolor_override" "0 0 0 0" + "auto_wide_tocontents" "1" + + "pin_to_sibling" "CenterPositioner" + "pin_corner_to_sibling" "4" + "pin_to_sibling_corner" "4" + } + "EllipsesLabel" + { + "ControlName" "Label" + "fieldName" "EllipsesLabel" + "font" "HudFontSmallBold" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "200" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%ellipses%" + "textAlignment" "west" + "fgcolor_override" "200 80 60 255" + "bgcolor_override" "0 0 0 0" + + "pin_to_sibling" "TitleLabel" + "pin_corner_to_sibling" "0" + "pin_to_sibling_corner" "1" + } + + "CloseButton" + { + "ControlName" "CExButton" + "fieldName" "CloseButton" + "xpos" "50" + "ypos" "75" + "zpos" "1" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#GameUI_Ok" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "Command" "close" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } +} diff --git a/biscottihud/resource/ui/craftingstatusdialog_colour.res b/biscottihud/resource/ui/craftingstatusdialog_colour.res new file mode 100644 index 0000000..c7feb39 --- /dev/null +++ b/biscottihud/resource/ui/craftingstatusdialog_colour.res @@ -0,0 +1,8 @@ +"Resource/UI/CraftingStatusDialog.res" +{ + "CraftingStatusDialog" + { + "bgcolor_override" "bBlackSolid4" + "border" "bSchemePrimeBorder1" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/dispenser_active.res b/biscottihud/resource/ui/destroy_menu/dispenser_active.res new file mode 100644 index 0000000..c2b9d70 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/dispenser_active.res @@ -0,0 +1,120 @@ +"Resource/UI/destroy_menu/dispenser_active.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Dispenser" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bOrange" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "10" + "ypos" "24" + "zpos" "1" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "255 255 255 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "24" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_dispenser" + "iconColor" "255 255 255 255" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/dispenser_inactive.res b/biscottihud/resource/ui/destroy_menu/dispenser_inactive.res new file mode 100644 index 0000000..cc8c490 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/dispenser_inactive.res @@ -0,0 +1,144 @@ +"Resource/UI/build_menu/dispenser_inactive.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_dispenser" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bGray" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "24" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_dispenser" + "iconColor" "bGray" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_NotBuilt" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "UnavailableLabel" + { + "ControlName" "CExLabel" + "fieldName" "UnavailableLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Unavailable" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "bGray" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/hudmenuengydestroy.res b/biscottihud/resource/ui/destroy_menu/hudmenuengydestroy.res new file mode 100644 index 0000000..aaf3fc2 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/hudmenuengydestroy.res @@ -0,0 +1,272 @@ +"Resource/UI/build_menu/HudMenuEngyDestroy.res" +{ + "MainBackground" + { + "ControlName" "ImagePanel" + "fieldName" "MainBackground" + "xpos" "0" + "ypos" "15" + "zpos" "0" + "wide" "318" + "tall" "125" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + } + + "ColoredLine" + { + "ControlName" "CTFImagePanel" + "fieldName" "ColoredLine" + "xpos" "0" + "ypos" "5" + "wide" "318" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "Divider" + { + "ControlName" "ImagePanel" + "fieldName" "Divider" + "xpos" "50" + "ypos" "28" + "zpos" "1" + "wide" "263" + "tall" "2" + "fillcolor" "255 222 208 255" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "4" + "ypos" "0" + "zpos" "1" + "wide" "39" + "tall" "39" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "255 255 255 255" + } + + "TitleLabelDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabelDropshadow" + "font" "HudFontMediumBold" + "fgcolor" "Black" + "xpos" "51" // align me to the left edge of the first selection + "ypos" "-2" + "zpos" "2" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_menu_demolish_title" + "textAlignment" "Left" + "dulltext" "1" + "brighttext" "0" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontMediumBold" + "xpos" "50" // align me to the left edge of the first selection + "ypos" "-3" + "zpos" "3" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_menu_demolish_title" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "CancelLabel" + { + "ControlName" "CExLabel" + "fieldName" "CancelLabel" + "font" "HudFontSmallest" + "xpos" "113" + "ypos" "4" + "zpos" "1" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Cancel" + "textAlignment" "East" + "dulltext" "0" + "brighttext" "0" + } + + "active_item_1" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "active_item_1" + "xpos" "1" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "0" + } + + "active_item_2" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "active_item_2" + "xpos" "81" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "0" + } + + "active_item_3" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "active_item_3" + "xpos" "161" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "0" + } + + "active_item_4" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "active_item_4" + "xpos" "241" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "0" + } + + "inactive_item_1" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "inactive_item_1" + "xpos" "1" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "inactive_item_2" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "inactive_item_2" + "xpos" "81" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "inactive_item_3" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "inactive_item_3" + "xpos" "161" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "inactive_item_4" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "inactive_item_4" + "xpos" "241" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "unavailable_item_1" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "unavailable_item_1" + "xpos" "1" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "unavailable_item_2" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "unavailable_item_2" + "xpos" "81" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "unavailable_item_3" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "unavailable_item_3" + "xpos" "161" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "unavailable_item_4" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "unavailable_item_4" + "xpos" "241" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/pipboy/dispenser_active.res b/biscottihud/resource/ui/destroy_menu/pipboy/dispenser_active.res new file mode 100644 index 0000000..8bb0454 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/pipboy/dispenser_active.res @@ -0,0 +1,121 @@ +"Resource/UI/destroy_menu/dispenser_active.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Dispenser" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bOrange" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "10" + "ypos" "24" + "zpos" "1" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "0 255 0 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "24" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_dispenser" + "iconColor" "0 255 0 255" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "0 255 0 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/pipboy/dispenser_inactive.res b/biscottihud/resource/ui/destroy_menu/pipboy/dispenser_inactive.res new file mode 100644 index 0000000..976a397 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/pipboy/dispenser_inactive.res @@ -0,0 +1,145 @@ +"Resource/UI/build_menu/dispenser_inactive.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_dispenser" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "0 100 0 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "24" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_dispenser" + "iconColor" "0 155 0 255" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_NotBuilt" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "UnavailableLabel" + { + "ControlName" "CExLabel" + "fieldName" "UnavailableLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Unavailable" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "0 155 0 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/pipboy/hudmenuengydestroy.res b/biscottihud/resource/ui/destroy_menu/pipboy/hudmenuengydestroy.res new file mode 100644 index 0000000..5428876 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/pipboy/hudmenuengydestroy.res @@ -0,0 +1,313 @@ +"Resource/UI/build_menu/HudMenuEngyDestroy.res" +{ + "MainBackground" + { + "ControlName" "ImagePanel" + "fieldName" "MainBackground" + "xpos" "0" + "ypos" "15" + "zpos" "0" + "wide" "318" + "tall" "125" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + } + + "ColoredLine" + { + "ControlName" "CTFImagePanel" + "fieldName" "ColoredLine" + "xpos" "0" + "ypos" "5" + "wide" "318" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "ItemBackground" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemBackground" + "xpos" "0" + "ypos" "15" + "zpos" "-2" + "wide" "318" + "tall" "125" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "pipboy_overlay" + "tileImage" "1" + "drawcolor" "192 192 192 255" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + "BackgroundEngineer" + { + "ControlName" "CTFImagePanel" + "fieldName" "BackgroundEngineer" + "xpos" "292" // 353 for upper right corner // 363 for lower right corner + "ypos" "16" // 7 for upper right corner // 143 for lower right corner + "zpos" "-1" + "wide" "23" + "tall" "23" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "pipboy_engineer" + "tileImage" "0" + "tileVertically" "0" + } + + "Divider" + { + "ControlName" "ImagePanel" + "fieldName" "Divider" + "xpos" "50" + "ypos" "28" + "zpos" "1" + "wide" "240" + "tall" "2" + "fillcolor" "0 255 0 255" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "4" + "ypos" "0" + "zpos" "1" + "wide" "39" + "tall" "39" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "0 255 0 255" + } + + "TitleLabelDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabelDropshadow" + "font" "HudFontMediumBold" + "fgcolor" "Black" + "xpos" "51" // align me to the left edge of the first selection + "ypos" "-2" + "zpos" "2" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_menu_demolish_title" + "textAlignment" "Left" + "dulltext" "1" + "brighttext" "0" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontMediumBold" + "xpos" "50" // align me to the left edge of the first selection + "ypos" "-3" + "zpos" "3" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_menu_demolish_title" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "CancelLabel" + { + "ControlName" "CExLabel" + "fieldName" "CancelLabel" + "font" "HudFontSmallest" + "xpos" "113" + "ypos" "4" + "zpos" "1" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Cancel" + "textAlignment" "East" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "active_item_1" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "active_item_1" + "xpos" "1" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "0" + } + + "active_item_2" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "active_item_2" + "xpos" "81" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "0" + } + + "active_item_3" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "active_item_3" + "xpos" "161" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "0" + } + + "active_item_4" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "active_item_4" + "xpos" "241" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "0" + } + + "inactive_item_1" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "inactive_item_1" + "xpos" "1" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "inactive_item_2" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "inactive_item_2" + "xpos" "81" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "inactive_item_3" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "inactive_item_3" + "xpos" "161" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "inactive_item_4" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "inactive_item_4" + "xpos" "241" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "unavailable_item_1" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "unavailable_item_1" + "xpos" "1" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "unavailable_item_2" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "unavailable_item_2" + "xpos" "81" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "unavailable_item_3" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "unavailable_item_3" + "xpos" "161" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } + + "unavailable_item_4" + { + "ControlName" "CEngyDestroyMenuItem" + "fieldName" "unavailable_item_4" + "xpos" "241" + "ypos" "36" + "zpos" "1" + "wide" "72" + "tall" "102" + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/pipboy/sentry_active.res b/biscottihud/resource/ui/destroy_menu/pipboy/sentry_active.res new file mode 100644 index 0000000..c223ae6 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/pipboy/sentry_active.res @@ -0,0 +1,122 @@ +"Resource/UI/destroy_menu/sentry_active.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Sentry" + "labelText_lodef" "#TF_Object_Sentry_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bOrange" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "10" + "ypos" "24" + "zpos" "1" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "0 255 0 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "16" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sentrygun_1" + "iconColor" "0 255 0 255" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "0 255 0 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/pipboy/sentry_inactive.res b/biscottihud/resource/ui/destroy_menu/pipboy/sentry_inactive.res new file mode 100644 index 0000000..a4821da --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/pipboy/sentry_inactive.res @@ -0,0 +1,146 @@ +"Resource/UI/destroy_menu/sentry_inactive.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Sentry" + "labelText_lodef" "#TF_Object_Sentry_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "0 100 0 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "16" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sentrygun_1" + "iconColor" "0 155 0 255" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_NotBuilt" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "UnavailableLabel" + { + "ControlName" "CExLabel" + "fieldName" "UnavailableLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Unavailable" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "0 155 0 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/pipboy/tele_entrance_active.res b/biscottihud/resource/ui/destroy_menu/pipboy/tele_entrance_active.res new file mode 100644 index 0000000..ac81085 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/pipboy/tele_entrance_active.res @@ -0,0 +1,121 @@ +"Resource/UI/destroy_menu/tele_entrance_active.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Tele_Entrance_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bOrange" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "10" + "ypos" "24" + "zpos" "1" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "0 255 0 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "18" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_entrance" + "iconColor" "0 255 0 255" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "0 255 0 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/pipboy/tele_entrance_inactive.res b/biscottihud/resource/ui/destroy_menu/pipboy/tele_entrance_inactive.res new file mode 100644 index 0000000..7c0ad6a --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/pipboy/tele_entrance_inactive.res @@ -0,0 +1,145 @@ +"Resource/UI/build_menu/tele_entrance_inactive.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_tele_entrance_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "0 100 0 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "18" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_entrance" + "iconColor" "0 155 0 255" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_NotBuilt" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "UnavailableLabel" + { + "ControlName" "CExLabel" + "fieldName" "UnavailableLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Unavailable" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "0 155 0 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/pipboy/tele_exit_active.res b/biscottihud/resource/ui/destroy_menu/pipboy/tele_exit_active.res new file mode 100644 index 0000000..9cb0011 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/pipboy/tele_exit_active.res @@ -0,0 +1,121 @@ +"Resource/UI/destroy_menu/tele_exit_active.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Tele_Exit_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bOrange" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "10" + "ypos" "24" + "zpos" "1" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "0 255 0 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "18" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_exit" + "iconColor" "0 255 0 255" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "0 255 0 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "4" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/pipboy/tele_exit_inactive.res b/biscottihud/resource/ui/destroy_menu/pipboy/tele_exit_inactive.res new file mode 100644 index 0000000..f9c9b49 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/pipboy/tele_exit_inactive.res @@ -0,0 +1,145 @@ +"Resource/UI/build_menu/tele_exit_inactive.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_tele_exit_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "0 255 0 255" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "0 100 0 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "18" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_exit" + "iconColor" "0 155 0 255" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_NotBuilt" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "UnavailableLabel" + { + "ControlName" "CExLabel" + "fieldName" "UnavailableLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Unavailable" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "0 155 0 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "4" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/sentry_active.res b/biscottihud/resource/ui/destroy_menu/sentry_active.res new file mode 100644 index 0000000..5a7deef --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/sentry_active.res @@ -0,0 +1,121 @@ +"Resource/UI/destroy_menu/sentry_active.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Sentry" + "labelText_lodef" "#TF_Object_Sentry_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bOrange" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "10" + "ypos" "24" + "zpos" "1" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "255 255 255 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "16" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sentrygun_1" + "iconColor" "255 255 255 255" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/sentry_inactive.res b/biscottihud/resource/ui/destroy_menu/sentry_inactive.res new file mode 100644 index 0000000..5ee8b91 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/sentry_inactive.res @@ -0,0 +1,145 @@ +"Resource/UI/destroy_menu/sentry_inactive.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Sentry" + "labelText_lodef" "#TF_Object_Sentry_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bGray" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "16" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sentrygun_1" + "iconColor" "bGray" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_NotBuilt" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "UnavailableLabel" + { + "ControlName" "CExLabel" + "fieldName" "UnavailableLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Unavailable" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "bGray" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/tele_entrance_active.res b/biscottihud/resource/ui/destroy_menu/tele_entrance_active.res new file mode 100644 index 0000000..125c48e --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/tele_entrance_active.res @@ -0,0 +1,120 @@ +"Resource/UI/destroy_menu/tele_entrance_active.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Tele_Entrance_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bOrange" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "10" + "ypos" "24" + "zpos" "1" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "255 255 255 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "18" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_entrance" + "iconColor" "255 255 255 255" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/tele_entrance_inactive.res b/biscottihud/resource/ui/destroy_menu/tele_entrance_inactive.res new file mode 100644 index 0000000..1bda26e --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/tele_entrance_inactive.res @@ -0,0 +1,144 @@ +"Resource/UI/build_menu/tele_entrance_inactive.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_tele_entrance_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bGray" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "18" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_entrance" + "iconColor" "bGray" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_NotBuilt" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "UnavailableLabel" + { + "ControlName" "CExLabel" + "fieldName" "UnavailableLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Unavailable" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "bGray" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/tele_exit_active.res b/biscottihud/resource/ui/destroy_menu/tele_exit_active.res new file mode 100644 index 0000000..c4c8088 --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/tele_exit_active.res @@ -0,0 +1,120 @@ +"Resource/UI/destroy_menu/tele_exit_active.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_Tele_Exit_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bOrange" + } + + "DestroyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "DestroyIcon" + "xpos" "10" + "ypos" "24" + "zpos" "1" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_demolish" + "iconColor" "255 255 255 255" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "18" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_exit" + "iconColor" "255 255 255 255" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "4" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/destroy_menu/tele_exit_inactive.res b/biscottihud/resource/ui/destroy_menu/tele_exit_inactive.res new file mode 100644 index 0000000..6bba77e --- /dev/null +++ b/biscottihud/resource/ui/destroy_menu/tele_exit_inactive.res @@ -0,0 +1,144 @@ +"Resource/UI/build_menu/tele_exit_inactive.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemNameLabel" + "font" "Default" + "xpos" "6" + "ypos" "0" + "zpos" "1" + "wide" "84" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Object_tele_exit_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemBackground" + { + "ControlName" "ImagePanel" + "fieldName" "ItemBackground" + "xpos" "4" + "ypos" "22" + "zpos" "0" + "wide" "68" + "tall" "60" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "fillcolor" "bBlackSolid3" + } + + "CostBG" + { + "ControlName" "ImagePanel" + "fieldName" "CostBG" + "xpos" "4" + "ypos" "4" + "zpos" "0" + "wide" "68" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bGray" + } + + "BuildingIcon" + { + "ControlName" "CIconPanel" + "fieldName" "BuildingIcon" + "xpos" "10" + "ypos" "18" + "zpos" "2" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_exit" + "iconColor" "bGray" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_NotBuilt" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "UnavailableLabel" + { + "ControlName" "CExLabel" + "fieldName" "UnavailableLabel" + "font" "Default" + "xpos" "4" + "ypos" "48" + "zpos" "2" + "wide" "68" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Unavailable" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "27" + "ypos" "84" + "zpos" "0" + "wide" "18" + "tall" "18" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "bGray" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "HudMenuNumberFont" + "fgcolor" "Black" + "xpos" "27" + "ypos" "83" + "zpos" "1" + "wide" "18" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "4" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/demoman_blue.res b/biscottihud/resource/ui/disguise_menu/demoman_blue.res new file mode 100644 index 0000000..56fdc80 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/demoman_blue.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/demoman_blue.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Demoman" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_demo" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "4" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/demoman_red.res b/biscottihud/resource/ui/disguise_menu/demoman_red.res new file mode 100644 index 0000000..1f5926d --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/demoman_red.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/demoman_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Demoman" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_demo" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "4" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/engineer_blue.res b/biscottihud/resource/ui/disguise_menu/engineer_blue.res new file mode 100644 index 0000000..67e1e5e --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/engineer_blue.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/engineer_blue.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Engineer" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_engineer" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "6" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/engineer_red.res b/biscottihud/resource/ui/disguise_menu/engineer_red.res new file mode 100644 index 0000000..2aba6b8 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/engineer_red.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/engineer_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Engineer" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_engineer" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "6" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/heavy_blue.res b/biscottihud/resource/ui/disguise_menu/heavy_blue.res new file mode 100644 index 0000000..ef45727 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/heavy_blue.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/heavy_blue.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_HWGuy" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_heavy" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "5" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/heavy_red.res b/biscottihud/resource/ui/disguise_menu/heavy_red.res new file mode 100644 index 0000000..3cd9ba2 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/heavy_red.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/heavy_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_HWGuy" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_heavy" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "5" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/hudmenuspydisguise.res b/biscottihud/resource/ui/disguise_menu/hudmenuspydisguise.res new file mode 100644 index 0000000..fc628f8 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/hudmenuspydisguise.res @@ -0,0 +1,475 @@ +"Resource/UI/disguise_menu/HudMenuSpyDisguise.res" +{ + "MainBackground" + { + "ControlName" "ImagePanel" + "fieldName" "MainBackground" + "xpos" "0" + "ypos" "15" + "zpos" "0" + "wide" "378" + "tall" "82" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + } + + "ColoredLine" + { + "ControlName" "CTFImagePanel" + "fieldName" "ColoredLine" + "xpos" "0" + "ypos" "5" + "wide" "378" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "Divider" + { + "ControlName" "ImagePanel" + "fieldName" "Divider" + "xpos" "32" + "ypos" "28" + "zpos" "1" + "wide" "341" + "tall" "2" + "fillcolor" "255 222 208 255" + } + + "SpyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "SpyIcon" + "xpos" "-5" + "ypos" "-2" + "zpos" "1" + "wide" "40" + "tall" "40" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "hud_spy_disguise_menu_icon" + "iconColor" "255 255 255 255" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontMediumBold" + "xpos" "32" // align me to the left edge of the first selection + "ypos" "-2" + "zpos" "3" + "wide" "360" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Disguise_Title" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "TitleLabelDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabelDropshadow" + "font" "HudFontMediumBold" + "fgcolor" "Black" + "xpos" "32" // align me to the left edge of the first selection + "ypos" "-1" + "zpos" "3" + "wide" "360" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Disguise_Title" + "textAlignment" "Left" + "dulltext" "1" + "brighttext" "0" + } + + "ToggleLabel" + { + "ControlName" "CExLabel" + "fieldName" "ToggleLabel" + "font" "HudFontSmallest" + "xpos" "173" + "ypos" "16" + "zpos" "2" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Spy_Minus_Toggle" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + + "CancelLabel" + { + "ControlName" "CExLabel" + "fieldName" "CancelLabel" + "font" "HudFontSmallest" + "xpos" "173" + "ypos" "4" + "zpos" "2" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Cancel" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + + "class_item_red_1" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_1" + "xpos" "5" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "1" + } + + "class_item_blue_1" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_1" + "xpos" "5" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "0" + } + + "class_item_red_2" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_2" + "xpos" "43" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "1" + } + + "class_item_blue_2" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_2" + "xpos" "43" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "0" + } + + "class_item_red_3" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_3" + "xpos" "81" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "1" + } + + "class_item_blue_3" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_3" + "xpos" "81" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "0" + } + + "class_item_red_4" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_4" + "xpos" "133" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "1" + } + + "class_item_blue_4" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_4" + "xpos" "133" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "0" + } + + "class_item_red_5" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_5" + "xpos" "171" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "1" + } + + "class_item_blue_5" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_5" + "xpos" "171" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "0" + } + + "class_item_red_6" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_6" + "xpos" "209" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "1" + } + + "class_item_blue_6" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_6" + "xpos" "209" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "0" + } + + "class_item_red_7" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_7" + "xpos" "261" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "1" + } + + "class_item_blue_7" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_7" + "xpos" "261" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "0" + } + + "class_item_red_8" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_8" + "xpos" "299" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "1" + } + + "class_item_blue_8" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_8" + "xpos" "299" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "0" + } + + "class_item_red_9" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_9" + "xpos" "337" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "1" + } + + "class_item_blue_9" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_9" + "xpos" "337" + "ypos" "40" + "zpos" "2" + "wide" "36" + "tall" "54" + "visible" "0" + } + + "NumberBg1" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "53" + "ypos" "78" + "zpos" "4" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel1" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "53" + "ypos" "77" + "zpos" "5" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberBg2" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "181" + "ypos" "78" + "zpos" "4" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel2" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "181" + "ypos" "77" + "zpos" "5" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberBg3" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "309" + "ypos" "78" + "zpos" "4" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel3" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "309" + "ypos" "77" + "zpos" "5" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/hudmenuspydisguise_normal.res b/biscottihud/resource/ui/disguise_menu/hudmenuspydisguise_normal.res new file mode 100644 index 0000000..c5b3510 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/hudmenuspydisguise_normal.res @@ -0,0 +1,475 @@ +"Resource/UI/disguise_menu/HudMenuSpyDisguise.res" +{ + "MainBackground" + { + "ControlName" "ImagePanel" + "fieldName" "MainBackground" + "xpos" "0" + "ypos" "15" + "zpos" "0" + "wide" "470" + "tall" "140" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + } + + "ColoredLine" + { + "ControlName" "CTFImagePanel" + "fieldName" "ColoredLine" + "xpos" "0" + "ypos" "5" + "wide" "470" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "Divider" + { + "ControlName" "ImagePanel" + "fieldName" "Divider" + "xpos" "8" + "ypos" "55" + "zpos" "1" + "wide" "456" + "tall" "2" + "fillcolor" "255 222 208 255" + } + + "SpyIcon" + { + "ControlName" "CIconPanel" + "fieldName" "SpyIcon" + "xpos" "10" + "ypos" "-2" + "zpos" "1" + "wide" "45" + "tall" "45" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "hud_spy_disguise_menu_icon" + "iconColor" "255 255 255 255" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontGiantBold" + "xpos" "55" // align me to the left edge of the first selection + "ypos" "5" + "zpos" "3" + "wide" "360" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Disguise_Title" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "TitleLabelDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabelDropshadow" + "font" "HudFontGiantBold" + "fgcolor" "Black" + "xpos" "55" // align me to the left edge of the first selection + "ypos" "6" + "zpos" "3" + "wide" "360" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Disguise_Title" + "textAlignment" "Left" + "dulltext" "1" + "brighttext" "0" + } + + "ToggleLabel" + { + "ControlName" "CExLabel" + "fieldName" "ToggleLabel" + "font" "Default" + "xpos" "20" + "ypos" "42" + "zpos" "2" + "wide" "200" + "tall" "13" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Spy_Minus_Toggle" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "CancelLabel" + { + "ControlName" "CExLabel" + "fieldName" "CancelLabel" + "font" "Default" + "xpos" "250" + "ypos" "42" + "zpos" "2" + "wide" "200" + "tall" "13" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Build_Cancel" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + + "class_item_red_1" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_1" + "xpos" "20" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "1" + } + + "class_item_blue_1" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_1" + "xpos" "20" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "0" + } + + "class_item_red_2" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_2" + "xpos" "60" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "1" + } + + "class_item_blue_2" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_2" + "xpos" "60" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "0" + } + + "class_item_red_3" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_3" + "xpos" "100" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "1" + } + + "class_item_blue_3" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_3" + "xpos" "100" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "0" + } + + "class_item_red_4" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_4" + "xpos" "172" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "1" + } + + "class_item_blue_4" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_4" + "xpos" "172" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "0" + } + + "class_item_red_5" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_5" + "xpos" "212" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "1" + } + + "class_item_blue_5" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_5" + "xpos" "212" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "0" + } + + "class_item_red_6" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_6" + "xpos" "252" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "1" + } + + "class_item_blue_6" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_6" + "xpos" "252" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "0" + } + + "class_item_red_7" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_7" + "xpos" "324" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "1" + } + + "class_item_blue_7" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_7" + "xpos" "324" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "0" + } + + "class_item_red_8" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_8" + "xpos" "364" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "1" + } + + "class_item_blue_8" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_8" + "xpos" "364" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "0" + } + + "class_item_red_9" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_red_9" + "xpos" "404" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "1" + } + + "class_item_blue_9" + { + "ControlName" "EditablePanel" + "fieldName" "class_item_blue_9" + "xpos" "404" + "ypos" "40" + "zpos" "2" + "wide" "45" + "tall" "120" + "visible" "0" + } + + "NumberBg1" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "75" + "ypos" "130" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel1" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "75" + "ypos" "130" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberBg2" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "227" + "ypos" "130" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel2" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "227" + "ypos" "130" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberBg3" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "379" + "ypos" "130" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel3" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "379" + "ypos" "130" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/medic_blue.res b/biscottihud/resource/ui/disguise_menu/medic_blue.res new file mode 100644 index 0000000..356600e --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/medic_blue.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/scout_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Medic" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_medic" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "7" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/medic_red.res b/biscottihud/resource/ui/disguise_menu/medic_red.res new file mode 100644 index 0000000..603cd95 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/medic_red.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/medic_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Medic" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_medic" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "7" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/pyro_blue.res b/biscottihud/resource/ui/disguise_menu/pyro_blue.res new file mode 100644 index 0000000..2e0b725 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/pyro_blue.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/pyro_blue.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Pyro" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_pyro" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/pyro_red.res b/biscottihud/resource/ui/disguise_menu/pyro_red.res new file mode 100644 index 0000000..5262049 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/pyro_red.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/pyro_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Pyro" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_pyro" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/scout_blue.res b/biscottihud/resource/ui/disguise_menu/scout_blue.res new file mode 100644 index 0000000..ffc9da5 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/scout_blue.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/scout_blue.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Scout" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_scout" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/scout_red.res b/biscottihud/resource/ui/disguise_menu/scout_red.res new file mode 100644 index 0000000..7f1c531 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/scout_red.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/scout_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Scout" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_scout" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/sniper_blue.res b/biscottihud/resource/ui/disguise_menu/sniper_blue.res new file mode 100644 index 0000000..0947a5c --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/sniper_blue.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/sniper_blue.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Sniper" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_sniper" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "8" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/sniper_red.res b/biscottihud/resource/ui/disguise_menu/sniper_red.res new file mode 100644 index 0000000..7e2d0a4 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/sniper_red.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/sniper_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Sniper" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_sniper" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "8" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/soldier_blue.res b/biscottihud/resource/ui/disguise_menu/soldier_blue.res new file mode 100644 index 0000000..9a209e6 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/soldier_blue.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/soldier_blue.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Soldier" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_soldier" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/soldier_red.res b/biscottihud/resource/ui/disguise_menu/soldier_red.res new file mode 100644 index 0000000..0bb523a --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/soldier_red.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/soldier_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Soldier" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_soldier" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/spy_blue.res b/biscottihud/resource/ui/disguise_menu/spy_blue.res new file mode 100644 index 0000000..92a49b4 --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/spy_blue.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/spy_blue.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Spy" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_spy" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "9" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguise_menu/spy_red.res b/biscottihud/resource/ui/disguise_menu/spy_red.res new file mode 100644 index 0000000..9c8421b --- /dev/null +++ b/biscottihud/resource/ui/disguise_menu/spy_red.res @@ -0,0 +1,108 @@ +"Resource/UI/disguise_menu/spy_red.res" +{ + "ItemNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "font" "Default" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "45" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_Class_Name_Spy" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "ColoredBG" + { + "ControlName" "ImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + + "ClassIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ClassIcon" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "34" + "tall" "34" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/leaderboard_class_spy" + } + + "NumberBg" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NewNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "38" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "NumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel" + "font" "Default" + "fgcolor" "Black" + "xpos" "10" + "ypos" "37" + "zpos" "0" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "9" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/disguisestatuspanel.res b/biscottihud/resource/ui/disguisestatuspanel.res new file mode 100644 index 0000000..2162384 --- /dev/null +++ b/biscottihud/resource/ui/disguisestatuspanel.res @@ -0,0 +1,130 @@ +#base "disguisestatuspanel_incognito.res" + +#base "disguisestatuspanel_background.res" +#base "disguisestatuspanel_spectatorguihealth.res" + +"Resource/UI/ItemModelPanel.res" +{ + "itemmodelpanel" + { + "ControlName" "CEmbeddedItemModelPanel" + "fieldName" "itemmodelpanel" + + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "100" + "tall" "100" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "useparentbg" "1" + + "fov" "54" + "start_framed" "1" + + "disable_manipulation" "1" + + "model" + { + "angles_x" "10" + "angles_y" "130" + "angles_z" "0" + } + } + "DisguiseStatusBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "DisguiseStatusBG" + "zpos" "-1" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + "BlackBG1" + { + "ControlName" "ImagePanel" + "fieldName" "BlackBG1" + "xpos" "0" + "ypos" "6" + "zpos" "-2" + "tall" "22" + "fillcolor" "0 0 0 175" + "enabled" "1" + } + "BlackBG2" + { + "ControlName" "ImagePanel" + "fieldName" "BlackBG2" + "ypos" "6" + "zpos" "-2" + "tall" "20" + "fillcolor" "0 0 0 175" + "enabled" "1" + } + + "DisguiseNameLabel" + { + "ControlName" "Label" + "fieldName" "DisguiseNameLabel" + "font" "TFFontMedium" + "xpos" "35" + "ypos" "8" + "zpos" "1" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%disguisename%" + "textAlignment" "North-West" + "dulltext" "0" + "brighttext" "0" + } + + "WeaponNameLabel" + { + "ControlName" "Label" + "fieldName" "WeaponNameLabel" + "font" "TFFontMedium" + "xpos" "35" + "ypos" "17" + "zpos" "1" + "wide" "110" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%weaponname%" + "textAlignment" "North-West" + "dulltext" "0" + "brighttext" "0" + } + + "SpectatorGUIHealth" + { + "ControlName" "EditablePanel" + "fieldName" "SpectatorGUIHealth" + "visible" "1" + "enabled" "1" + "HealthBonusPosAdj" "10" + "HealthDeathWarning" "0.49" + "TFFont" "HudFontSmall" + "HealthDeathWarningColor" "HUDDeathWarning" + "TextColor" "HudOffWhite" + } +} diff --git a/biscottihud/resource/ui/disguisestatuspanel_background.res b/biscottihud/resource/ui/disguisestatuspanel_background.res new file mode 100644 index 0000000..3058f40 --- /dev/null +++ b/biscottihud/resource/ui/disguisestatuspanel_background.res @@ -0,0 +1,13 @@ +"Resource/UI/ItemModelPanel.res" +{ + "DisguiseStatusBG" + { + "ypos" "26" + "tall" "2" + } + + "BlackBG2" + { + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/disguisestatuspanel_incognito.res b/biscottihud/resource/ui/disguisestatuspanel_incognito.res new file mode 100644 index 0000000..7d0823a --- /dev/null +++ b/biscottihud/resource/ui/disguisestatuspanel_incognito.res @@ -0,0 +1,7 @@ +"Resource/UI/ItemModelPanel.res" +{ + "DisguiseNameLabel" + { + "wide" "110" + } +} \ No newline at end of file diff --git a/biscottihud/resource/ui/disguisestatuspanel_spectatorguihealth.res b/biscottihud/resource/ui/disguisestatuspanel_spectatorguihealth.res new file mode 100644 index 0000000..b581176 --- /dev/null +++ b/biscottihud/resource/ui/disguisestatuspanel_spectatorguihealth.res @@ -0,0 +1,28 @@ +"Resource/UI/ItemModelPanel.res" +{ + "DisguiseStatusBG" + { + "xpos" "20" + "wide" "130" + } + + "BlackBG1" + { + "wide" "20" + "visible" "1" + } + + "BlackBG2" + { + "xpos" "20" + "wide" "130" + } + + "SpectatorGUIHealth" + { + "xpos" "0" + "ypos" "0" + "wide" "20" + "tall" "28" + } +} diff --git a/biscottihud/resource/ui/econ/backpackpanel.res b/biscottihud/resource/ui/econ/backpackpanel.res new file mode 100644 index 0000000..2f1747c --- /dev/null +++ b/biscottihud/resource/ui/econ/backpackpanel.res @@ -0,0 +1,1580 @@ +"Resource/UI/FullLoadoutPanel.res" +{ + "backpack_panel" + { + "ControlName" "Frame" + "fieldName" "backpack_panel" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + "PaintBackgroundType" "0" + "bgcolor_override" "bBlackSolid3" + "infocus_bgcolor_override" "bBlackSolid3" + "outoffocus_bgcolor_override" "bBlackSolid3" + + "item_xpos_offcenter_a" "-310" + "item_xpos_offcenter_b" "165" + "item_ypos" "60" + "item_ydelta" "80" + "item_mod_wide" "40" + + "item_backpack_offcenter_x" "-288" + "item_backpack_xdelta" "4" + "item_backpack_ydelta" "3" + + "button_xpos_offcenter" "175" + "button_ypos" "85" + "button_ydelta" "80" + "button_override_delete_xpos" "0" + + "page_button_y" "288" + "page_button_x_delta" "3" + "page_button_y_delta" "3" + "page_button_per_row" "20" + "page_button_height" "13" + + "pagebuttons_kv" + { + "ControlName" "EditablePanel" + "wide" "10" + "tall" "10" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "Button" + { + "fieldName" "Button" + "ControlName" "CExButton" + "wide" "25" + "tall" "13" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + "textAlignment" "center" + "labelText" "%page%" + "font" "HudFontSmallestBold" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "New" + { + "ControlName" "CExLabel" + "fieldName" "New" + "font" "FontStorePrice" + "textAlignment" "east" + "ypos" "0" + "xpos" "0" + "zpos" "0" + "wide" "f1" + "tall" "f-3" + "textinsetx" "8" + "autoResize" "1" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Store_Price_New" + "mouseinputenabled" "0" + "paintbackground" "0" + "proportionaltoparent" "1" + "border" "StoreNewBorder" + "fgcolor" "10 10 10 255" + } + } + + + "modelpanels_kv" + { + "ControlName" "CItemModelPanel" + "xpos" "c-70" + "ypos" "270" + "wide" "54" + "tall" "42" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "model_xpos" "2" + "model_ypos" "5" + "model_wide" "50" + "model_tall" "35" + "text_ypos" "60" + "text_center" "1" + "name_only" "1" + + "inset_eq_x" "2" + "inset_eq_y" "2" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + + "New" + { + "ControlName" "CExLabel" + "fieldName" "New" + "font" "FontStorePrice" + "textAlignment" "east" + "xpos" "rs1" + "ypos" "0" + "zpos" "15" + "wide" "25" + "tall" "12" + "textinsetx" "8" + "autoResize" "0" + "skip_autoresize" "1" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#Store_Price_New" + "mouseinputenabled" "0" + "paintbackground" "0" + "proportionaltoparent" "1" + "border" "StoreNewBorder" + "fgcolor" "10 10 10 255" + } + + "use_item_sounds" "1" + } + } + + "CaratLabel" + { + "ControlName" "CExLabel" + "fieldName" "CaratLabel" + "font" "HudFontSmallestBold" + "labelText" ">>" + "textAlignment" "west" + "xpos" "c-300" + "ypos" "20" + "zpos" "1" + "wide" "20" + "tall" "15" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "ClassLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassLabel" + "font" "HudFontMediumSmallBold" + "labelText" "#ClassBeingEquipped" + "textAlignment" "west" + "xpos" "c-280" + "ypos" "15" + "zpos" "1" + "wide" "210" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "tool_icon" + { + "ControlName" "ScalableImagePanel" + "fieldName" "tool_icon" + "xpos" "10" + "ypos" "10" + "zpos" "2" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "image" "backpack_jewel_modify_target_b_g" + "tileImage" "0" + "tileVertically" "0" + "drawcolor" "112 176 74 255" + } + + "ShowRarityComboBox" + { + "ControlName" "ComboBox" + "fieldName" "ShowRarityComboBox" + "Font" "HudFontSmallestBold" + "wrap" "0" + "xpos" "c-85" + "ypos" "37" + "zpos" "1" + "wide" "205" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + "default" "0" + + "fgcolor_override" "235 226 202 255" + "bgcolor_override" "0 0 0 0" + "disabledFgColor_override" "235 226 202 255" + "disabledBgColor_override" "0 0 0 0" + "selectionColor_override" "0 0 0 0" + "selectionTextColor_override" "235 226 202 255" + "defaultSelectionBG2Color_override" "0 0 0 0" + } + + "ShowBaseItemsCheckbox" + { + "ControlName" "CheckButton" + "fieldName" "ShowBaseItemsCheckbox" + "labelText" "#ShowBaseItemsCheckBox" + "Font" "HudFontSmallestBold" + "textAlignment" "east" + "xpos" "c-70" + "ypos" "15" + "zpos" "1" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "dulltext" "0" + "brighttext" "0" + } + + "NameFilterLabel" + { + "ControlName" "CExLabel" + "fieldName" "NameFilterLabel" + "font" "HudFontSmallestBold" + "labelText" "#Store_NameFilterLabel" + "textAlignment" "west" + "xpos" "c+137" + "ypos" "0" + "zpos" "1" + "wide" "90" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "StoreDarkTan" + } + + "NameFilterTextEntry" + { + "ControlName" "TextEntry" + "fieldName" "NameFilterTextEntry" + "xpos" "c+137" + "ypos" "15" + "wide" "90" + "tall" "19" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "unicode" "1" + "fgcolor_override" "117 107 94 255" + "bgcolor_override" "251 235 202 255" + "paintbackgroundtype" "2" + "font" "HudFontSmallest" + } + + "SortByComboBox" + { + "ControlName" "ComboBox" + "fieldName" "SortByComboBox" + "Font" "HudFontSmallestBold" + "xpos" "c137" + "ypos" "37" + "zpos" "1" + "wide" "150" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + "default" "0" + + "fgcolor_override" "235 226 202 255" + "bgcolor_override" "0 0 0 0" + "disabledFgColor_override" "235 226 202 255" + "disabledBgColor_override" "0 0 0 0" + "selectionColor_override" "0 0 0 0" + "selectionTextColor_override" "235 226 202 255" + "defaultSelectionBG2Color_override" "0 0 0 0" + } + + + "mouseoveritempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mouseoveritempanel" + "xpos" "c-70" + "ypos" "270" + "zpos" "102" + "wide" "300" + "tall" "300" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "15" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "center" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + } + + "mousedragitempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mousedragitempanel" + + "xpos" "c-70" + "ypos" "270" + "zpos" "100" + "wide" "27" + "tall" "21" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "model_ypos" "3" + "model_tall" "18" + "text_ypos" "30" + "text_center" "1" + "name_only" "1" + "model_only" "1" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "PrevPageButton" + { + "ControlName" "CExButton" + "fieldName" "PrevPageButton" + "xpos" "c195" + "ypos" "319" + "zpos" "1" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "&A" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "prevpage" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "CurPageLabel" + { + "ControlName" "CExLabel" + "fieldName" "CurPageLabel" + "font" "HudFontSmallBold" + "labelText" "%backpackpage%" + "textAlignment" "center" + "xpos" "c220" + "ypos" "319" + "zpos" "1" + "wide" "40" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + + "NextPageButton" + { + "ControlName" "CExButton" + "fieldName" "NextPageButton" + "xpos" "c265" + "ypos" "319" + "zpos" "1" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "&D" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "nextpage" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "DragToNextPageButton" + { + "ControlName" "CExButton" + "fieldName" "DragToNextPageButton" + "xpos" "c290" + "ypos" "154" + "zpos" "1" + "wide" "25" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" ">" + "font" "HudFontMediumBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + "DragToPrevPageButton" + { + "ControlName" "CExButton" + "fieldName" "DragToPrevPageButton" + "xpos" "c-315" + "ypos" "154" + "zpos" "1" + "wide" "25" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "<" + "font" "HudFontMediumBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "CancelApplyToolButton" + { + "ControlName" "CExButton" + "fieldName" "CancelApplyToolButton" + "xpos" "c-288" + "ypos" "337" + "zpos" "20" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Cancel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "canceltool" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + + "ShowExplanationsButton" + { + "ControlName" "CExButton" + "fieldName" "ShowExplanationsButton" + "xpos" "c275" + "ypos" "10" + "zpos" "100" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "?" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "Command" "show_explanations" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "StartExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "StartExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "140" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-150" + "end_y" "100" + "end_wide" "300" + "end_tall" "155" + "callout_inparents_x" "c0" + "callout_inparents_y" "150" + "next_explanation" "PagesExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#BackpackItemsExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#BackpackItemsExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "85" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "125" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "125" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + } + + "PagesExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "PagesExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "100" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-250" + "end_y" "130" + "end_wide" "300" + "end_tall" "115" + "callout_inparents_x" "c-250" + "callout_inparents_y" "290" + "next_explanation" "ContextExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#BackpackPagesExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#BackpackPagesExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "45" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "85" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "85" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "85" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + } + + "ContextExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "ContextExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-150" + "end_y" "80" + "end_wide" "300" + "end_tall" "165" + "callout_inparents_x" "c0" + "callout_inparents_y" "c0" + "next_explanation" "StockExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#BackpackContextExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#BackpackContextExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "135" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "135" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "135" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } + + "StockExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "StockExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + "next_explanation" "SortExplanation" + + "force_close" "1" + "end_x" "c-150" + "end_y" "80" + "end_wide" "300" + "end_tall" "165" + "callout_inparents_x" "c0" + "callout_inparents_y" "50" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#BackpackStockExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#BackpackStockExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "135" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "135" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "135" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } + + "SortExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "SortExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-110" + "end_y" "80" + "end_wide" "300" + "end_tall" "135" + "callout_inparents_x" "c200" + "callout_inparents_y" "55" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#BackpackSortExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#BackpackSortExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "105" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "105" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } +} diff --git a/biscottihud/resource/ui/econ/itemaddefault.res b/biscottihud/resource/ui/econ/itemaddefault.res new file mode 100644 index 0000000..93ef38f --- /dev/null +++ b/biscottihud/resource/ui/econ/itemaddefault.res @@ -0,0 +1,216 @@ +"Resource/UI/econ/CyclingAdContainer.res" +{ + "ad" + { + "fieldname" "ad" + "proportionaltoparent" "1" + "wide" "f0" + "tall" "f0" + } + + "Background" + { + "ControlName" "EditablePanel" + "fieldname" "Background" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "f0" + "visible" "0" + "PaintBackgroundType" "0" + "proportionaltoparent" "1" + + "paintborder" "1" + "border" "ReplayDefaultBorder" + } + + "ItemName" + { + "ControlName" "CExLabel" + "fieldName" "ItemName" + "xpos" "2" + "ypos" "0" + "wide" "f0" + "tall" "30" + "zpos" "10" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "font" "AdFont_ItemName" + "fgcolor" "235 227 203 255" + "use_proportional_insets" "1" + "textinsetx" "5" + "textinsety" "5" + "textAlignment" "north-west" + "labelText" "%item_name%" + } + + "ScrollableItemText" + { + "ControlName" "CExScrollingEditablePanel" + "fieldName" "ScrollableItemText" + "xpos" "5" + "ypos" "12" + "zpos" "100" + "wide" "p0.67" + "tall" "p1" + "proportionaltoparent" "1" + + "allow_mouse_wheel_to_scroll" "0" + "mouseinputenabled" "1" + "bottom_buffer" "0" + + "ScrollBar" + { + "ControlName" "ScrollBar" + "FieldName" "ScrollBar" + "xpos" "0" + "ypos" "0" + "tall" "f0" + "wide" "5" // This gets slammed from clientscheme. GG. + "zpos" "1000" + "nobuttons" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "1" + + "Slider" + { + "fgcolor_override" "TanDark" + "mouseinputenabled" "1" + } + + "UpButton" + { + "ControlName" "Button" + "FieldName" "UpButton" + "visible" "0" + } + + "DownButton" + { + "ControlName" "Button" + "FieldName" "DownButton" + "visible" "0" + } + } + + "ItemAdText" + { + "ControlName" "CExLabel" + "fieldName" "ItemAdText" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "100" + "zpos" "10" + "visible" "1" + "proportionaltoparent" "1" + + "font" "AdFont_AdText" + "fgcolor_override" "163 163 163 255" + "textinsetx" "10" + "textinsety" "0" + "textAlignment" "north-west" + "labelText" "%item_ad_text%" + "wrap" "1" + } + } + + "ItemIcon" + { + "ControlName" "CItemModelPanel" + "fieldName" "ItemIcon" + "xpos" "rs1.05" + "ypos" "3" + "zpos" "9" + "wide" "o1.5" + "tall" "p.9" + "visible" "1" + "PaintBackgroundType" "2" + "paintborder" "0" + "proportionaltoparent" "1" + + "model_xpos" "0" + "model_ypos" "0" + "model_wide" "0" + "model_tall" "0" + "text_ypos" "60" + "text_center" "1" + "model_only" "1" + + "use_item_sounds" "1" + + "itemmodelpanel" + { + "inventory_image_type" "1" + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "BuyButton" + { + "ControlName" "CExButton" + "fieldName" "BuyButton" + "xpos" "r70" + "ypos" "r15" + "zpos" "100" + "wide" "40" + "tall" "10" + "labelText" "%price%" + "font" "AdFont_PurchaseButton" + "textinsetx" "0" + "textAlignment" "center" + + "proportionaltoparent" "1" + "paintbackground" "1" + "command" "purchase" + "actionsignallevel" "2" + + "defaultFgColor_override" "White" + "armedFgColor_override" "White" + + "border_default" "NoBorder" + + "defaultBgColor_override" "72 103 32 255" + "armedBgColor_override" "72 133 32 255" + + "sound_armed" "ui/item_info_mouseover.wav" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "MarketButton" + { + "ControlName" "CExButton" + "fieldName" "MarketButton" + "xpos" "r70" + "ypos" "r15" + "zpos" "100" + "wide" "60" + "tall" "10" + "labelText" "#TF_ItemAd_ViewOnMarket" + "font" "AdFont_PurchaseButton" + "textinsetx" "0" + "textAlignment" "center" + + "proportionaltoparent" "1" + "paintbackground" "1" + "command" "market" + "actionsignallevel" "2" + + "defaultFgColor_override" "White" + "armedFgColor_override" "White" + + "border_default" "NoBorder" + + "defaultBgColor_override" "72 103 32 255" + "armedBgColor_override" "72 133 32 255" + + "sound_armed" "ui/item_info_mouseover.wav" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } +} diff --git a/biscottihud/resource/ui/econ/itemmodelpanel.res b/biscottihud/resource/ui/econ/itemmodelpanel.res new file mode 100644 index 0000000..d082527 --- /dev/null +++ b/biscottihud/resource/ui/econ/itemmodelpanel.res @@ -0,0 +1,320 @@ +"Resource/UI/ItemModelPanel.res" +{ + "mouseoveritempanel" + { + "fieldName" "mouseoveritempanel" + "collection_list_xpos" "250" + "is_mouseover" "1" + "text_xpos_collection" "0" + "text_ypos" "15" + "text_forcesize" "0" + "text_xpos" "15" + "text_wide" "270" + //"model_xpos_collection" "77" + //"model_ypos_collection" "20" + //"model_wide_collection" "156" + //"model_tall_collection" "100" + } + + "LoadingSpinner" + { + "ControlName" "ImagePanel" + "fieldName" "LoadingSpinner" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "paintborder" "0" + "image" "animated/tf2_logo_hourglass" + "scaleImage" "1" + } + + "MainContentsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "MainContentsContainer" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "f0" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "border" "NoBorder" + + "itemmodelpanel" + { + "ControlName" "CEmbeddedItemModelPanel" + "fieldName" "itemmodelpanel" + + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "140" + "tall" "100" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "useparentbg" "1" + + "inset_eq_x" "2" + "inset_eq_y" "2" + + "fov" "54" + "start_framed" "1" + + "disable_manipulation" "1" + + "model" + { + "angles_x" "10" + "angles_y" "130" + "angles_z" "0" + "spotlight" "1" + } + } + + "namelabel" + { + "ControlName" "CExLabel" + "fieldName" "namelabel" + "font" "ItemFontNameLarge" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "140" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%itemname%" + "textAlignment" "south" + "fgcolor" "235 226 202 255" + "centerwrap" "1" + } + "attriblabel" + { + "ControlName" "CExLabel" + "fieldName" "attriblabel" + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "south" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + + "equippedlabel" + { + "ControlName" "CExLabel" + "fieldName" "equippedlabel" + "font" "ItemFontAttribSmall" + "xpos" "37" + "ypos" "28" + "zpos" "2" + "wide" "35" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#ItemPanelEquipped" + "textAlignment" "center" + "fgcolor" "200 80 60 255" + "bgcolor_override" "0 0 0 255" + "PaintBackgroundType" "2" + } + + "paint_icon" + { + "ControlName" "CItemMaterialCustomizationIconPanel" + "fieldName" "paint_icon" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + + } + + "quantitylabel" + { + "ControlName" "CExLabel" + "fieldName" "quantitylabel" + "font" "ItemFontAttribSmall" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "wide" "10" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "" + "textAlignment" "center" + "fgcolor" "200 80 60 255" + "bgcolor_override" "0 0 0 255" + "PaintBackgroundType" "2" + } + + "serieslabel" + { + "ControlName" "CExLabel" + "fieldName" "serieslabel" + "font" "ItemFontAttribSmall" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "wide" "14" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "" + "textAlignment" "center" + "fgcolor" "200 180 60 255" + "bgcolor_override" "0 40 30 255" + "PaintBackgroundType" "2" + } + + "matcheslabel" + { + "ControlName" "CExLabel" + "fieldName" "matcheslabel" + "font" "ItemFontAttribSmall" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "wide" "20" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "" + "textAlignment" "center" + "fgcolor" "200 180 60 255" + "bgcolor_override" "0 40 30 255" + "PaintBackgroundType" "2" + } + + "vision_restriction_icon" + { + "ControlName" "ImagePanel" + "fieldName" "vision_restriction_icon" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + "is_strange_icon" + { + "ControlName" "ImagePanel" + "fieldName" "is_strange_icon" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + "is_unusual_icon" + { + "ControlName" "ImagePanel" + "fieldName" "is_unusual_icon" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + + "is_loaner_icon" + { + "ControlName" "ImagePanel" + "fieldName" "is_loaner_icon" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + + "contained_item_panel" + { + "ControlName" "CItemModelPanel" + "xpos" "32" + "ypos" "20" + "zpos" "4" + "wide" "18" + "tall" "18" + "visible" "0" + "bgcolor_override" "0 0 0 200" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "0" + "useparentbg" "0" + + "enabled" "1" + + "model_xpos" "1" + "model_ypos" "1" + "model_wide" "16" + "model_tall" "16" + "text_ypos" "60" + "text_center" "1" + "model_only" "1" + + "inset_eq_x" "2" + "inset_eq_y" "2" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + + "use_item_sounds" "1" + } + } + + +} diff --git a/biscottihud/resource/ui/econ/itemmodelpanelcollectionitem.res b/biscottihud/resource/ui/econ/itemmodelpanelcollectionitem.res new file mode 100644 index 0000000..76df7e6 --- /dev/null +++ b/biscottihud/resource/ui/econ/itemmodelpanelcollectionitem.res @@ -0,0 +1,387 @@ +"Resource/UI/ItemModelPanelCollectionItem.res" +{ + "mouseoveritempanel" + { + "fieldName" "mouseoveritempanel" + "collection_list_xpos" "200" + "is_mouseover" "1" + "text_xpos_collection" "15" + "text_ypos" "15" + "model_xpos" "3" + "model_ypos" "3" + "model_wide" "195" + "model_tall" "130" + "text_wide" "180" + "text_forcesize" "2" + } + + "LoadingSpinner" + { + "ControlName" "ImagePanel" + "fieldName" "LoadingSpinner" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "paintborder" "0" + "image" "animated/tf2_logo_hourglass" + "scaleImage" "1" + } + + "MainContentsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "MainContentsContainer" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "f0" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "border" "NoBorder" + + "itemmodelpanel" + { + "ControlName" "CEmbeddedItemModelPanel" + "fieldName" "itemmodelpanel" + + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "140" + "tall" "100" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "useparentbg" "1" + "proportionaltoparent" "1" + + "inset_eq_x" "2" + "inset_eq_y" "2" + + "disable_manipulation" "1" + + "force_use_model" "1" + "use_item_rendertarget" "0" + "allow_rot" "0" + "use_pedestal" "1" + "use_particle" "1" + "fov" "75" + + "model_rotate_yaw_speed" "50" + + "model" + { + "force_pos" "1" + + "angles_x" "7" + "angles_y" "130" + "angles_z" "0" + "origin_x" "175" + "origin_y" "0" + "origin_z" "0" + "frame_origin_x" "0" + "frame_origin_y" "0" + "frame_origin_z" "0" + "spotlight" "1" + "modelname" "" + } + } + + "namelabel" + { + "ControlName" "CExLabel" + "fieldName" "namelabel" + "font" "ItemFontNameLarge" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "100" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%itemname%" + "textAlignment" "west" + "fgcolor" "235 226 202 255" + "centerwrap" "1" + } + + "attriblabel" + { + "ControlName" "CExLabel" + "fieldName" "attriblabel" + "font" "ItemFontAttribSmall" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "100" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "west" + "fgcolor" "117 107 94 255" + "centerwrap" "0" + } + + "collectionnamelabel" + { + "ControlName" "CExLabel" + "fieldName" "collectionnamelabel" + "font" "ItemFontNameLarge" + "xpos" "100" + "ypos" "30" + "zpos" "2" + "wide" "100" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "%collectionname%" + "textAlignment" "west" + "fgcolor" "235 226 202 255" + "centerwrap" "0" + } + + "collectionlistlabel" + { + "ControlName" "CExLabel" + "fieldName" "collectionlistlabel" + "font" "ItemFontAttribSmall" + "xpos" "100" + "ypos" "60" + "zpos" "2" + "wide" "100" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "%collectionlist%" + "textAlignment" "west" + "fgcolor" "117 107 94 255" + "centerwrap" "0" + } + + "collectionhighlight" + { + "ControlName" "EditablePanel" + "fieldName" "collectionhighlight" + "xpos" "208" + "ypos" "42" + "zpos" "1" + "wide" "145" + "tall" "9" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "215 206 182 255" + } + + "equippedlabel" + { + "ControlName" "CExLabel" + "fieldName" "equippedlabel" + "font" "ItemFontAttribSmall" + "xpos" "37" + "ypos" "28" + "zpos" "2" + "wide" "35" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#ItemPanelEquipped" + "textAlignment" "center" + "fgcolor" "200 80 60 255" + "bgcolor_override" "0 0 0 255" + "PaintBackgroundType" "2" + } + + "paint_icon" + { + "ControlName" "CItemMaterialCustomizationIconPanel" + "fieldName" "paint_icon" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + + } + + "quantitylabel" + { + "ControlName" "CExLabel" + "fieldName" "quantitylabel" + "font" "ItemFontAttribSmall" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "wide" "10" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "" + "textAlignment" "center" + "fgcolor" "200 80 60 255" + "bgcolor_override" "0 0 0 255" + "PaintBackgroundType" "2" + } + + "serieslabel" + { + "ControlName" "CExLabel" + "fieldName" "serieslabel" + "font" "ItemFontAttribSmall" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "wide" "14" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "" + "textAlignment" "center" + "fgcolor" "200 180 60 255" + "bgcolor_override" "0 40 30 255" + "PaintBackgroundType" "2" + } + + "matcheslabel" + { + "ControlName" "CExLabel" + "fieldName" "matcheslabel" + "font" "ItemFontAttribSmall" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "wide" "20" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "" + "textAlignment" "center" + "fgcolor" "200 180 60 255" + "bgcolor_override" "0 40 30 255" + "PaintBackgroundType" "2" + } + + "vision_restriction_icon" + { + "ControlName" "ImagePanel" + "fieldName" "vision_restriction_icon" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + "is_strange_icon" + { + "ControlName" "ImagePanel" + "fieldName" "is_strange_icon" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + "is_unusual_icon" + { + "ControlName" "ImagePanel" + "fieldName" "is_unusual_icon" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + "is_loaner_icon" + { + "ControlName" "ImagePanel" + "fieldName" "is_loaner_icon" + "xpos" "4" + "ypos" "4" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "wide" "16" + "tall" "16" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + + "contained_item_panel" + { + "ControlName" "CItemModelPanel" + "xpos" "32" + "ypos" "20" + "zpos" "4" + "wide" "18" + "tall" "18" + "visible" "0" + "bgcolor_override" "0 0 0 200" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "0" + "useparentbg" "0" + + "enabled" "1" + + "model_xpos" "1" + "model_ypos" "1" + "model_wide" "16" + "model_tall" "16" + "text_ypos" "60" + "text_center" "1" + "model_only" "1" + + "inset_eq_x" "2" + "inset_eq_y" "2" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + + "use_item_sounds" "1" + } + } +} diff --git a/biscottihud/resource/ui/econ/questlogpanel.res b/biscottihud/resource/ui/econ/questlogpanel.res new file mode 100644 index 0000000..530231e --- /dev/null +++ b/biscottihud/resource/ui/econ/questlogpanel.res @@ -0,0 +1,431 @@ +"Resource/UI/econ/QuestLogPanel.res" +{ + "QuestLog" + { + "ControlName" "CQuestLogPanel" + "fieldName" "QuestLog" + "xpos" "c5" + "ypos" "65" + "zpos" "1" + "wide" "300" + "tall" "350" + "visible" "0" + "enabled" "1" + "proportionaltoparent" "1" + } + + "mouseoveritempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mouseoveritempanel" + "xpos" "0" + "ypos" "0" + "zpos" "1000" + "wide" "300" + "tall" "300" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + "border" "MainMenuBGBorder" + + "text_ypos" "20" + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "15" + "attrib_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "center" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + } + + "TooltipPanel" + { + "ControlName" "EditablePanel" + "fieldName" "TooltipPanel" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "200" + "tall" "100" + "visible" "0" + "PaintBackgroundType" "2" + "border" "MainMenuBGBorder" + + "TipLabel" + { + "ControlName" "CExLabel" + "fieldName" "TipLabel" + "font" "HudFontSmallest" + "labelText" "%tiptext%" + "textAlignment" "center" + "xpos" "20" + "ypos" "10" + "zpos" "2" + "wide" "100" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "235 226 202 255" + "wrap" "1" + "centerwrap" "1" + } + } + + "MainContainer" + { + "ControlName" "EditablePanel" + "fieldName" "MainContainer" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "f0" + "proportionaltoparent" "1" + "visible" "1" + "enabled" "1" +// "border" "MainMenuBGBorder" + "bgcolor_override" "bBlackSolid3" + + "UpperLine" + { + "ControlName" "EditablePanel" + "fieldName" "UpperLine" + "xpos" "cs-0.5" + "ypos" "40" + "zpos" "50" + "wide" "p0.987" + "tall" "1" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "255 255 255 252" + "proportionaltoparent" "1" + } + + + "QuestLogTitle" + { + "ControlName" "CExLabel" + "fieldName" "QuestLogTitle" + "font" "HudFontSmallBold" + "labelText" "#QuestLog_Title" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "p.02" + "zpos" "2" + "wide" "p.95" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "proportionaltoparent" "1" + "fgcolor" "TanLight" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1.5" + "ypos" "p.02" + "zpos" "1000" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + "actionsignallevel" "2" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + + "QuestList" + { + "ControlName" "CScrollableQuestList" + "fieldName" "QuestList" + "xpos" "cs-0.5" + "ypos" "p0.075" + "zpos" "10" + "wide" "p.95" + "tall" "o1" + "visible" "1" + "enabled" "1" + "proportionaltoparent" "1" + + "entry_step" "10" + "entry_y" "10" + + "no_quests" "#QuestLog_NoQuests" + "need_a_pass" "#QuestLog_NeedPassForContracts" + "not_possible" "#QuestLog_NoContractsPossible" + } + } + + "ProgressPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ProgressPanel" + "xpos" "cs-0.5" + "ypos" "p.9" + "zpos" "50" + "wide" "p0.95" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "0 0 0 0" + "proportionaltoparent" "1" + + "CoinModelPanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "CoinModelPanel" + "xpos" "0" + "ypos" "cs-0.5" + "zpos" "2" + "wide" "30" + "tall" "30" + "visible" "1" + "PaintBackgroundType" "0" + "paintborder" "0" + "proportionaltoparent" "1" + + "model_xpos" "0" + "model_ypos" "5" + "model_wide" "30" + "model_tall" "20" + "name_only" "0" + "attrib_only" "0" + "model_only" "1" + "paint_icon_hide" "0" + "hide_modifier_icons" "1" + + "text_ypos" "10" + + "itemmodelpanel" + { + "inventory_image_type" "1" + "allow_rot" "0" + } + } + + "BadgeProgressLabel" + { + "ControlName" "CExLabel" + "fieldName" "BadgeProgressLabel" + "font" "AdFont_AdText" + "labelText" "#QuestLog_BadgeProgress" + "textAlignment" "west" + "xpos" "p.15" + "ypos" "0" + "zpos" "2" + "wide" "100" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "proportionaltoparent" "1" + "fgcolor" "TanLight" + } + + "BadgeMeterContainer" + { + "ControlName" "EditablePanel" + "fieldName" "BadgeMeterContainer" + "xpos" "p.15" + "ypos" "p.5" + "zpos" "2" + "wide" "100" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "235 226 202 255" // tanlight + "proportionaltoparent" "1" + + "BadgeProgressMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "BadgeProgressMeter" + "xpos" "1" + "ypos" "1" + "zpos" "2" + "wide" "98" + "tall" "13" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "dulltext" "0" + "brighttext" "0" + "proportionaltoparent" "1" + "fgcolor_override" "132 76 0 255" + "bgcolor_override" "0 0 0 255" + } + + "BadgeProgressMeterText" + { + "ControlName" "CExLabel" + "fieldName" "BadgeProgressMeterText" + "font" "AdFont_AdText" + "labelText" "" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "proportionaltoparent" "1" + "fgcolor" "TanLight" + } + } + + "ContractsCompletedLabel" + { + "ControlName" "CExLabel" + "fieldName" "ContractsCompletedLabel" + "font" "AdFont_AdText" + "labelText" "#QuestLog_ContractsCompleted" + "textAlignment" "west" + "xpos" "p.57" + "ypos" "0" + "zpos" "2" + "wide" "100" + "tall" "p.45" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "proportionaltoparent" "1" + "fgcolor" "TanLight" + } + + "ContractMeterContainer" + { + "ControlName" "EditablePanel" + "fieldName" "ContractMeterContainer" + "xpos" "p.57" + "ypos" "p.5" + "zpos" "2" + "wide" "100" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "235 226 202 255" // tanlight + "proportionaltoparent" "1" + + "ContractsCompletedProgressMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ContractsCompletedProgressMeter" + "xpos" "1" + "ypos" "1" + "zpos" "2" + "wide" "98" + "tall" "13" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "dulltext" "0" + "brighttext" "0" + "proportionaltoparent" "1" + "fgcolor_override" "132 76 0 255" + "bgcolor_override" "0 0 0 255" + } + + "ContractsCompletedProgressMeterText" + { + "ControlName" "CExLabel" + "fieldName" "ContractsCompletedProgressMeterText" + "font" "AdFont_AdText" + "labelText" "" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "proportionaltoparent" "1" + "fgcolor" "TanLight" + } + } + } +} diff --git a/biscottihud/resource/ui/econ/questlogpanel_halloween.res b/biscottihud/resource/ui/econ/questlogpanel_halloween.res new file mode 100644 index 0000000..4ee5d95 --- /dev/null +++ b/biscottihud/resource/ui/econ/questlogpanel_halloween.res @@ -0,0 +1,49 @@ +#base QuestLogPanel.res + +"Resource/UI/econ/QuestLogPanel.res" +{ + "QuestLog" + { + "ControlName" "CQuestLogPanel" + "fieldName" "QuestLog" + "xpos" "c5" + "ypos" "65" + "zpos" "1" + "wide" "300" + "tall" "350" + "visible" "0" + "enabled" "1" + "proportionaltoparent" "1" + } + + + "MainContainer" + { + "QuestLogTitle" + { + "font" "HudFontSmallBold" + "labelText" "#QuestLog_Title_Halloween" + "fgcolor" "TanLight" + } + + "QuestList" + { + "no_quests" "#QuestLog_NoQuests_Halloween" + "need_a_pass" "#QuestLog_NeedPassForContracts_Halloween" + "not_possible" "#QuestLog_NoContractsPossible_Halloween" + } + } + + "ProgressPanel" + { + "ContractMeterContainer" + { + "bgcolor_override" "0 0 0 0" + + "ContractsCompletedProgressMeter" + { + "visible" "0" + } + } + } +} diff --git a/biscottihud/resource/ui/econ/store/v2/storepage.res b/biscottihud/resource/ui/econ/store/v2/storepage.res new file mode 100644 index 0000000..f999103 --- /dev/null +++ b/biscottihud/resource/ui/econ/store/v2/storepage.res @@ -0,0 +1,2716 @@ +"Resource/UI/StorePage.res" +{ + "StorePage" + { + "ControlName" "Frame" + "fieldName" "StorePage" + "xpos" "0" + "ypos" "40" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + "PaintBackgroundType" "0" + "bgcolor_override" "bBlackSolid3" + "infocus_bgcolor_override" "bBlackSolid3" + "outoffocus_bgcolor_override" "bBlackSolid3" + + "max_cart_model_panels" "10" + + "item_ypos" "70" + + "item_panels" "15" + "item_columns" "5" + "item_offcenter_x" "-292" + "item_xdelta" "8" + "item_ydelta" "8" + + "item_controls_xoffset" "2" + "item_controls_yoffset" "2" + + "show_item_backdrop" "1" + "item_backdrop_color" "24 22 20 255" + "item_backdrop_left_margin" "11" + "item_backdrop_right_margin" "11" + "item_backdrop_top_margin" "9" + "item_backdrop_bottom_margin" "42" + "item_backdrop_paintbackgroundtype" "2" + + "item_panel_bgcolor" "51 47 46 255" + "item_panel_bgcolor_mouseover" "156 146 128 255" + "item_panel_bgcolor_selected" "176 166 148 255" + + "classicon_xdelta" "5" + + "modelpanels_kv" + { + "ControlName" "CItemModelPanel" + "xpos" "c-70" + "ypos" "270" + "zpos" "5" + "wide" "111" + "tall" "62" + "visible" "0" + "bgcolor_override" "0 0 0 255" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "0" + + "model_xpos" "24" + "model_ypos" "6" + "model_wide" "71" + "model_tall" "47" + "text_wide" "140" + "text_xpos" "0" + "text_ypos" "80" + "text_center" "0" + "name_only" "1" + "resize_to_text" "0" + "name_label_alignment" "3" + + "inset_eq_x" "2" + "inset_eq_y" "2" + + "deferred_description" "1" + "deferred_icon" "1" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + "inventory_image_type" "1" + } + + "use_item_sounds" "1" + } + + "modelpanel_labels_kv" + { + "font" "HudFontSmallestBold" + "textAlignment" "north-east" + "xpos" "c-61" + "ypos" "32" + "zpos" "15" + "wide" "16" + "tall" "10" + "autoResize" "1" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "use_item_sounds" "1" + } + + "cart_modelpanels_kv" + { + "ControlName" "CItemModelPanel" + "xpos" "c-70" + "ypos" "270" + "zpos" "13" + "wide" "32" + "tall" "25" + "visible" "0" + "bgcolor_override" "0 0 0 255" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "0" + + "model_xpos" "2" + "model_ypos" "2" + "model_wide" "28" + "model_tall" "21" + "text_ypos" "60" + "text_center" "1" + "name_only" "1" + + "inset_eq_x" "2" + "inset_eq_y" "2" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + + "use_item_sounds" "1" + } + + "cart_labels_kv" + { + "font" "HudFontSmallestBold" + "textAlignment" "north-east" + "xpos" "c-61" + "ypos" "32" + "zpos" "15" + "wide" "16" + "tall" "10" + "autoResize" "1" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "use_item_sounds" "1" + } + } + + "NameFilterTextEntry" + { + "ControlName" "TextEntry" + "fieldName" "NameFilterTextEntry" + "xpos" "c-70" + "ypos" "30" + "wide" "90" + "tall" "19" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "unicode" "1" + "fgcolor_override" "117 107 94 255" + "bgcolor_override" "251 235 202 255" + "paintbackgroundtype" "2" + "font" "HudFontSmall" + } + + "SubcategoryFilterComboBox" + { + "ControlName" "ComboBox" + "fieldName" "SubcategoryFilterComboBox" + "Font" "HudFontSmallestBold" + "xpos" "c30" + "ypos" "30" + "zpos" "1" + "wide" "112" + "tall" "19" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + "border_override" "ButtonBorder" + "paintborder" "1" + + "fgcolor_override" "117 107 94 255" + "bgcolor_override" "251 235 202 255" + "disabledFgColor_override" "117 107 94 255" + "disabledBgColor_override" "251 235 202 255" + "selectionColor_override" "251 235 202 255" + "selectionTextColor_override" "117 107 94 255" + "defaultSelectionBG2Color_override" "251 235 202 255" + + "Button" + { + "defaultFgColor_override" "118 107 94 255" + "defaultBgColor_override" "251 235 202 255" + "armedFgColor_override" "138 127 114 255" + "armedBgColor_override" "251 235 202 255" + "paintbackgroundtype" "2" + } + } + + "SortFilterComboBox" + { + "ControlName" "ComboBox" + "fieldName" "SortFilterComboBox" + "Font" "HudFontSmallestBold" + "xpos" "c152" + "ypos" "30" + "zpos" "1" + "wide" "142" + "tall" "19" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + "border_override" "ButtonBorder" + "paintborder" "1" + + "fgcolor_override" "117 107 94 255" + "bgcolor_override" "251 235 202 255" + "disabledFgColor_override" "117 107 94 255" + "disabledBgColor_override" "251 235 202 255" + "selectionColor_override" "251 235 202 255" + "selectionTextColor_override" "117 107 94 255" + "defaultSelectionBG2Color_override" "251 235 202 255" + + "Button" + { + "defaultFgColor_override" "118 107 94 255" + "defaultBgColor_override" "251 235 202 255" + "armedFgColor_override" "138 127 114 255" + "armedBgColor_override" "251 235 202 255" + "paintbackgroundtype" "2" + } + } + + "mouseoveritempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mouseoveritempanel" + "xpos" "c-70" + "ypos" "270" + "zpos" "100" + "wide" "300" + "tall" "300" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "text_ypos" "20" + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "15" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "center" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + } + + "ClassFilterTooltipLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassFilterTooltipLabel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "xpos" "36" + "ypos" "170" + "zpos" "100" + "wide" "200" + "tall" "40" + "autoResize" "1" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "bgcolor_override" "0 0 0 0" + "PaintBackgroundType" "2" + "centerwrap" "1" + "paintborder" "1" + "textinsetx" "100" + "border" "LoadoutItemPopupBorder" + "fgcolor" "243 234 216 255" + } + + "PrevPageButton" + { + "ControlName" "CExButton" + "fieldName" "PrevPageButton" + "xpos" "c190" + "ypos" "280" + "zpos" "5" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "<" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "prevpage" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "CurPageLabel" + { + "ControlName" "CExLabel" + "fieldName" "CurPageLabel" + "font" "HudFontSmallBold" + "labelText" "%backpackpage%" + "textAlignment" "center" + "xpos" "c220" + "ypos" "280" + "zpos" "5" + "wide" "40" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + + "NextPageButton" + { + "ControlName" "CExButton" + "fieldName" "NextPageButton" + "xpos" "c270" + "ypos" "280" + "zpos" "5" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" ">" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "nextpage" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "PriceLabel" + { + "ControlName" "CExLabel" + "fieldName" "PriceLabel" + "font" "HudFontSmallBold" + "labelText" "%selectionprice%" + "textAlignment" "east" + "xpos" "c20" + "ypos" "8" + "zpos" "5" + "wide" "303" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "wrap" "1" + "centerwrap" "1" + } + + "NameFilterLabel" + { + "ControlName" "CExLabel" + "fieldName" "NameFilterLabel" + "font" "HudFontSmallestBold" + "labelText" "#Store_NameFilterLabel" + "textAlignment" "west" + "xpos" "c-70" + "ypos" "12" + "zpos" "1" + "wide" "90" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "StoreDarkTan" + } + + "SubcategoryFiltersLabel" + { + "ControlName" "CExLabel" + "fieldName" "SubcategoryFiltersLabel" + "font" "HudFontSmallestBold" + "labelText" "#Store_ItemTypeFilterLabel" + "textAlignment" "west" + "xpos" "c30" + "ypos" "12" + "zpos" "1" + "wide" "100" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "StoreDarkTan" + } + + "SortFilterLabel" + { + "ControlName" "CExLabel" + "fieldName" "SortFilterLabel" + "font" "HudFontSmallestBold" + "labelText" "#Store_SortByLabel" + "textAlignment" "west" + "xpos" "c152" + "ypos" "12" + "zpos" "1" + "wide" "150" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "StoreDarkTan" + } + + "ClassFilterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassFilterLabel" + "font" "HudFontSmallestBold" + "labelText" "#Store_ClassFilterLabel" + "textAlignment" "west" + "xpos" "c-300" + "ypos" "12" + "zpos" "1" + "wide" "60" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "StoreDarkTan" + } + + "ClassFilterNavPanel" + { + "ControlName" "CNavigationPanel" + "fieldName" "ClassFilterNavPanel" + "xpos" "c-300" + "ypos" "30" + "zpos" "1" + "wide" "225" + "tall" "19" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "auto_scale" "1" + "auto_layout" "1" + "selected_button_default" "0" + "auto_layout_horizontal_buffer" "4" + "display_vertically" "0" + "align" "west" + + "ButtonSettings" + { + "wide" "19" + "tall" "19" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "textAlignment" "south-west" + "scaleImage" "1" + + "fgcolor" "TanDark" + "defaultFgColor_override" "TanDark" + "armedFgColor_override" "TanDark" + "depressedFgColor_override" "TanDark" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "sound_armed" "UI/buttonrollover.wav" + + "paintbackground" "0" + "paintborder" "0" + + "image_drawcolor" "255 255 255 180" + "image_armedcolor" "255 255 255 255" + "image_selectedcolor" "255 255 255 255" + + "stayselectedonclick" "1" + "keyboardinputenabled" "0" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "7" + "wide" "19" + "tall" "19" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + } + + "Buttons" + { + "all" + { + "userdata" "0" + "image_default" "class_icons/filter_all" + "image_armed" "class_icons/filter_all" + "image_selected" "class_icons/filter_all_on" + "tooltiptext" "#TF_Items_All" + + "SubImage" + { + "image" "class_icons/filter_all" + } + } + "scout" + { + "userdata" "1" + "image_default" "class_icons/filter_scout" + "image_armed" "class_icons/filter_scout" + "image_selected" "class_icons/filter_scout_on" + "tooltiptext" "#TF_Items_Scout" + + "SubImage" + { + "image" "class_icons/filter_scout" + } + } + "soldier" + { + "userdata" "3" + "image_default" "class_icons/filter_soldier" + "image_armed" "class_icons/filter_soldier" + "image_selected" "class_icons/filter_soldier_on" + "tooltiptext" "#TF_Items_Soldier" + + "SubImage" + { + "image" "class_icons/filter_soldier" + } + } + "pyro" + { + "userdata" "7" + "image_default" "class_icons/filter_pyro" + "image_armed" "class_icons/filter_pyro" + "image_selected" "class_icons/filter_pyro_on" + "tooltiptext" "#TF_Items_Pyro" + + "SubImage" + { + "image" "class_icons/filter_pyro" + } + } + "demo" + { + "userdata" "4" + "image_default" "class_icons/filter_demo" + "image_armed" "class_icons/filter_demo" + "image_selected" "class_icons/filter_demo_on" + "tooltiptext" "#TF_Items_Demoman" + + "SubImage" + { + "image" "class_icons/filter_demo" + } + } + "heavy" + { + "userdata" "6" + "image_default" "class_icons/filter_heavy" + "image_armed" "class_icons/filter_heavy" + "image_selected" "class_icons/filter_heavy_on" + "tooltiptext" "#TF_Items_Heavy" + + "SubImage" + { + "image" "class_icons/filter_heavy" + } + } + "engineer" + { + "userdata" "9" + "image_default" "class_icons/filter_engineer" + "image_armed" "class_icons/filter_engineer" + "image_selected" "class_icons/filter_engineer_on" + "tooltiptext" "#TF_Items_Engineer" + + "SubImage" + { + "image" "class_icons/filter_engineer" + } + } + "medic" + { + "userdata" "5" + "image_default" "class_icons/filter_medic" + "image_armed" "class_icons/filter_medic" + "image_selected" "class_icons/filter_medic_on" + "tooltiptext" "#TF_Items_Medic" + + "SubImage" + { + "image" "class_icons/filter_medic" + } + } + "sniper" + { + "userdata" "2" + "image_default" "class_icons/filter_sniper" + "image_armed" "class_icons/filter_sniper" + "image_selected" "class_icons/filter_sniper_on" + "tooltiptext" "#TF_Items_Sniper" + + "SubImage" + { + "image" "class_icons/filter_sniper" + } + } + "spy" + { + "userdata" "8" + "image_default" "class_icons/filter_spy" + "image_armed" "class_icons/filter_spy" + "image_selected" "class_icons/filter_spy_on" + "tooltiptext" "#TF_Items_Spy" + + "SubImage" + { + "image" "class_icons/filter_spy" + } + } + } + } + + "BackpackSpaceLabel" + { + "ControlName" "CExLabel" + "fieldName" "BackpackSpaceLabel" + "font" "HudFontSmallestBold" + "labelText" "%freebackpackspace%" + "textAlignment" "west" + "xpos" "c-300" + "ypos" "315" + "zpos" "0" + "wide" "200" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "CartButton" + { + "ControlName" "CExButton" + "fieldName" "CartButton" + "font" "HudFontSmallBold" + "labelText" "%storecart%" + "textAlignment" "east" + "xpos" "c-300" + "ypos" "334" + "zpos" "12" + "wide" "56" + "tall" "24" + "visible" "1" + "enabled" "1" + "PaintBackgroundType" "2" + "textinsetx" "15" + + "Command" "viewcart" + "font" "HudFontSmallBold" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "CartImage" + { + "ControlName" "ImagePanel" + "fieldName" "CartImage" + "xpos" "c-295" + "ypos" "336" + "zpos" "13" + "wide" "24" + "tall" "20" + "visible" "1" + "enabled" "1" + "image" "store_cart" + "scaleImage" "1" + } + + "CartFeaturedItemSymbol" + { + "ControlName" "ImagePanel" + "fieldName" "CartFeaturedItemSymbol" + "xpos" "c-225" + "ypos" "243" + "zpos" "14" + "wide" "24" + "tall" "24" + "visible" "0" + "enabled" "1" + "image" "store_special" + "scaleImage" "1" + } + + "ReloadSchemeButton" + { + "ControlName" "CExButton" + "fieldName" "ReloadSchemeButton" + "xpos" "c0" + "ypos" "330" + "zpos" "25" + "wide" "100" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "RELOADSCHEME" + "font" "HudFontSmallestBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "reloadscheme" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "ShowExplanationsButton" + { + "ControlName" "CExButton" + "fieldName" "ShowExplanationsButton" + "xpos" "c50" + "ypos" "15" + "zpos" "100" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "?" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "Command" "show_explanations" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "StartExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "StartExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "140" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-150" + "end_y" "100" + "end_wide" "300" + "end_tall" "155" + "callout_inparents_x" "c0" + "callout_inparents_y" "150" + "next_explanation" "TabsExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#StoreWelcomeExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#StoreWelcomeExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "85" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "125" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "125" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + } + + "TabsExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "TabsExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-200" + "end_y" "50" + "end_wide" "300" + "end_tall" "160" + "callout_inparents_x" "c-180" + "callout_inparents_y" "0" + "next_explanation" "ItemsExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#StoreTabsExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#StoreTabsExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "85" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "115" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "115" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "115" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + } + + "ItemsExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "ItemsExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-190" + "end_y" "0" + "end_wide" "300" + "end_tall" "140" + "callout_inparents_x" "c-210" + "callout_inparents_y" "60" + "next_explanation" "DetailsExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#StoreItemsExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#StoreItemsExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "100" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "100" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "100" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } + + "DetailsExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "DetailsExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "140" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-260" + "end_y" "80" + "end_wide" "300" + "end_tall" "155" + "callout_inparents_x" "c90" + "callout_inparents_y" "160" + "next_explanation" "PreviewExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#StoreDetailsExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#StoreDetailsExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "120" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "120" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "120" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } + + "PreviewToggleExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "PreviewToggleExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + "next_explanation" "AddToCartExplanation" + + "force_close" "1" + "end_x" "c0" + "end_y" "80" + "end_wide" "300" + "end_tall" "125" + "callout_inparents_x" "c200" + "callout_inparents_y" "30" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#StorePreviewToggleExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#StorePreviewToggleExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "95" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "95" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "95" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } + + "AddToCartExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "AddToCartExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-260" + "end_y" "200" + "end_wide" "300" + "end_tall" "125" + "callout_inparents_x" "c90" + "callout_inparents_y" "290" + "next_explanation" "CartStatusExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#StoreAddToCartExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#StoreAddToCartExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "85" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "85" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "85" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } + + "CartStatusExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "CartStatusExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "180" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-150" + "end_y" "170" + "end_wide" "300" + "end_tall" "175" + "callout_inparents_x" "c-230" + "callout_inparents_y" "335" + "next_explanation" "CheckoutExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#StoreCartStatusExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#StoreCartStatusExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "135" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "135" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "135" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } + + "CheckoutExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "CheckoutExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + "next_explanation" "HelpExplanation" + + "force_close" "1" + "end_x" "c-160" + "end_y" "200" + "end_wide" "300" + "end_tall" "145" + "callout_inparents_x" "c190" + "callout_inparents_y" "320" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#StoreCheckoutExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#StoreCheckoutExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "105" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "105" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "105" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } + + "HelpExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "HelpExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-150" + "end_y" "80" + "end_wide" "300" + "end_tall" "125" + "callout_inparents_x" "c60" + "callout_inparents_y" "40" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#StoreHelpExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#StoreHelpExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "90" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "90" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } +} diff --git a/biscottihud/resource/ui/econ/store/v2/storepanel.res b/biscottihud/resource/ui/econ/store/v2/storepanel.res new file mode 100644 index 0000000..6de07f5 --- /dev/null +++ b/biscottihud/resource/ui/econ/store/v2/storepanel.res @@ -0,0 +1,222 @@ +"Resource/UI/StorePanel.res" +{ + "store_panel" + { + "ControlName" "EditablePanel" + "fieldName" "store_panel" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "PaintBackgroundType" "0" + "bgcolor_override" "46 43 42 0" + "infocus_bgcolor_override" "46 43 42 0" + "outoffocus_bgcolor_override" "46 43 42 0" + + "title" "#StoreTitle" + "title_font" "HudFontMediumBold" + "titletextinsetX" "40" + "titletextinsetY" "0" + "titlebarfgcolor_override" "200 187 161 255" + "titlebardisabledfgcolor_override" "200 187 161 255" + "titlebarbgcolor_override" "46 43 42 255" + + "clientinsetx_override" "0" + "sheetinset_bottom" "40" + } + + "BackgroundHeader" + { + "ControlName" "ImagePanel" + "fieldName" "BackgroundHeader" + "xpos" "0" + "ypos" "0" + "zpos" "-2" + "wide" "f0" + "tall" "120" + "visible" "1" + "enabled" "1" + "fillcolor" "15 15 15 255" + "border" "NoBorder" + } + "BackgroundFooter" + { + "ControlName" "ImagePanel" + "fieldName" "BackgroundFooter" + "xpos" "0" + "ypos" "420" + "zpos" "1" + "wide" "f0" + "tall" "60" + "visible" "1" + "enabled" "1" + "fillcolor" "15 15 15 255" + } + "FooterLine" + { + "ControlName" "ImagePanel" + "fieldName" "FooterLine" + "xpos" "0" + "ypos" "420" + "zpos" "2" + "wide" "f0" + "tall" "2" + "visible" "1" + "enabled" "1" + "fillcolor" "bSchemePrime" + "scaleImage" "1" + } + + "Sheet" + { + "ControlName" "EditablePanel" + "fieldName" "Sheet" + "tabxindent" "10" + "tabxdelta" "10" + "tabxfittotext" "1" + "tabheight" "18" + "yoffset" "14" + "transition_time" "0" + + "HeaderLine" + { + "ControlName" "ImagePanel" + "fieldName" "HeaderLine" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "32" + "visible" "1" + "enabled" "1" + "fillcolor" "Blank" + "border" "bBorderBottom3" + } + + "tabskv" + { + "textinsetx" "6" + "textAlignment" "center" + "font" "HudFontSmallBold" + "selectedcolor" "200 187 161 255" + "unselectedcolor" "130 120 104 255" + "defaultBgColor_override" "bBlackSolid3" + "armedBgColor_override" "bBlackSolid3" + "selectedBgColor_override" "bBlackSolid3" + "paintbackground" "1" + "activeborder_override" "bTabActive" + "normalborder_override" "bBorderBottom3" + } + } + + "CloseButton" + { + "ControlName" "CExButton" + "fieldName" "CloseButton" + "xpos" "c-300" + "ypos" "437" + "zpos" "2" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_BackCarat" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "Command" "close" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "armory_panel" + { + "ControlName" "CArmoryPanel" + "fieldName" "armory_panel" + "xpos" "0" + "ypos" "30" + "wide" "f0" + "tall" "390" + "zpos" "500" + "visible" "0" + } + + "NotificationsPresentPanel" + { + "ControlName" "CNotificationsPresentPanel" + "fieldName" "NotificationsPresentPanel" + "xpos" "r200" + "ypos" "10" + "zpos" "10000" + "wide" "190" + "tall" "50" + "visible" "0" + "enabled" "1" + } + + "SupportCommunityMapMakersCheckButton" + { + "ControlName" "CheckButton" + "fieldName" "SupportCommunityMapMakersCheckButton" + "xpos" "c275" + "ypos" "437" + "zpos" "5" + "wide" "25" + "tall" "25" + "font" "HudFontSmall" + "labelText" "" + "visible" "0" + } + + "SupportCommunityMapMakersLabel" + { + "ControlName" "CExLabel" + "fieldName" "SupportCommunityMapMakersLabel" + "textAlignment" "north-west" + "xpos" "c304" + "ypos" "440" + "zpos" "5" + "wide" "70" + "tall" "100" + "font" "HudFontSmallest" + "wrap" "1" + "labelText" "#Store_ConfirmStampDonationAddTitle" + "visible" "0" + } + + "CheckoutButton" + { + "ControlName" "CExButton" + "fieldName" "CheckoutButton" + "xpos" "c170" + "ypos" "437" + "zpos" "2" + "wide" "130" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Store_Checkout" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "Command" "checkout" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } +} diff --git a/biscottihud/resource/ui/freezepanel_basic.res b/biscottihud/resource/ui/freezepanel_basic.res new file mode 100644 index 0000000..b47b3c8 --- /dev/null +++ b/biscottihud/resource/ui/freezepanel_basic.res @@ -0,0 +1,493 @@ +#base "freezepanel_basic_incognito.res" + +#base "freezepanel_basic_background.res" +#base "freezepanel_basic_spectatorguihealth.res" + +"Resource/UI/FreezePanel_Basic.res" +{ + "FreezePanel" + { + "ControlName" "CTFFreezePanel" + "fieldName" "FreezePanel" + + "screenshot_move_panel_to_corner" "1" + } + + "FreezePanelBase" [$X360] + { + "ControlName" "EditablePanel" + "fieldName" "FreezePanelBase" + "xpos" "0" + "ypos" "0" + "wide" "640" + "tall" "480" + "visible" "1" + + "NemesisSubPanel" + { + "ControlName" "EditablePanel" + "fieldName" "NemesisSubPanel" + "xpos" "c46" + "xpos_hidef" "c109" + "ypos" "223" + "ypos_hidef" "223" + "ypos_lodef" "193" + "zpos" "4" + "wide" "166" + "tall" "38" + "visible" "1" + + "NemesisPanelBG" + { + "ControlName" "ImagePanel" + "fieldName" "NemesisPanelBG" + "xpos" "0" + "ypos" "0" + "zpos" "5" + "wide" "166" + "tall" "38" + "visible" "1" + "enabled" "1" + "image" "../hud/freezecam_black_bg" + "scaleImage" "1" + } + "NemesisIcon" + { + "ControlName" "ImagePanel" + "fieldName" "NemesisIcon" + "xpos" "5" + "ypos" "-1" + "zpos" "6" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "image" "../hud/leaderboard_nemesis_freezecam" + "scaleImage" "1" + } + "NemesisLabel" + { + "ControlName" "Label" + "fieldName" "NemesisLabel" + "font" "HudFontMediumSmall" + "xpos" "44" + "ypos" "10" + "ypos_hidef" "11" + "ypos_lodef" "13" + "zpos" "6" + "wide" "112" + "tall" "18" + "tall_hidef" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%nemesisname%" + "textAlignment" "west" + } + } + "FreezePanelBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "FreezePanelBG" + "xpos" "c-38" + "xpos_hidef" "c25" + "ypos" "245" + "ypos_hidef" "245" + "ypos_lodef" "215" + "zpos" "0" + "wide" "266" + "tall" "48" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + } + + "FreezeLabel" + { + "ControlName" "Label" + "fieldName" "FreezeLabel" + "font" "DefaultSmall" + "xpos" "c2" + "xpos_hidef" "c65" + "ypos" "255" + "ypos_hidef" "256" + "ypos_lodef" "225" + "zpos" "1" + "wide" "252" + "tall" "9" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#FreezePanel_Killer" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "FreezeLabelKiller" + { + "ControlName" "Label" + "fieldName" "FreezeLabelKiller" + "font" "HudFontSmall" + "xpos" "c6" // No avatar image on X360 + "xpos_hidef" "c69" + "ypos" "266" + "ypos_hidef" "266" + "ypos_lodef" "236" + "zpos" "1" + "wide" "252" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "labelText" "%killername%" + "textAlignment" "Left" + } + + "FreezePanelHealth" + { + "ControlName" "EditablePanel" + "fieldName" "FreezePanelHealth" + "xpos" "c-30" + "xpos_hidef" "c35" + "ypos" "253" + "ypos_hidef" "253" + "ypos_lodef" "223" + "zpos" "1" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "HealthBonusPosAdj" "9" + "HealthDeathWarning" "0.49" + "TFFont" "HudFontSmall" + "HealthDeathWarningColor" "HUDDeathWarning" + "TextColor" "HudOffWhite" + } + } + + "itempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "itempanel" + "xpos" "r200" + "ypos" "0" + "zpos" "10" + "wide" "190" + "tall" "100" + "visible" "0" + "bgcolor_override" "255 255 255 0" + "PaintBackgroundType" "0" + "PaintBorder" "0" + + "model_ypos" "10" + "model_center_x" "1" + "model_wide" "90" + "model_tall" "60" + + "text_xpos" "10" + "text_ypos" "10" + "text_wide" "170" + "text_center" "1" + + "max_text_height" "100" + "padding_height" "10" + "resize_to_text" "1" + "text_forcesize" "2" + + "itempanelBG" + { "controlname" "imagepanel" + "fieldname" "itempanelBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + } + + "itemmodelpanel" + { + "fieldName" "itemmodelpanel" + "use_item_rendertarget" "0" + "useparentbg" "1" + } + + "ItemLabel" + { + "ControlName" "Label" + "fieldName" "ItemLabel" + "font" "DefaultSmall" + "xpos" "10" + "ypos" "3" + "zpos" "1" + "wide" "270" + "tall" "9" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#FreezePanel_Item" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "FreezePanelBase" [$WIN32] + { + "ControlName" "EditablePanel" + "fieldName" "FreezePanelBase" + "xpos" "r270" + "ypos" "93" + "wide" "267" + "tall" "200" + "visible" "1" + + "FreezePanelBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "FreezePanelBG" + "zpos" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + "BlackBG1" + { + "ControlName" "ImagePanel" + "fieldName" "BlackBG1" + "xpos" "8" + "ypos" "160" + "zpos" "-1" + "tall" "31" + "fillcolor" "0 0 0 175" + "enabled" "1" + } + "BlackBG2" + { + "ControlName" "ImagePanel" + "fieldName" "BlackBG2" + "ypos" "160" + "zpos" "-1" + "tall" "28" + "fillcolor" "0 0 0 175" + "enabled" "1" + } + + "FreezeLabel" + { + "ControlName" "Label" + "fieldName" "FreezeLabel" + "font" "DefaultSmall" + "xpos" "40" + "ypos" "162" + "zpos" "1" + "wide" "252" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#FreezePanel_Killer" + "textAlignment" "North-West" + "dulltext" "0" + "brighttext" "0" + } + + "FreezePanelHealth" [$WIN32] + { + "ControlName" "CTFFreezePanelHealth" + "fieldName" "FreezePanelHealth" + "xpos" "8" + "zpos" "1" + "visible" "1" + "enabled" "1" + "HealthBonusPosAdj" "9" + "HealthDeathWarning" "0.49" + "TFFont" "HudFontSmall" + "HealthDeathWarningColor" "HUDDeathWarning" + "TextColor" "HudOffWhite" + } + + "FreezeLabelKiller" + { + "ControlName" "Label" + "fieldName" "FreezeLabelKiller" + "font" "HudFontSmall" + "xpos" "61" + "ypos" "173" + "zpos" "5" + "wide" "252" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "labelText" "%killername%" + "textAlignment" "Left" + } + + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "49" + "ypos" "174" + "zpos" "0" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + + "NemesisSubPanel" + { + "ControlName" "EditablePanel" + "fieldName" "NemesisSubPanel" + "xpos" "0" // FIXME + "ypos" "125" + "zpos" "4" + "wide" "306" + "tall" "38" + "visible" "1" + + "NemesisPanelBG" + { + "ControlName" "ImagePanel" + "fieldName" "NemesisPanelBG" + "xpos" "95" + "ypos" "4" + "zpos" "5" + "wide" "161" + "tall" "30" + "visible" "1" + "enabled" "1" + + "fillcolor" "bBlackBG" + } + "NemesisIcon" + { + "ControlName" "ImagePanel" + "fieldName" "NemesisIcon" + "xpos" "95" + "ypos" "-1" + "zpos" "6" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "image" "../hud/leaderboard_nemesis_freezecam" + "scaleImage" "1" + } + "NemesisLabel" + { + "ControlName" "Label" + "fieldName" "NemesisLabel" + "font" "HudFontMediumSmall" + "xpos" "134" + "ypos" "10" + "zpos" "6" + "wide" "112" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%nemesisname%" + "textAlignment" "west" + } + "NemesisLabel2" + { + "ControlName" "Label" + "fieldName" "NemesisLabel2" + "font" "DefaultSmall" + "xpos" "134" + "ypos" "10" + "zpos" "6" + "wide" "112" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "%nemesisadvice%" + "textAlignment" "west" + } + } + } + + "ScreenshotPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ScreenshotPanel" + "xpos" "c-83" + "ypos" "50" + "zpos" "2" + "wide" "166" + "tall" "40" + "visible" "0" + + "ScreenshotPanelBG" + { + "ControlName" "ImagePanel" + "fieldName" "ScreenshotPanelBG" + "xpos" "0" + "ypos" "8" + "zpos" "0" + "wide" "166" + "tall" "38" + "visible" "1" + "enabled" "1" + "image" "../hud/freezecam_black_bg" + "scaleImage" "1" + } + "ScreenshotIcon" + { + "ControlName" "ImagePanel" + "fieldName" "ScreenshotIcon" + "xpos" "3" + "ypos" "0" + "zpos" "1" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "image" "../hud/ico_camera" + "scaleImage" "1" + } + "ScreenshotLabel" + { + "ControlName" "Label" + "fieldName" "ScreenshotLabel" + "font" "SpectatorKeyHints" + "xpos" "40" + "ypos" "25" + "zpos" "2" + "wide" "133" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%text%" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + } +} diff --git a/biscottihud/resource/ui/freezepanel_basic_background.res b/biscottihud/resource/ui/freezepanel_basic_background.res new file mode 100644 index 0000000..9a76ded --- /dev/null +++ b/biscottihud/resource/ui/freezepanel_basic_background.res @@ -0,0 +1,15 @@ +"Resource/UI/FreezePanel_Basic.res" +{ "FreezePanelBase" [$WIN32] + { + "FreezePanelBG" + { + "ypos" "188" + "tall" "3" + } + + "BlackBG2" + { + "visible" "1" + } + } +} diff --git a/biscottihud/resource/ui/freezepanel_basic_incognito.res b/biscottihud/resource/ui/freezepanel_basic_incognito.res new file mode 100644 index 0000000..c10f1f0 --- /dev/null +++ b/biscottihud/resource/ui/freezepanel_basic_incognito.res @@ -0,0 +1,18 @@ +"Resource/UI/FreezePanel_Basic.res" +{ + "FreezePanelBase" [$X360] + { + "FreezeLabelKiller" + { + "visible" "1" + } + } + "FreezePanelBase" [$WIN32] + { + + "FreezeLabelKiller" + { + "visible" "1" + } + } +} diff --git a/biscottihud/resource/ui/freezepanel_basic_spectatorguihealth.res b/biscottihud/resource/ui/freezepanel_basic_spectatorguihealth.res new file mode 100644 index 0000000..94ad4ee --- /dev/null +++ b/biscottihud/resource/ui/freezepanel_basic_spectatorguihealth.res @@ -0,0 +1,29 @@ +"Resource/UI/FreezePanel_Basic.res" +{ "FreezePanelBase" [$WIN32] + { + "FreezePanelBG" + { + "xpos" "35" + "wide" "229" + } + + "BlackBG1" + { + "wide" "27" + "visible" "1" + } + + "BlackBG2" + { + "xpos" "35" + "wide" "229" + } + + "FreezePanelHealth" [$WIN32] + { + "ypos" "152" + "wide" "27" + "tall" "39" + } + } +} diff --git a/biscottihud/resource/ui/freezepanelkillerhealth.res b/biscottihud/resource/ui/freezepanelkillerhealth.res new file mode 100644 index 0000000..47fdbff --- /dev/null +++ b/biscottihud/resource/ui/freezepanelkillerhealth.res @@ -0,0 +1,134 @@ +"Resource/UI/FreezePanelKillerHealth.res" +{ + "PlayerStatusHealthImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthImage" + "xpos" "-35" + "ypos" "8" + "zpos" "4" + "wide" "96" + "tall" "24" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + "PlayerStatusHealthImageBG" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthImageBG" + "xpos" "4" + "ypos" "4" + "zpos" "3" + "wide" "-22" + "tall" "22" + "visible" "1" + "enabled" "1" + "image" "../hud/health_bg" + "scaleImage" "1" + } + "BuildingStatusHealthImageBG" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthImageBG" + "xpos" "0" + "ypos" "1" + "zpos" "3" + "wide" "-28" + "tall" "28" + "visible" "1" + "enabled" "1" + "image" "../hud/health_equip_bg" + "scaleImage" "1" + } + "PlayerStatusHealthBonusImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthBonusImage" + "xpos" "-35" + "ypos" "0" + "zpos" "3" + "wide" "96" + "tall" "2" + "visible" "0" + "enabled" "1" + "image" "../hud/health_over_bg" + "scaleImage" "1" + } + "HealthDarkerBG" + { + "ControlName" "ImagePanel" + "fieldName" "HealthDarkerBG" + "xpos" "0" + "ypos" "8" + "zpos" "1" + "wide" "27" + "tall" "31" + "fillcolor" "0 0 0 125" + "visible" "1" + "enabled" "1" + } + "BlackFilter" + { + "ControlName" "ImagePanel" + "fieldName" "BlackFilter" + "xpos" "0" + "ypos" "8" + "zpos" "5" + "wide" "27" + "tall" "31" + "fillcolor" "0 0 0 75" + "visible" "1" + "enabled" "1" + } + "OverhealFilter" + { + "ControlName" "CExButton" + "fieldName" "OverhealFilter" + "xpos" "0" + "ypos" "8" + "zpos" "5" + "wide" "27" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "paintbackgroundtype" "0" + "border_default" "NoBorder" + "labelText" "" + "alpha" "0" + } + "PlayerStatusHealthValue" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusHealthValue" + "xpos" "0" + "ypos" "32" + "zpos" "5" + "wide" "27" + "tall" "7" + "visible" "1" + "enabled" "1" + "labelText" "%health%" + "font" "SpectatorVerySmall" // HudFontSmallest + "textAlignment" "center" + "fgcolor" "bHPSpecNorm" + } + "PlayerStatusHealthValueShadow" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusHealthValueShadow" + "xpos" "1" + "ypos" "32" + "zpos" "5" + "wide" "27" + "tall" "7" + "visible" "1" + "enabled" "1" + "labelText" "%health%" + "font" "SpectatorVerySmall" + "textAlignment" "center" + "fgcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/hud_obj_dispenser.res b/biscottihud/resource/ui/hud_obj_dispenser.res new file mode 100644 index 0000000..fd80dbf --- /dev/null +++ b/biscottihud/resource/ui/hud_obj_dispenser.res @@ -0,0 +1,432 @@ +"Resource/UI/hud_obj_dispenser.res" +{ + "BuildingStatusItem" + { + "ControlName" "Frame" + "fieldName" "BuildingStatusItem" + "xpos" "0" + "ypos" "0" + "wide" "150" + "tall" "31" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "Background" + { + "ControlName" "CIconPanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "120" + "tall" "31" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_background_disabled" + "iconColor" "255 255 255 255" + } + + "Icon_Dispenser" + { + "ControlName" "CIconPanel" + "fieldName" "Icon" + "xpos" "25" + "ypos" "1" + "wide" "28" + "tall" "28" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_dispenser" + "iconColor" "255 255 255 255" + } + + "NotBuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "NotBuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "31" + "visible" "1" + + "NotBuiltBG" + { + "ControlName" "ImagePanel" + "fieldName" "NotBuiltBG" + "xpos" "6" + "ypos" "2" + "zpos" "-10" + "wide" "105" + "tall" "27" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + "PaintBackgroundType" "0" + } + + "NotBuiltBGColoredLineH" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineH" + "xpos" "0" + "ypos" "27" + "zpos" "-9" + "wide" "100" + "tall" "2" + "visible" "0" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltBGColoredLineV" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineV" + "xpos" "0" + "ypos" "2" + "zpos" "-9" + "wide" "2" + "tall" "27" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "DefaultVerySmall" + "xpos" "60" + "ypos" "0" + "wide" "200" + "tall" "31" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_dispenser_not_built" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "BuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "31" + "visible" "0" + + "BuiltBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BuiltBG" + "xpos" "24" + "ypos" "2" + "zpos" "-10" + "wide" "100" + "tall" "27" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "alpha" "200" + } + + "BuiltHealthBG" + { + "ControlName" "ImagePanel" + "fieldName" "BuiltHealthBG" + "xpos" "8" + "ypos" "2" + "zpos" "-10" + "wide" "16" + "tall" "27" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "Icon_Upgrade_1" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_1" + "xpos" "47" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_1" + "iconColor" "255 255 255 255" + } + + "Icon_Upgrade_2" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_2" + "xpos" "47" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_2" + "iconColor" "255 255 255 255" + } + + "Icon_Upgrade_3" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_3" + "xpos" "47" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_3" + "iconColor" "255 255 255 255" + } + + "AlertTray" + { + "ControlName" "CBuildingStatusAlertTray" + "fieldName" "AlertTray" + "xpos" "113" + "ypos" "0" + "wide" "34" + "tall" "31" + "visible" "1" + "enabled" "1" + "icon" "obj_status_alert_background" + } + + "WrenchIcon" + { + "ControlName" "CIconPanel" + "fieldName" "WrenchIcon" + "xpos" "121" + "ypos" "5" + "zpos" "1" + "wide" "19" + "tall" "19" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_icon_wrench" + "iconColor" "255 255 255 255" + } + + "SapperIcon" + { + "ControlName" "CIconPanel" + "fieldName" "SapperIcon" + "xpos" "117" + "ypos" "3" + "zpos" "1" + "wide" "25" + "tall" "25" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_icon_sapper" + "iconColor" "255 255 255 255" + } + + "Health" + { + "ControlName" "CBuildingHealthBar" + "fieldName" "Health" + "font" "Default" + "xpos" "13" + "ypos" "3" + "wide" "8" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuildingPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "BuildingLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuildingLabel" + "font" "DefaultSmall" + "xpos" "0" + "ypos" "5" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_building" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingProgress" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "BuildingProgress" + "font" "Default" + "xpos" "0" + "ypos" "16" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "RunningPanel" + { + "ControlName" "EditablePanel" + "fieldName" "RunningPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "AmmoIcon" + { + "ControlName" "ImagePanel" + "fieldName" "AmmoIcon" + "xpos" "0" + "ypos" "5" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/hud_obj_status_ammo_64" + "drawcolor" "ProgressOffWhite" + } + + "Ammo" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "Ammo" + "font" "Default" + "xpos" "12" + "ypos" "6" + "wide" "38" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "UpgradeIcon" + { + "ControlName" "CIconPanel" + "fieldName" "UpgradeIcon" + "xpos" "0" + "ypos" "16" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_metal" + "iconColor" "ProgressOffWhite" + } + + "Upgrade" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "Upgrade" + "font" "Default" + "xpos" "12" + "ypos" "17" + "wide" "38" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + } +} diff --git a/biscottihud/resource/ui/hud_obj_sapper.res b/biscottihud/resource/ui/hud_obj_sapper.res new file mode 100644 index 0000000..1d16d6a --- /dev/null +++ b/biscottihud/resource/ui/hud_obj_sapper.res @@ -0,0 +1,239 @@ +"Resource/UI/hud_obj_sapper.res" +{ + "BuildingStatusItem" + { + "ControlName" "Frame" + "fieldName" "BuildingStatusItem" + "xpos" "0" + "ypos" "0" + "wide" "150" + "tall" "31" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "Background" + { + "ControlName" "CIconPanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "120" + "tall" "31" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_background_red" + "iconColor" "255 255 255 255" + } + + "Icon" + { + "ControlName" "CIconPanel" + "fieldName" "Icon" + "xpos" "24" + "ypos" "1" + "wide" "28" + "tall" "28" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sapper" + "iconColor" "255 255 255 255" + } + + "NotBuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "NotBuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "31" + "visible" "1" + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "DefaultSmall" + "xpos" "60" + "ypos" "0" + "wide" "200" + "tall" "31" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_sapper_not_built" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "BuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "43" + "visible" "0" + + "BuiltBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BuiltBG" + "xpos" "24" + "ypos" "2" + "zpos" "-10" + "wide" "100" + "tall" "27" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "alpha" "200" + } + + "BuiltHealthBG" + { + "ControlName" "ImagePanel" + "fieldName" "BuiltHealthBG" + "xpos" "8" + "ypos" "2" + "zpos" "-10" + "wide" "16" + "tall" "27" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "Health" + { + "ControlName" "CBuildingHealthBar" + "fieldName" "Health" + "font" "Default" + "xpos" "13" + "ypos" "2" + "wide" "8" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuildingPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "BuildingLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuildingLabel" + "font" "DefaultSmall" + "xpos" "0" + "ypos" "5" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_building" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingProgress" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "BuildingProgress" + "font" "Default" + "xpos" "0" + "ypos" "16" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "RunningPanel" + { + "ControlName" "EditablePanel" + "fieldName" "RunningPanel" + "xpos" "55" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "TargetIcon" + { + "ControlName" "CIconPanel" + "fieldName" "TargetIcon" + "xpos" "0" + "ypos" "5" + "wide" "20" + "tall" "20" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sentrygun_1" + "iconColor" "255 255 255 255" + } + + "TargetHealth" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "TargetHealth" + "font" "Default" + "xpos" "22" + "ypos" "12" + "wide" "35" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + } +} diff --git a/biscottihud/resource/ui/hud_obj_sentrygun.res b/biscottihud/resource/ui/hud_obj_sentrygun.res new file mode 100644 index 0000000..250b31d --- /dev/null +++ b/biscottihud/resource/ui/hud_obj_sentrygun.res @@ -0,0 +1,534 @@ +"Resource/UI/hud_obj_sentrygun.res" +{ + "BuildingStatusItem" + { + "ControlName" "Frame" + "fieldName" "BuildingStatusItem" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "Background" + { + "ControlName" "CIconPanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "120" + "tall" "60" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_background_tall_disabled" + "iconColor" "255 255 255 255" + } + + "Icon_Sentry_1" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Sentry_1" + "xpos" "24" + "ypos" "12" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sentrygun_1" + "iconColor" "255 255 255 255" + } + + "Icon_Sentry_2" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Sentry_2" + "xpos" "24" + "ypos" "12" + "wide" "36" + "tall" "36" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sentrygun_2" + "iconColor" "255 255 255 255" + } + + "Icon_Sentry_3" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Sentry_3" + "xpos" "24" + "ypos" "12" + "wide" "36" + "tall" "36" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sentrygun_3" + "iconColor" "255 255 255 255" + } + + "NotBuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "NotBuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "60" + "visible" "1" + + "NotBuiltBG" + { + "ControlName" "ImagePanel" + "fieldName" "NotBuiltBG" + "xpos" "6" + "ypos" "18" + "zpos" "-10" + "wide" "105" + "tall" "36" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + "PaintBackgroundType" "0" + } + + "NotBuiltBGColoredLineH" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineH" + "xpos" "0" + "ypos" "52" + "zpos" "-9" + "wide" "100" + "tall" "2" + "visible" "0" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltBGColoredLineV" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineV" + "xpos" "0" + "ypos" "18" + "zpos" "-9" + "wide" "2" + "tall" "36" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "DefaultVerySmall" + "xpos" "60" + "ypos" "0" + "wide" "200" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_sentry_not_built" + "labelText_lodef" "#Building_hud_sentry_not_built_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "BuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "60" + "visible" "0" + + "BuiltBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BuiltBG" + "xpos" "24" + "ypos" "2" + "zpos" "-10" + "wide" "100" + "tall" "56" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "alpha" "200" + } + + "BuiltHealthBG" + { + "ControlName" "ImagePanel" + "fieldName" "BuiltHealthBG" + "xpos" "8" + "ypos" "2" + "zpos" "-10" + "wide" "16" + "tall" "56" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "Icon_Upgrade_1" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_1" + "xpos" "48" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_1" + "iconColor" "255 255 255 255" + } + + "Icon_Upgrade_2" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_2" + "xpos" "48" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_2" + "iconColor" "255 255 255 255" + } + + "Icon_Upgrade_3" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_3" + "xpos" "48" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_3" + "iconColor" "255 255 255 255" + } + + "AlertTray" + { + "ControlName" "CBuildingStatusAlertTray" + "fieldName" "AlertTray" + "xpos" "114" + "ypos" "0" + "ypos" "0" + "zpos" "-2" + "wide" "44" + "tall" "60" + "visible" "1" + "enabled" "1" + "icon" "obj_status_alert_background_tall" + } + + "WrenchIcon" + { + "ControlName" "CIconPanel" + "fieldName" "WrenchIcon" + "xpos" "121" + "ypos" "18" + "zpos" "1" + "wide" "27" + "tall" "27" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_icon_wrench" + "iconColor" "255 255 255 255" + } + + "SapperIcon" + { + "ControlName" "CIconPanel" + "fieldName" "SapperIcon" + "xpos" "117" + "ypos" "12" + "zpos" "1" + "wide" "35" + "tall" "35" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_icon_sapper" + "iconColor" "255 255 255 255" + } + + "Health" + { + "ControlName" "CBuildingHealthBar" + "fieldName" "Health" + "font" "Default" + "xpos" "13" + "ypos" "3" + "wide" "8" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuildingPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "60" + "visible" "0" + + "BuildingLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuildingLabel" + "font" "DefaultSmall" + "xpos" "0" + "ypos" "18" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_building" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingProgress" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "BuildingProgress" + "font" "Default" + "xpos" "0" + "ypos" "29" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "RunningPanel" + { + "ControlName" "EditablePanel" + "fieldName" "RunningPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "60" + "visible" "0" + + "KillIcon" + { + "ControlName" "ImagePanel" + "fieldName" "KillIcon" + "xpos" "0" + "ypos" "12" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/hud_obj_status_kill_64" + "drawcolor" "ProgressOffWhite" + } + + "KillsLabel" + { + "ControlName" "CExLabel" + "fieldName" "KillsLabel" + "font" "DefaultSmall" + "xpos" "12" + "ypos" "13" + "wide" "200" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_sentry_kills_assists" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + } + + "ShellIcon" + { + "ControlName" "ImagePanel" + "fieldName" "ShellIcon" + "xpos" "0" + "ypos" "25" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/hud_obj_status_ammo_64" + "drawcolor" "ProgressOffWhite" + } + + "Shells" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "Shells" + "font" "Default" + "xpos" "12" + "ypos" "26" + "wide" "38" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "RocketIcon" + { + "ControlName" "ImagePanel" + "fieldName" "RocketIcon" + "xpos" "0" + "ypos" "38" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/hud_obj_status_rockets_64" + "drawcolor" "ProgressOffWhite" + } + + "Rockets" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "Rockets" + "font" "Default" + "xpos" "12" + "ypos" "39" + "wide" "38" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "UpgradeIcon" + { + "ControlName" "CIconPanel" + "fieldName" "UpgradeIcon" + "xpos" "0" + "ypos" "38" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_metal" + "iconColor" "ProgressOffWhite" + } + + "Upgrade" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "Upgrade" + "font" "Default" + "xpos" "12" + "ypos" "39" + "wide" "38" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + } +} diff --git a/biscottihud/resource/ui/hud_obj_sentrygun_disp.res b/biscottihud/resource/ui/hud_obj_sentrygun_disp.res new file mode 100644 index 0000000..3fefebc --- /dev/null +++ b/biscottihud/resource/ui/hud_obj_sentrygun_disp.res @@ -0,0 +1,403 @@ +"Resource/UI/hud_obj_sentrygun_disp.res" +{ + "BuildingStatusItem" + { + "ControlName" "Frame" + "fieldName" "BuildingStatusItem" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "Background" + { + "ControlName" "CIconPanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "120" + "tall" "22" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_background_disabled" + "iconColor" "255 255 255 255" + } + + "Icon_Sentry_1" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Sentry_1" + "xpos" "30" + "ypos" "1" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_sentrygun_1" + "iconColor" "255 255 255 255" + } + + "NotBuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "NotBuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "20" + "visible" "1" + + "NotBuiltBG" + { + "ControlName" "ImagePanel" + "fieldName" "NotBuiltBG" + "xpos" "6" + "ypos" "2" + "zpos" "-10" + "wide" "105" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + "PaintBackgroundType" "0" + } + + "NotBuiltBGColoredLineH" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineH" + "xpos" "0" + "ypos" "18" + "zpos" "-9" + "wide" "100" + "tall" "2" + "visible" "0" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltBGColoredLineV" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineV" + "xpos" "0" + "ypos" "2" + "zpos" "-9" + "wide" "2" + "tall" "18" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "DefaultVerySmall" + "xpos" "60" + "ypos" "2" + "wide" "200" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_disp_sentry_not_built" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "BuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "20" + "visible" "0" + + "BuiltBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BuiltBG" + "xpos" "24" + "ypos" "2" + "zpos" "-10" + "wide" "100" + "tall" "18" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "alpha" "200" + } + + "BuiltHealthBG" + { + "ControlName" "ImagePanel" + "fieldName" "BuiltHealthBG" + "xpos" "8" + "ypos" "2" + "zpos" "-10" + "wide" "16" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "Icon_Upgrade_1" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_1" + "xpos" "46" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "0" + "scaleImage" "1" + "icon" "" + "iconColor" "255 255 255 255" + } + + "AlertTray" + { + "ControlName" "CBuildingStatusAlertTray" + "fieldName" "AlertTray" + "xpos" "114" + "ypos" "0" + "ypos" "0" + "zpos" "-2" + "wide" "44" + "tall" "30" + "visible" "0" + "enabled" "0" + "icon" "obj_status_alert_background_tall" + } + + "WrenchIcon" + { + "ControlName" "CIconPanel" + "fieldName" "WrenchIcon" + "xpos" "121" + "ypos" "18" + "zpos" "1" + "wide" "17" + "tall" "17" + "visible" "0" + "enabled" "0" + "scaleImage" "1" + "icon" "obj_status_icon_wrench" + "iconColor" "255 255 255 255" + } + + "SapperIcon" + { + "ControlName" "CIconPanel" + "fieldName" "SapperIcon" + "xpos" "117" + "ypos" "12" + "zpos" "1" + "wide" "15" + "tall" "15" + "visible" "0" + "enabled" "0" + "scaleImage" "1" + "icon" "obj_status_icon_sapper" + "iconColor" "255 255 255 255" + } + + "Health" + { + "ControlName" "CBuildingHealthBar" + "fieldName" "Health" + "font" "Default" + "xpos" "13" + "ypos" "4" + "wide" "8" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuildingPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "30" + "visible" "0" + + "BuildingLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuildingLabel" + "font" "DefaultSmall" + "xpos" "0" + "ypos" "18" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_building" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingProgress" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "BuildingProgress" + "font" "Default" + "xpos" "0" + "ypos" "29" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "RunningPanel" + { + "ControlName" "EditablePanel" + "fieldName" "RunningPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "20" + "visible" "0" + + "KillIcon" + { + "ControlName" "ImagePanel" + "fieldName" "KillIcon" + "xpos" "0" + "ypos" "5" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "0" + "enabled" "0" + "scaleImage" "1" + "image" "../hud/hud_obj_status_kill_64" + "drawcolor" "ProgressOffWhite" + } + + "KillsLabel" + { + "ControlName" "CExLabel" + "fieldName" "KillsLabel" + "font" "DefaultSmall" + "xpos" "12" + "ypos" "6" + "wide" "200" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "labelText" "#Building_hud_sentry_kills_assists" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + } + + "ShellIcon" + { + "ControlName" "ImagePanel" + "fieldName" "ShellIcon" + "xpos" "0" + "ypos" "6" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/hud_obj_status_ammo_64" + "drawcolor" "ProgressOffWhite" + } + + "Shells" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "Shells" + "font" "Default" + "xpos" "12" + "ypos" "7" + "wide" "38" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + } +} diff --git a/biscottihud/resource/ui/hud_obj_tele_entrance.res b/biscottihud/resource/ui/hud_obj_tele_entrance.res new file mode 100644 index 0000000..ada4603 --- /dev/null +++ b/biscottihud/resource/ui/hud_obj_tele_entrance.res @@ -0,0 +1,474 @@ +"Resource/UI/hud_obj_tele_entrance.res" +{ + "BuildingStatusItem" + { + "ControlName" "Frame" + "fieldName" "BuildingStatusItem" + "xpos" "0" + "ypos" "0" + "wide" "150" + "tall" "31" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "Background" + { + "ControlName" "CIconPanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "120" + "tall" "31" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_background_disabled" + "iconColor" "255 255 255 255" + } + + "Icon_Teleport_Entrance" + { + "ControlName" "CIconPanel" + "fieldName" "Icon" + "xpos" "25" + "ypos" "1" + "wide" "28" + "tall" "28" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_entrance" + "iconColor" "255 255 255 255" + } + + "NotBuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "NotBuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "31" + "visible" "1" + + "NotBuiltBG" + { + "ControlName" "ImagePanel" + "fieldName" "NotBuiltBG" + "xpos" "6" + "ypos" "2" + "zpos" "-10" + "wide" "105" + "tall" "27" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + "PaintBackgroundType" "0" + } + + "NotBuiltBGColoredLineH" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineH" + "xpos" "0" + "ypos" "27" + "zpos" "-9" + "wide" "100" + "tall" "2" + "visible" "0" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltBGColoredLineV" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineV" + "xpos" "0" + "ypos" "2" + "zpos" "-9" + "wide" "2" + "tall" "27" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "DefaultVerySmall" + "xpos" "60" + "ypos" "0" + "wide" "200" + "tall" "31" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_tele_enter_not_built_360" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "BuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "31" + "visible" "0" + + "BuiltBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BuiltBG" + "xpos" "24" + "ypos" "2" + "zpos" "-10" + "wide" "100" + "tall" "27" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "alpha" "200" + } + + "BuiltHealthBG" + { + "ControlName" "ImagePanel" + "fieldName" "BuiltHealthBG" + "xpos" "8" + "ypos" "2" + "zpos" "-10" + "wide" "16" + "tall" "27" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "Icon_Upgrade_1" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_1" + "xpos" "47" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_1" + "iconColor" "255 255 255 255" + } + + "Icon_Upgrade_2" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_2" + "xpos" "47" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_2" + "iconColor" "255 255 255 255" + } + + "Icon_Upgrade_3" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_3" + "xpos" "47" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_3" + "iconColor" "255 255 255 255" + } + + + "AlertTray" + { + "ControlName" "CBuildingStatusAlertTray" + "fieldName" "AlertTray" + "xpos" "113" + "ypos" "0" + "wide" "34" + "tall" "31" + "visible" "1" + "enabled" "1" + "icon" "obj_status_alert_background" + } + + "WrenchIcon" + { + "ControlName" "CIconPanel" + "fieldName" "WrenchIcon" + "xpos" "121" + "ypos" "5" + "zpos" "1" + "wide" "19" + "tall" "19" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_icon_wrench" + "iconColor" "255 255 255 255" + } + + "SapperIcon" + { + "ControlName" "CIconPanel" + "fieldName" "SapperIcon" + "xpos" "117" + "ypos" "3" + "zpos" "1" + "wide" "25" + "tall" "25" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_icon_sapper" + "iconColor" "255 255 255 255" + } + + "Health" + { + "ControlName" "CBuildingHealthBar" + "fieldName" "Health" + "font" "Default" + "xpos" "13" + "ypos" "3" + "wide" "8" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuildingPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "BuildingLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuildingLabel" + "font" "DefaultSmall" + "xpos" "0" + "ypos" "5" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_building" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingProgress" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "BuildingProgress" + "font" "Default" + "xpos" "0" + "ypos" "16" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "RunningPanel" + { + "ControlName" "EditablePanel" + "fieldName" "RunningPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "TeleportedIcon" + { + "ControlName" "ImagePanel" + "fieldName" "TeleportedIcon" + "xpos" "0" + "ypos" "5" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "../hud/hud_obj_status_teleport_64" + "drawcolor" "ProgressOffWhite" + "scaleImage" "1" + } + + "ChargingPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ChargingPanel" + "xpos" "0" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "Recharge" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "Recharge" + "font" "Default" + "xpos" "12" + "ypos" "6" + "wide" "38" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "FullyChargedPanel" + { + "ControlName" "EditablePanel" + "fieldName" "FullyChargedPanel" + "xpos" "0" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "TimesUsedLabel" + { + "ControlName" "CExLabel" + "fieldName" "TimesUsedLabel" + "font" "DefaultSmall" + "xpos" "12" + "ypos" "5" + "wide" "200" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%timesused%" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + } + } + + "UpgradeIcon" + { + "ControlName" "CIconPanel" + "fieldName" "UpgradeIcon" + "xpos" "0" + "ypos" "16" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_metal" + "iconColor" "ProgressOffWhite" + } + + "Upgrade" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "Upgrade" + "font" "Default" + "xpos" "12" + "ypos" "17" + "wide" "38" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + } +} diff --git a/biscottihud/resource/ui/hud_obj_tele_exit.res b/biscottihud/resource/ui/hud_obj_tele_exit.res new file mode 100644 index 0000000..67cf384 --- /dev/null +++ b/biscottihud/resource/ui/hud_obj_tele_exit.res @@ -0,0 +1,398 @@ +"Resource/UI/hud_obj_tele_exit.res" +{ + "BuildingStatusItem" + { + "ControlName" "Frame" + "fieldName" "BuildingStatusItem" + "xpos" "0" + "ypos" "0" + "wide" "150" + "tall" "31" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "Background" + { + "ControlName" "CIconPanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "120" + "tall" "31" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_background_disabled" + "iconColor" "255 255 255 255" + } + + "Icon_Teleport_Exit" + { + "ControlName" "CIconPanel" + "fieldName" "Icon" + "xpos" "25" + "ypos" "1" + "wide" "28" + "tall" "28" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_tele_exit" + "iconColor" "255 255 255 255" + } + + "NotBuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "NotBuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "31" + "visible" "1" + + "NotBuiltBG" + { + "ControlName" "ImagePanel" + "fieldName" "NotBuiltBG" + "xpos" "6" + "ypos" "2" + "zpos" "-10" + "wide" "105" + "tall" "27" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + "PaintBackgroundType" "0" + } + + "NotBuiltBGColoredLineH" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineH" + "xpos" "0" + "ypos" "27" + "zpos" "-9" + "wide" "100" + "tall" "2" + "visible" "0" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltBGColoredLineV" + { + "ControlName" "CTFImagePanel" + "fieldName" "NotBuiltBGColoredLineV" + "xpos" "0" + "ypos" "2" + "zpos" "-9" + "wide" "2" + "tall" "27" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "NotBuiltLabel" + { + "ControlName" "CExLabel" + "fieldName" "NotBuiltLabel" + "font" "DefaultVerySmall" + "xpos" "60" + "ypos" "0" + "wide" "200" + "tall" "31" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_tele_exit_not_built" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "BuiltPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuiltPanel" + "xpos" "0" + "ypos" "0" + "wide" "160" + "tall" "43" + "visible" "0" + + "BuiltBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BuiltBG" + "xpos" "24" + "ypos" "2" + "zpos" "-10" + "wide" "100" + "tall" "27" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "alpha" "200" + } + + "BuiltHealthBG" + { + "ControlName" "ImagePanel" + "fieldName" "BuiltHealthBG" + "xpos" "8" + "ypos" "2" + "zpos" "-10" + "wide" "16" + "tall" "27" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "Icon_Upgrade_1" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_1" + "xpos" "47" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_1" + "iconColor" "255 255 255 255" + } + + "Icon_Upgrade_2" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_2" + "xpos" "47" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_2" + "iconColor" "255 255 255 255" + } + + "Icon_Upgrade_3" + { + "ControlName" "CIconPanel" + "fieldName" "Icon_Upgrade_3" + "xpos" "47" + "ypos" "4" + "zpos" "1" + "wide" "8" + "tall" "8" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_upgrade_3" + "iconColor" "255 255 255 255" + } + + "AlertTray" + { + "ControlName" "CBuildingStatusAlertTray" + "fieldName" "AlertTray" + "xpos" "113" + "ypos" "0" + "wide" "34" + "tall" "31" + "visible" "1" + "enabled" "1" + "icon" "obj_status_alert_background" + } + + "WrenchIcon" + { + "ControlName" "CIconPanel" + "fieldName" "WrenchIcon" + "xpos" "121" + "ypos" "5" + "zpos" "1" + "wide" "19" + "tall" "19" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_icon_wrench" + "iconColor" "255 255 255 255" + } + + "SapperIcon" + { + "ControlName" "CIconPanel" + "fieldName" "SapperIcon" + "xpos" "117" + "ypos" "3" + "zpos" "1" + "wide" "25" + "tall" "25" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "icon" "obj_status_icon_sapper" + "iconColor" "255 255 255 255" + } + + "Health" + { + "ControlName" "CBuildingHealthBar" + "fieldName" "Health" + "font" "Default" + "xpos" "13" + "ypos" "3" + "wide" "8" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BuildingPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "BuildingLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuildingLabel" + "font" "DefaultSmall" + "xpos" "0" + "ypos" "5" + "wide" "200" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Building_hud_building" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "BuildingProgress" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "BuildingProgress" + "font" "Default" + "xpos" "0" + "ypos" "16" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "RunningPanel" + { + "ControlName" "EditablePanel" + "fieldName" "RunningPanel" + "xpos" "60" + "ypos" "0" + "wide" "100" + "tall" "31" + "visible" "0" + + "UpgradeIcon" + { + "ControlName" "CIconPanel" + "fieldName" "UpgradeIcon" + "xpos" "0" + "ypos" "16" + "zpos" "1" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_metal" + "iconColor" "ProgressOffWhite" + } + + "Upgrade" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "Upgrade" + "font" "Default" + "xpos" "12" + "ypos" "17" + "wide" "38" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + } +} diff --git a/biscottihud/resource/ui/hudaccountpanel.res b/biscottihud/resource/ui/hudaccountpanel.res new file mode 100644 index 0000000..8962334 --- /dev/null +++ b/biscottihud/resource/ui/hudaccountpanel.res @@ -0,0 +1,174 @@ +#base "hudaccountpanel_label1.res" +#base "hudaccountpanel_label2.res" + +"Resource/UI/HudAccountPanel.res" +{ + "CHudAccountPanel" + { + "delta_item_x" "25" + "delta_item_start_y" "90" + "delta_item_end_y" "70" + "PositiveColor" "0 255 0 255" + "NegativeColor" "255 0 0 255" + "delta_lifetime" "1.5" + "delta_item_font" "HudFontMedium" + } + + "AccountBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "AccountBG" + "xpos" "5" + "ypos" "103" + "zpos" "0" + "wide" "84" + "tall" "42" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "MetalIcon" + { + "ControlName" "CIconPanel" + "fieldName" "MetalIcon" + "xpos" "35" + "ypos" "163" + "zpos" "1" + "wide" "20" + "tall" "20" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_metal" + "iconColor" "ProgressOffWhite" + + "if_mvm" + { + "visible" "0" + } + + "if_ctf" + { + "visible" "0" + } + } + + "MetalIconShadow" + { + "ControlName" "CIconPanel" + "fieldName" "MetalIconShadow" + "xpos" "36" + "ypos" "163" + "zpos" "1" + "wide" "20" + "tall" "20" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_metal" + "iconColor" "Black" + + + "if_mvm" + { + "visible" "0" + } + + "if_ctf" + { + "visible" "0" + } + } + + "AccountValue1" + { + "ControlName" "CExLabel" + "fieldName" "AccountValue1" + "xpos" "0" + "ypos" "130" + "ypos_lodef" "121" + "zpos" "2" + "wide" "90" + "tall" "30" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%metal%" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontGiantBold" + "font_lodef" "HudFontMedium" + "fgcolor" "bMetalLabel" + } + + "AccountValue1Shadow" + { + "ControlName" "CExLabel" + "fieldName" "AccountValue1Shadow" + "xpos" "1" + "ypos" "130" + "ypos_lodef" "121" + "zpos" "2" + "wide" "90" + "tall" "30" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%metal%" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontGiantBold" + "font_lodef" "HudFontMedium" + "fgcolor" "Black" + } + + + "AccountValue2" + { + "ControlName" "CExLabel" + "fieldName" "AccountValue2" + "xpos" "25" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "0" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%metal%" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "Default" + "fgcolor" "bMetalLabel" + } + "AccountValue2Shadow" + { + "ControlName" "CExLabel" + "fieldName" "AccountValue2Shadow" + "xpos" "26" + "ypos" "11" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "0" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%metal%" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "Default" + "fgcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/hudaccountpanel_label1.res b/biscottihud/resource/ui/hudaccountpanel_label1.res new file mode 100644 index 0000000..4eec9b3 --- /dev/null +++ b/biscottihud/resource/ui/hudaccountpanel_label1.res @@ -0,0 +1,19 @@ +"Resource/UI/HudAccountPanel.res" +{ + "MetalIcon" + { + "visible" "1" + } + "MetalIconShadow" + { + "visible" "1" + } + "AccountValue1" + { + "visible" "1" + } + "AccountValue1Shadow" + { + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/hudaccountpanel_label2.res b/biscottihud/resource/ui/hudaccountpanel_label2.res new file mode 100644 index 0000000..7ee35c9 --- /dev/null +++ b/biscottihud/resource/ui/hudaccountpanel_label2.res @@ -0,0 +1,11 @@ +"Resource/UI/HudAccountPanel.res" +{ + "AccountValue2" + { + "visible" "1" + } + "AccountValue2Shadow" + { + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/hudammoweapons.res b/biscottihud/resource/ui/hudammoweapons.res new file mode 100644 index 0000000..052872b --- /dev/null +++ b/biscottihud/resource/ui/hudammoweapons.res @@ -0,0 +1,207 @@ +#base "hudammoweapons_linesh.res" +#base "hudammoweapons_linesv.res" + +"Resource/UI/HudAmmoWeapons.res" +{ + "HudWeaponAmmoBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "HudWeaponAmmoBG" + "xpos" "28" + "ypos" "17" + "zpos" "1" + "wide" "-90" + "tall" "45" + "visible" "1" + "enabled" "1" + "image" "../hud/ammo_blue_bg" + "scaleImage" "1" + "teambg_2" "../hud/ammo_red_bg" + "teambg_3" "../hud/ammo_blue_bg" + } + "HudWeaponLowAmmoImage" + { + "ControlName" "ImagePanel" + "fieldName" "HudWeaponLowAmmoImage" + "xpos" "28" + "ypos" "17" + "zpos" "0" + "wide" "58" + "tall" "35" + "alpha" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/ammo_red_bg" + "scaleImage" "1" + "teambg_2" "../hud/ammo_red_bg" + "teambg_3" "../hud/ammo_blue_bg" + } + "HudWeaponAmmoShadedBG" + { + "ControlName" "CExButton" + "fieldname" "HudWeaponAmmoShadedBG" + "xpos" "6" + "ypos" "2" + "zpos" "1" + "wide" "100" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "defaultBgColor_Override" "bAmmoBoxNorm" + "paintbackgroundtype" "0" + "border_default" "NoBorder" + "labelText" "" + } + "BGColoredLineH" + { + "ControlName" "CTFImagePanel" + "fieldName" "BGColoredLineH" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "100" + "tall" "2" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "pin_to_sibling" "HudWeaponAmmoShadedBG" + "pin_to_sibling_corner" "2" + "pin_corner_to_sibling" "2" + } + "BGColoredLineV" + { + "ControlName" "CTFImagePanel" + "fieldName" "BGColoredLineV" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "2" + "tall" "50" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "pin_to_sibling" "HudWeaponAmmoShadedBG" + "pin_to_sibling_corner" "1" + "pin_corner_to_sibling" "1" + } + "AmmoInClip" + { + "ControlName" "CExLabel" + "fieldName" "AmmoInClip" + "font" "HudFontGiantBold" + "fgcolor" "bClipNorm" + "xpos" "8" // 22 // 8 + "ypos" "2" + "zpos" "5" + "wide" "55" + "tall" "50" + "visible" "0" + "enabled" "1" + "textAlignment" "east" // south-west // south-east + "labelText" "%Ammo%" + } + "AmmoInClipShadow" + { + "ControlName" "CExLabel" + "fieldName" "AmmoInClipShadow" + "font" "HudFontGiantBold" + "fgcolor" "Black" + "xpos" "9" // 23 // 9 + "ypos" "2" + "zpos" "5" + "wide" "55" + "tall" "50" + "visible" "0" + "enabled" "1" + "textAlignment" "east" // south-west // south-east + "labelText" "%Ammo%" + } + "AmmoInReserve" + { + "ControlName" "CExLabel" + "fieldName" "AmmoInReserve" + "font" "HudFontMediumSmall" + "font_minmode" "HudFontMediumSmall" // HudFontSmall + "fgcolor" "bReserveNorm" + "xpos" "65" + "ypos" "12" + "zpos" "7" + "wide" "50" + "tall" "50" + "visible" "0" + "enabled" "1" + "textAlignment" "west" + "labelText" "%AmmoInReserve%" + } + "AmmoInReserveShadow" + { + "ControlName" "CExLabel" + "fieldName" "AmmoInReserveShadow" + "font" "HudFontMediumSmall" + "font_minmode" "HudFontMediumSmall" // HudFontSmall + "fgcolor" "TransparentBlack" + "xpos" "66" + "ypos" "12" + "zpos" "7" + "wide" "50" + "tall" "50" + "visible" "0" + "enabled" "1" + "textAlignment" "west" + "labelText" "%AmmoInReserve%" + } + "AmmoNoClip" + { + "ControlName" "CExLabel" + "fieldName" "AmmoNoClip" + "font" "HudFontGiantBold" + "fgcolor" "bNoClipNorm" + "xpos" "16" // 26 + "ypos" "2" // 12 + "zpos" "5" + "wide" "100" // 84 + "tall" "50" // 36 + "visible" "0" + "enabled" "1" + "textAlignment" "west" + "labelText" "%Ammo%" + } + "AmmoNoClipShadow" + { + "ControlName" "CExLabel" + "fieldName" "AmmoNoClipShadow" + "font" "HudFontGiantBold" + "fgcolor" "Black" + "xpos" "17" + "ypos" "2" + "zpos" "5" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "textAlignment" "west" + "labelText" "%Ammo%" + } +} diff --git a/biscottihud/resource/ui/hudammoweapons_linesh.res b/biscottihud/resource/ui/hudammoweapons_linesh.res new file mode 100644 index 0000000..c4e9c5c --- /dev/null +++ b/biscottihud/resource/ui/hudammoweapons_linesh.res @@ -0,0 +1,7 @@ +"Resource/UI/HudAmmoWeapons.res" +{ + "BGColoredLineH" + { + "visible" "0" + } +} diff --git a/biscottihud/resource/ui/hudammoweapons_linesv.res b/biscottihud/resource/ui/hudammoweapons_linesv.res new file mode 100644 index 0000000..d73efd3 --- /dev/null +++ b/biscottihud/resource/ui/hudammoweapons_linesv.res @@ -0,0 +1,7 @@ +"Resource/UI/HudAmmoWeapons.res" +{ + "BGColoredLineV" + { + "visible" "0" + } +} diff --git a/biscottihud/resource/ui/hudarenaclasslayout.res b/biscottihud/resource/ui/hudarenaclasslayout.res new file mode 100644 index 0000000..89d55d1 --- /dev/null +++ b/biscottihud/resource/ui/hudarenaclasslayout.res @@ -0,0 +1,295 @@ +"Resource/UI/HudArenaClassLayout.res" +{ + "background" + { + "ControlName" "CTFImagePanel" + "fieldName" "background" + "xpos" "c-100" + "ypos" "130" + "zpos" "1" + "wide" "20" + "tall" "100" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "15" // pixels inside the image + "src_corner_width" "15" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "localPlayerBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "localPlayerBG" + "xpos" "0" + "ypos" "140" + "zpos" "2" + "wide" "45" + "tall" "80" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_clear" + "scaleImage" "1" + "teambg_2" "../hud/color_panel_clear" + "teambg_3" "../hud/color_panel_clear" + + "src_corner_height" "15" // pixels inside the image + "src_corner_width" "15" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "title" + { + "ControlName" "CExLabel" + "fieldName" "title" + "xpos" "c-200" + "ypos" "107" + "zpos" "6" + "wide" "400" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontMediumBold" + "labelText" "#TF_Arena_Team_Layout" + "textAlignment" "center" + "fgcolor" "TanLight" + } + "titleShadow" + { + "ControlName" "CExLabel" + "fieldName" "titleShadow" + "xpos" "c-199" + "ypos" "108" + "zpos" "5" + "wide" "400" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontMediumBold" + "labelText" "#TF_Arena_Team_Layout" + "textAlignment" "center" + "fgcolor" "Black" + } + + "changeLabel" + { + "ControlName" "CExLabel" + "fieldName" "changeLabel" + "xpos" "c-220" + "ypos" "230" + "zpos" "6" + "wide" "440" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallBold" + "labelText" "#TF_Arena_F4_ChangeClass" + "textAlignment" "center" + "fgcolor" "TanLight" + } + "changeLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "changeLabelShadow" + "xpos" "c-219" + "ypos" "231" + "zpos" "5" + "wide" "440" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallBold" + "labelText" "#TF_Arena_F4_ChangeClass" + "textAlignment" "center" + "fgcolor" "Black" + } + + "classImage0" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage0" + "xpos" "0" + "ypos" "125" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage1" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage1" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage2" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage2" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage3" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage3" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage4" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage4" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage5" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage5" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage6" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage6" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage7" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage7" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage8" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage8" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage9" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage9" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage10" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage10" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "classImage11" + { + "ControlName" "CTFImagePanel" + "fieldName" "classImage11" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "45" + "tall" "90" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } +} diff --git a/biscottihud/resource/ui/hudarenaplayercount.res b/biscottihud/resource/ui/hudarenaplayercount.res new file mode 100644 index 0000000..9158e0e --- /dev/null +++ b/biscottihud/resource/ui/hudarenaplayercount.res @@ -0,0 +1,174 @@ +"Resource/UI/HudArenaPlayerCount.res" +{ + "blueteam" + { + "ControlName" "EditablePanel" + "fieldName" "blueteam" + "xpos" "c-30" + "ypos" "0" + "zpos" "0" + "wide" "60" + "tall" "30" + "visible" "1" + + "background" + { + "ControlName" "CTFImagePanel" + "fieldName" "background" + "xpos" "5" + "ypos" "7" + "zpos" "0" + "wide" "50" + "tall" "21" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + + "src_corner_height" "15" // pixels inside the image + "src_corner_width" "15" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "count" + { + "ControlName" "CExLabel" + "fieldName" "count" + "xpos" "23" + "ypos" "6" + "zpos" "2" + "wide" "30" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontMedium" + "labelText" "%blue_alive%" + "textAlignment" "center" + "fgcolor" "TanLight" + } + "countshadow" + { + "ControlName" "CExLabel" + "fieldName" "countshadow" + "xpos" "24" + "ypos" "7" + "zpos" "1" + "wide" "30" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontMedium" + "labelText" "%blue_alive%" + "textAlignment" "center" + "fgcolor" "Black" + } + + "playerimage" + { + "ControlName" "ImagePanel" + "fieldName" "playerimage" + "xpos" "12" + "ypos" "9" + "zpos" "3" + "wide" "8" + "tall" "16" + "visible" "1" + "enabled" "1" + "image" "capture_icon_white" + "scaleImage" "1" + } + } + + "redteam" + { + "ControlName" "EditablePanel" + "fieldName" "redteam" + "xpos" "c-30" + "ypos" "21" + "zpos" "0" + "wide" "60" + "tall" "30" + "visible" "1" + + "background" + { + "ControlName" "CTFImagePanel" + "fieldName" "background" + "xpos" "5" + "ypos" "7" + "zpos" "0" + "wide" "50" + "tall" "21" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + + "src_corner_height" "15" // pixels inside the image + "src_corner_width" "15" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "count" + { + "ControlName" "CExLabel" + "fieldName" "count" + "xpos" "23" + "ypos" "6" + "zpos" "2" + "wide" "30" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontMedium" + "labelText" "%red_alive%" + "textAlignment" "center" + "fgcolor" "TanLight" + } + "countshadow" + { + "ControlName" "CExLabel" + "fieldName" "countshadow" + "xpos" "24" + "ypos" "7" + "zpos" "1" + "wide" "30" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontMedium" + "labelText" "%red_alive%" + "textAlignment" "center" + "fgcolor" "Black" + } + + "playerimage" + { + "ControlName" "ImagePanel" + "fieldName" "playerimage" + "xpos" "12" + "ypos" "9" + "zpos" "3" + "wide" "8" + "tall" "16" + "visible" "1" + "enabled" "1" + "image" "capture_icon_white" + "scaleImage" "1" + } + } +} diff --git a/biscottihud/resource/ui/hudarenateammenu.res b/biscottihud/resource/ui/hudarenateammenu.res new file mode 100644 index 0000000..fa52b4a --- /dev/null +++ b/biscottihud/resource/ui/hudarenateammenu.res @@ -0,0 +1,393 @@ +"Resource/UI/ArenaTeamMenu.res" +{ + "team" + { + "ControlName" "CTeamMenu" + "fieldName" "team" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "SysMenu" + { + "ControlName" "Menu" + "fieldName" "SysMenu" + "xpos" "0" + "ypos" "0" + "wide" "64" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + } + + "MapInfo" + { + "ControlName" "HTML" + "fieldName" "MapInfo" + "xpos" "100" + "ypos" "34" + "wide" "450" + "tall" "365" + "autoResize" "3" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + } + + "mapname" + { + "ControlName" "Label" + "fieldName" "mapname" + "xpos" "c-310" + "ypos" "50" + "wide" "90" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "1" + } + "teambutton2" + { + "ControlName" "CTFTeamButton" + "fieldName" "teambutton2" + "xpos" "c-290" + "ypos" "101" + "zpos" "3" + "wide" "124" + "tall" "310" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "&1" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "dulltext" "0" + "brighttext" "0" + "paintborder" "0" + "command" "jointeam spectate" + "associated_model" "autodoor" + "font" "MenuMainTitle" + "fgcolor" "255 255 255 255" + } + + "teambutton3" + { + "ControlName" "CTFTeamButton" + "fieldName" "teambutton3" + "xpos" "c-140" + "ypos" "232" + "zpos" "3" + "wide" "82" + "tall" "57" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "&2" [$WIN32] + "labelText" "" [$X360] + "textAlignment" "south-west" + "dulltext" "0" + "brighttext" "0" + "paintborder" "0" + "command" "jointeam spectatearena" + "associated_model" "spectate" + "font" "MenuMainTitle" + "fgcolor" "255 255 255 255" + } + + "CancelButton" [$WIN32] + { + "ControlName" "CExButton" + "fieldName" "CancelButton" + "xpos" "r190" + "xpos_hidef" "r200" + "ypos" "r40" + "ypos_lodef" "r64" + "ypos_hidef" "r54" + "zpos" "6" + "wide" "150" + "tall" "30" + "autoResize" "0" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Cancel" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "command" "cancelmenu" + "font" "MenuSmallFont" + } + + "TeamMenuAuto" + { + "ControlName" "CExLabel" + "fieldName" "TeamMenuAuto" + "xpos" "c-280" [$WIN32] + "xpos" "c-276" [$X360] + "xpos_lodef" "c-255" + "xpos_hidef" "c-260" + "ypos" "55" + "ypos_lodef" "72" + "ypos_hidef" "65" + "zpos" "1" + "wide" "102" [$WIN32] + "wide" "94" [$X360] + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_Arena_Menu_Fight" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "MenuSmallFont" + "fgcolor" "black" + } + + "TeamMenuSpectate" + { + "ControlName" "CExLabel" + "fieldName" "TeamMenuSpectate" + "xpos" "c-112" + "xpos_lodef" "c-125" + "xpos_hidef" "c-109" + "ypos" "255" + "ypos_lodef" "292" + "zpos" "1" + "wide" "44" + "wide_lodef" "70" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_Spectate" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "MenuSmallestFont" + "font_lodef" "MenuSmallFont" + "fgcolor" "white" + } + + "MenuBG" + { + "ControlName" "CModelPanel" + "fieldName" "MenuBG" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fov" "20" + + "model" + { + "modelname" "models/vgui/ui_arena01.mdl" + "skin" "0" + "angles_x" "0" + "angles_y" "180" + "angles_z" "0" + "origin_x" "290" + "origin_x_hidef" "305" + "origin_x_lodef" "320" + "origin_y" "0" + "origin_z" "-34" + } + } + + + + "ShadedBar" + { + "ControlName" "ImagePanel" + "fieldName" "ShadedBar" + "xpos" "0" + "ypos" "r50" + "ypos_lodef" "r74" + "ypos_hidef" "r65" + "zpos" "5" + "wide" "f0" + "tall" "50" + "tall_lodef" "74" + "tall_hidef" "65" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 180" + "PaintBackgroundType" "0" + } + + "autodoor" + { + "ControlName" "CModelPanel" + "fieldName" "autodoor" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fov" "20" + + "model" + { + "modelname" "models/vgui/ui_arenadoor01.mdl" + "skin" "0" + "angles_x" "0" + "angles_y" "180" + "angles_z" "0" + "origin_x" "290" + "origin_x_lodef" "320" + "origin_x_hidef" "305" + "origin_y" "0" + "origin_z" "-34" + + "animation" + { + "name" "idle_enabled" + "sequence" "idle" + "default" "1" + } + + "animation" + { + "name" "enter_enabled" + "sequence" "hoveropen" + } + + "animation" + { + "name" "exit_enabled" + "sequence" "hoverclose" + } + } + } + + "spectate" + { + "ControlName" "CModelPanel" + "fieldName" "spectate" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fov" "20" + + "model" + { + "modelname" "models/vgui/UI_team01_spectate.mdl" + "skin" "0" + "angles_x" "0" + "angles_y" "180" + "angles_z" "0" + "origin_x" "290" + "origin_x_lodef" "320" + "origin_x_hidef" "305" + "origin_y" "0" + "origin_z" "-34" + + "animation" + { + "name" "idle_enabled" + "sequence" "idle" + "default" "1" + } + + "animation" + { + "name" "enter_enabled" + "sequence" "hover" + } + + "animation" + { + "name" "exit_enabled" + "sequence" "idle" + } + } + } + + "Footer" [$X360] + { + "ControlName" "CTFFooter" + "fieldName" "Footer" + "zpos" "6" + "tall" "80" + "button_separator" "10" + "button_separator_lodef" "5" + "buttongap" "50" + "buttongap_hidef" "35" + "buttongap_lodef" "18" + "textadjust" "3" + "textadjust_lodef" "0" + "buttonoffsety" "20" + "buttonoffsety_hidef" "0" + "buttonoffsety_lodef" "18" + "center" "0" + "button_pin_right_lodef" "55" + "fonttext" "MatchmakingDialogMenuLarge" + "fonttext_lodef" "MatchmakingDialogMenuSmall" + "fgcolor" "HudOffWhite" + + "button" + { + "name" "cancel" + "text" "#GameUI_Cancel" + "icon" "#GameUI_Icons_B_BUTTON" + } + + "button" + { + "name" "nextprev" + "text" "#TF_NextPrev" + "icon" "#GameUI_Icons_DPAD" + } + + "button" + { + "name" "select" + "text" "#GameUI_Select" + "icon" "#GameUI_Icons_A_BUTTON" + } + } +} + diff --git a/biscottihud/resource/ui/hudarenavspanel.res b/biscottihud/resource/ui/hudarenavspanel.res new file mode 100644 index 0000000..0fe652a --- /dev/null +++ b/biscottihud/resource/ui/hudarenavspanel.res @@ -0,0 +1,160 @@ +"Resource/UI/HudArenaVsPanel.res" +{ + "bluepanel" + { + "ControlName" "EditablePanel" + "fieldName" "bluepanel" + "xpos" "c-100" + "ypos" "50" + "zpos" "0" + "wide" "200" + "tall" "50" + "visible" "1" + + "background" + { + "ControlName" "CTFImagePanel" + "fieldName" "background" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "200" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + + "src_corner_height" "15" // pixels inside the image + "src_corner_width" "15" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "58" + "tall" "36" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + + + "teamname" + { + "ControlName" "CExLabel" + "fieldName" "teamname" + "xpos" "30" + "ypos" "0" + "zpos" "1" + "wide" "200" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontMediumBold" + "labelText" "%blueleader%" + "textAlignment" "west" + "fgcolor" "HudOffWhite" + } + } + + "vslabel" + { + "ControlName" "CExLabel" + "fieldName" "vslabel" + "xpos" "c-80" + "ypos" "100" + "zpos" "1" + "wide" "160" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontMedium" + "labelText" "VS" + "textAlignment" "center" + "fgcolor" "HudOffWhite" + } + + "redpanel" + { + "ControlName" "EditablePanel" + "fieldName" "redpanel" + "xpos" "c-100" + "ypos" "140" + "zpos" "0" + "wide" "200" + "tall" "50" + "visible" "1" + + "background" + { + "ControlName" "CTFImagePanel" + "fieldName" "background" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "200" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + + "src_corner_height" "15" // pixels inside the image + "src_corner_width" "15" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "0" + "ypos" "10" + "zpos" "1" + "wide" "58" + "tall" "36" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + + "teamname" + { + "ControlName" "CExLabel" + "fieldName" "teamname" + "xpos" "30" + "ypos" "0" + "zpos" "1" + "wide" "160" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "HudFontMediumBold" + "labelText" "%redleader%" + "textAlignment" "west" + "fgcolor" "HudOffWhite" + } + } +} diff --git a/biscottihud/resource/ui/hudarenawinpanel.res b/biscottihud/resource/ui/hudarenawinpanel.res new file mode 100644 index 0000000..7c88bfd --- /dev/null +++ b/biscottihud/resource/ui/hudarenawinpanel.res @@ -0,0 +1,1198 @@ +#base "hudarenawinpanel_incognito.res" + +"Resource/UI/arenawinpanel.res" +{ + "ArenaWinPanelScores" + { + "ControlName" "EditablePanel" + "fieldName" "ArenaWinPanelScores" + "xpos" "0" + "ypos" "0" + "wide" "480" + "tall" "60" + "visible" "1" + + "BlueScoreBG" + { + "ControlName" "ImagePanel" + "fieldName" "BlueScoreBG" + "xpos" "0" + "ypos" "16" + "wide" "204" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_blu" + } + "RedScoreBG" + { + "ControlName" "ImagePanel" + "fieldName" "RedScoreBG" + "xpos" "204" + "ypos" "16" + "wide" "204" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_red" + } + "BlueTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%blueteamname%" + "textAlignment" "west" + "xpos" "12" + "ypos" "22" + "zpos" "2" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BlueTeamLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamLabelShadow" + "font" "ScoreboardTeamNameMedium" + "labelText" "%blueteamname%" + "textAlignment" "west" + "xpos" "13" + "ypos" "23" + "zpos" "1" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "black" + } + "BlueTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "93" + "ypos" "4" + "zpos" "3" + "wide" "100" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BlueTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "94" + "ypos" "5" + "zpos" "3" + "wide" "100" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RedTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%redteamname%" + "textAlignment" "east" + "xpos" "294" + "ypos" "22" + "zpos" "2" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RedTeamLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamLabelShadow" + "font" "ScoreboardTeamNameMedium" + "labelText" "%redteamname%" + "textAlignment" "east" + "xpos" "295" + "ypos" "23" + "zpos" "1" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "black" + } + "RedTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "215" + "ypos" "4" + "zpos" "3" + "wide" "100" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RedTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "216" + "ypos" "5" + "zpos" "3" + "wide" "100" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + + "ArenaStreaksBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "ArenaStreaksBG" + "xpos" "115" + "ypos" "0" + "zpos" "2" + "wide" "176" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_black" + "scaleImage" "1" + + "src_corner_height" "16" // pixels inside the image + "src_corner_width" "16" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "ArenaStreakLabel" + { + "ControlName" "CExLabel" + "fieldName" "ArenaStreakLabel" + "font" "HudFontSmallest" + "fgcolor" "white" + "xpos" "115" + "ypos" "0" + "zpos" "3" + "wide" "176" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%arenastreaktext%" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + } + + "WinPanelBG" + { + "ControlName" "ImagePanel" + "fieldName" "WinPanelBG" + "xpos" "-225" + "ypos" "11" // -28 + "zpos" "0" + "wide" "900" + "tall" "300" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + "WinningTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "WinningTeamLabel" + "font" "ScoreboardTeamNameSmall" + "xpos" "0" + "ypos" "45" + "zpos" "1" + "wide" "406" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%WinningTeamLabel%" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + "WinningTeamLabelDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "WinningTeamLabelDropshadow" + "font" "ScoreboardTeamNameSmall" + "fgcolor" "black" + "xpos" "1" + "ypos" "46" + "zpos" "1" + "wide" "406" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%WinningTeamLabel%" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + + "LosingTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "WinningTeamLabel" + "font" "ScoreboardTeamNameSmall" + "xpos" "0" + "ypos" "45" + "zpos" "1" + "wide" "406" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%LosingTeamLabel%" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + "LosingTeamLabelDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "WinningTeamLabelDropshadow" + "font" "ScoreboardTeamNameSmall" + "fgcolor" "black" + "xpos" "1" + "ypos" "46" + "zpos" "1" + "wide" "406" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%LosingTeamLabel%" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + "WinReasonLabel" + { + "ControlName" "CExLabel" + "fieldName" "WinReasonLabel" + "font" "ScoreboardVerySmall" + "xpos" "0" + "ypos" "58" + "zpos" "1" + "wide" "406" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%WinReasonLabel%" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + "DetailsLabel" + { + "ControlName" "CExLabel" + "fieldName" "DetailsLabel" + "font" "ScoreboardVerySmall" + "xpos" "0" + "ypos" "66" + "zpos" "1" + "wide" "406" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "labelText" "%DetailsLabel%" + "textAlignment" "Center" + "dulltext" "0" + "brighttext" "0" + } + "ShadedBar" + { + "ControlName" "ImagePanel" + "fieldName" "ShadedBar" + "xpos" "12" + "ypos" "83" + "zpos" "2" + "wide" "382" + "tall" "74" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 150" + "fillcolor_lodef" "0 0 0 200" + "PaintBackgroundType" "0" + } + "TopPlayersLabel" + { + "ControlName" "CExLabel" + "fieldName" "TopPlayerLabel" + "font" "ScoreboardVerySmall" + "xpos" "21" + "ypos" "80" + "zpos" "3" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%TopPlayersLabel%" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "DamageThisRoundLabel" + { + "ControlName" "CExLabel" + "fieldName" "DamageThisRoundLabel" + "font" "ScoreboardVerySmall" + "xpos" "236" + "ypos" "80" + "zpos" "3" + "wide" "50" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_Arena_Winpanel_DamageThisRound" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "HealingThisRoundLabel" + { + "ControlName" "CExLabel" + "fieldName" "PointsThisRoundLabel" + "font" "ScoreboardVerySmall" + "xpos" "286" + "ypos" "80" + "zpos" "3" + "wide" "50" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_Arena_Winpanel_HealingThisRound" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "LifetimeThisRoundLabel" + { + "ControlName" "CExLabel" + "fieldName" "PointsThisRoundLabel" + "font" "ScoreboardVerySmall" + "xpos" "331" + "ypos" "80" + "zpos" "3" + "wide" "50" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_Arena_Winpanel_TimeAliveThisRound" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "KillingBlowsThisRoundLabel" + { + "ControlName" "CExLabel" + "fieldName" "PointsThisRoundLabel" + "font" "ScoreboardVerySmall" + "xpos" "371" + "ypos" "80" + "zpos" "3" + "wide" "50" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_Arena_Winpanel_KillingBlows" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "HorizontalLine" + { + "ControlName" "ImagePanel" + "fieldName" "HorizontalLine" + "xpos" "16" + "ypos" "95" + "zpos" "3" + "wide" "374" + "tall" "1" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "250 234 201 255" + "PaintBackgroundType" "0" + } + + "ArenaWinPanelWinnersPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ArenaWinPanelWinnersPanel" + "xpos" "-4" + "ypos" "-40" + "wide" "500" + "tall" "208" + "visible" "1" + "zpos" "3" + + "Player1Avatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "Player1Avatar" + "xpos" "34" + "ypos" "141" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "Player1Name" + { + "ControlName" "CExLabel" + "fieldName" "Player1Name" + "xpos" "50" + "ypos" "138" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player1Class" + { + "ControlName" "CExLabel" + "fieldName" "Player1Class" + "xpos" "175" + "ypos" "138" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player1Damage" + { + "ControlName" "CExLabel" + "fieldName" "Player1Damage" + "xpos" "241" + "ypos" "138" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player1Healing" + { + "ControlName" "CExLabel" + "fieldName" "Player1Healing" + "xpos" "289" + "ypos" "138" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player1Lifetime" + { + "ControlName" "CExLabel" + "fieldName" "Player1Lifetime" + "xpos" "335" + "ypos" "138" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player1Kills" + { + "ControlName" "CExLabel" + "fieldName" "Player1Kills" + "xpos" "362" + "ypos" "138" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player2Avatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "Player2Avatar" + "xpos" "34" + "ypos" "158" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "Player2Name" + { + "ControlName" "CExLabel" + "fieldName" "Player2Name" + "xpos" "50" + "ypos" "155" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player2Class" + { + "ControlName" "CExLabel" + "fieldName" "Player2Class" + "xpos" "175" + "ypos" "155" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player2Damage" + { + "ControlName" "CExLabel" + "fieldName" "Player2Damage" + "xpos" "241" + "ypos" "155" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player2Healing" + { + "ControlName" "CExLabel" + "fieldName" "Player2Healing" + "xpos" "289" + "ypos" "155" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player2Lifetime" + { + "ControlName" "CExLabel" + "fieldName" "Player2Lifetime" + "xpos" "335" + "ypos" "155" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player2Kills" + { + "ControlName" "CExLabel" + "fieldName" "Player2Kills" + "xpos" "362" + "ypos" "155" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player3Avatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "Player3Avatar" + "xpos" "34" + "ypos" "175" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "Player3Name" + { + "ControlName" "CExLabel" + "fieldName" "Player3Name" + "xpos" "50" + "ypos" "172" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player3Class" + { + "ControlName" "CExLabel" + "fieldName" "Player3Class" + "xpos" "175" + "ypos" "172" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player3Damage" + { + "ControlName" "CExLabel" + "fieldName" "Player3Damage" + "xpos" "241" + "ypos" "172" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player3Healing" + { + "ControlName" "CExLabel" + "fieldName" "Player3Healing" + "xpos" "289" + "ypos" "172" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player3Lifetime" + { + "ControlName" "CExLabel" + "fieldName" "Player3Lifetime" + "xpos" "335" + "ypos" "172" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player3Kills" + { + "ControlName" "CExLabel" + "fieldName" "Player3Kills" + "xpos" "362" + "ypos" "172" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + } + "ArenaWinPanelLosersPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ArenaWinPanelLosersPanel" + "xpos" "-4" + "ypos" "-40" + "wide" "500" + "tall" "208" + "visible" "1" + "zpos" "3" + + "Player1Avatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "Player1Avatar" + "xpos" "34" + "ypos" "141" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "Player1Name" + { + "ControlName" "CExLabel" + "fieldName" "Player1Name" + "xpos" "50" + "ypos" "138" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player1Class" + { + "ControlName" "CExLabel" + "fieldName" "Player1Class" + "xpos" "175" + "ypos" "138" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player1Damage" + { + "ControlName" "CExLabel" + "fieldName" "Player1Damage" + "xpos" "241" + "ypos" "138" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player1Healing" + { + "ControlName" "CExLabel" + "fieldName" "Player1Healing" + "xpos" "289" + "ypos" "138" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player1Lifetime" + { + "ControlName" "CExLabel" + "fieldName" "Player1Lifetime" + "xpos" "335" + "ypos" "138" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player1Kills" + { + "ControlName" "CExLabel" + "fieldName" "Player1Kills" + "xpos" "362" + "ypos" "138" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player2Avatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "Player2Avatar" + "xpos" "34" + "ypos" "158" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "Player2Name" + { + "ControlName" "CExLabel" + "fieldName" "Player2Name" + "xpos" "50" + "ypos" "155" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player2Class" + { + "ControlName" "CExLabel" + "fieldName" "Player2Class" + "xpos" "175" + "ypos" "155" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player2Damage" + { + "ControlName" "CExLabel" + "fieldName" "Player2Damage" + "xpos" "241" + "ypos" "155" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player2Healing" + { + "ControlName" "CExLabel" + "fieldName" "Player2Healing" + "xpos" "289" + "ypos" "155" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player2Lifetime" + { + "ControlName" "CExLabel" + "fieldName" "Player2Lifetime" + "xpos" "335" + "ypos" "155" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player2Kills" + { + "ControlName" "CExLabel" + "fieldName" "Player2Kills" + "xpos" "362" + "ypos" "155" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player3Avatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "Player3Avatar" + "xpos" "34" + "ypos" "175" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "Player3Name" + { + "ControlName" "CExLabel" + "fieldName" "Player3Name" + "xpos" "50" + "ypos" "172" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player3Class" + { + "ControlName" "CExLabel" + "fieldName" "Player3Class" + "xpos" "175" + "ypos" "172" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "Player3Damage" + { + "ControlName" "CExLabel" + "fieldName" "Player3Damage" + "xpos" "241" + "ypos" "172" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player3Healing" + { + "ControlName" "CExLabel" + "fieldName" "Player3Healing" + "xpos" "289" + "ypos" "172" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player3Lifetime" + { + "ControlName" "CExLabel" + "fieldName" "Player3Lifetime" + "xpos" "335" + "ypos" "172" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + "Player3Kills" + { + "ControlName" "CExLabel" + "fieldName" "Player3Kills" + "xpos" "362" + "ypos" "172" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + } +} diff --git a/biscottihud/resource/ui/hudarenawinpanel_incognito.res b/biscottihud/resource/ui/hudarenawinpanel_incognito.res new file mode 100644 index 0000000..d235bf1 --- /dev/null +++ b/biscottihud/resource/ui/hudarenawinpanel_incognito.res @@ -0,0 +1,61 @@ +"Resource/UI/arenawinpanel.res" +{ + "DetailsLabel" + { + "visible" "1" + } + "ArenaWinPanelWinnersPanel" + { + "Player1Avatar" + { + "wide" "14" + } + "Player1Name" + { + "wide" "118" + } + "Player2Avatar" + { + "wide" "14" + } + "Player2Name" + { + "wide" "118" + } + "Player3Avatar" + { + "wide" "14" + } + "Player3Name" + { + "wide" "118" + } + } + "ArenaWinPanelLosersPanel" + { + "Player1Avatar" + { + "wide" "14" + } + "Player1Name" + { + "wide" "118" + } + "Player2Avatar" + { + "wide" "14" + } + "Player2Name" + { + "wide" "118" + } + "Player3Avatar" + { + "wide" "14" + } + "Player3Name" + { + "wide" "118" + } + } +} diff --git a/biscottihud/resource/ui/hudcurrencyaccount.res b/biscottihud/resource/ui/hudcurrencyaccount.res new file mode 100644 index 0000000..96d961a --- /dev/null +++ b/biscottihud/resource/ui/hudcurrencyaccount.res @@ -0,0 +1,66 @@ +"Resource/UI/HudCurrencyAccount.res" +{ + "Currency" + { + "ControlName" "CExLabel" + "fieldName" "Currency" + "font" "HudFontSmallBold" + "fgcolor" "TanLight" + "xpos" "11" + "ypos" "57" + "zpos" "3" + "wide" "90" + "tall" "45" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%currency%" + } + + "CurrencyShadow" + { + "ControlName" "CExLabel" + "fieldName" "CurrencyShadow" + "font" "HudFontSmallBold" + "fgcolor" "Black" + "xpos" "12" + "ypos" "58" + "zpos" "3" + "wide" "90" + "tall" "45" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%currency%" + } + + "WhiteBG" + { + "ControlName" "EditablePanel" + "fieldName" "WhiteBG" + "xpos" "26" + "ypos" "71" + "zpos" "1" + "wide" "60" + "tall" "18" + "visible" "0" + "enabled" "1" + "PaintBackgroundType" "0" + "bgcolor_override" "TanLight" + } + + "GreenBG" + { + "ControlName" "EditablePanel" + "fieldName" "GreenBG" + "xpos" "27" + "ypos" "72" + "zpos" "2" + "wide" "58" + "tall" "16" + "visible" "1" + "enabled" "1" + "PaintBackgroundType" "0" + "bgcolor_override" "CreditsGreen" + } +} \ No newline at end of file diff --git a/biscottihud/resource/ui/huddamageaccount.res b/biscottihud/resource/ui/huddamageaccount.res new file mode 100644 index 0000000..2d0e1fd --- /dev/null +++ b/biscottihud/resource/ui/huddamageaccount.res @@ -0,0 +1,53 @@ +"Resource/UI/HudDamageAccount.res" +{ + "CDamageAccountPanel" + { + "fieldName" "CDamageAccountPanel" + "text_x" "0" + "text_y" "0" + "delta_item_end_y" "0" + "PositiveColor" "0 255 0 255" + "NegativeColor" "255 255 0 255" + "delta_lifetime" "1.5" + "delta_item_font" "HudFontSmall" + "delta_item_font_big" "HudFontMedium" + } + + "CDamageAccountValue" + { + "ControlName" "CExLabel" + "fieldName" "CDamageAccountValue" + "fgcolor" "255 255 0 255" + "font" "HudFontBiggerBold" + "xpos" "95" + "xpos_minmode" "75" + "ypos" "r90" + "ypos_minmode" "r70" + "zpos" "2" + "wide" "100" + "tall" "26" + "visible" "1" + "enabled" "1" + "labelText" "%metal%" + "textAlignment" "left" + } + + "CDamageAccountValueShadow" + { + "ControlName" "CExLabel" + "fieldName" "CDamageAccountValueShadow" + "fgcolor" "Black" + "font" "HudFontBiggerBold" + "xpos" "96" + "xpos_minmode" "76" + "ypos" "r89" + "ypos_minmode" "r69" + "zpos" "1" + "wide" "100" + "tall" "26" + "visible" "1" + "enabled" "1" + "labelText" "%metal%" + "textAlignment" "left" + } +} diff --git a/biscottihud/resource/ui/huddemomancharge.res b/biscottihud/resource/ui/huddemomancharge.res new file mode 100644 index 0000000..1562f92 --- /dev/null +++ b/biscottihud/resource/ui/huddemomancharge.res @@ -0,0 +1,24 @@ +#base "huddemomancharge_size.res" + +"Resource/UI/HudDemomanCharge.res" +{ + "ChargeMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ChargeMeter" + "font" "Default" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "labeltext" "" + + "MeterFG" "White" + "MeterBG" "Gray" + } +} diff --git a/biscottihud/resource/ui/huddemomancharge_size.res b/biscottihud/resource/ui/huddemomancharge_size.res new file mode 100644 index 0000000..f42bc5a --- /dev/null +++ b/biscottihud/resource/ui/huddemomancharge_size.res @@ -0,0 +1,9 @@ +"Resource/UI/HudDemomanCharge.res" +{ + ChargeMeter + { + "xpos" "40" + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/huddemomanpipes.res b/biscottihud/resource/ui/huddemomanpipes.res new file mode 100644 index 0000000..0e0d7ae --- /dev/null +++ b/biscottihud/resource/ui/huddemomanpipes.res @@ -0,0 +1,351 @@ +#base "huddemomanpipes_label1.res" +#base "huddemomanpipes_label2.res" +#base "huddemomanpipes_label3.res" +#base "huddemomanpipes_positioning.res" +#base "huddemomanpipes_size.res" + +"Resource/UI/HudDemomanPipes.res" +{ + "background" + { + "ControlName" "CTFImagePanel" + "fieldName" "background" + "xpos" "12" + "ypos" "6" + "zpos" "0" + "wide" "76" + "wide_minmode" "56" + "tall" "38" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ChargeLabel" + { + "ControlName" "CExLabel" + "fieldName" "ChargeLabel" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Charge" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ChargeMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ChargeMeter" + "font" "Default" + "ypos" "146" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "PipesPresentPanel" + { + "ControlName" "EditablePanel" + "fieldName" "PipesPresentPanel" + "xpos" "60" + "ypos" "0" + "zpos" "1" + "wide" "230" + "tall" "160" + "visible" "1" + + "PipeIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "PipeIcon" + "wide" "14" + "tall" "14" + "enabled" "1" + "image" "../hud/ico_stickybomb_red" + "scaleImage" "1" + "teambg_2" "../hud/ico_stickybomb_red" + "teambg_3" "../hud/ico_stickybomb_blue" + } + + "NumPipesLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel" + "zpos" "2" + "wide" "35" + "tall" "20" + "tall_lodef" "28" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontSmall" + "font_lodef" "HudFontMediumBig" + } + "NumPipesLabelDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabelDropshadow" + "zpos" "2" + "wide" "35" + "tall" "20" + "tall_lodef" "28" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontSmall" + "font_lodef" "HudFontMediumBig" + "fgcolor" "Black" + } + "NumPipesLabel2" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel2" + "xpos" "0" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "center" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "TanLight" + } + "NumPipesLabel2Shadow" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel2Shadow" + "xpos" "1" + "ypos" "11" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "center" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "Black" + } + "NumPipesLabel3" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel3" + "xpos" "0" + "ypos" "128" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "center" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "TanLight" + } + "NumPipesLabel3Shadow" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel3Shadow" + "xpos" "1" + "ypos" "129" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "center" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "Black" + } + } + + "NoPipesPresentPanel" + { + "ControlName" "EditablePanel" + "fieldName" "NoPipesPresentPanel" + "xpos" "60" + "ypos" "0" + "zpos" "1" + "wide" "230" + "tall" "160" + "visible" "1" + + "PipeIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "PipeIcon" + "wide" "14" + "tall" "14" + "enabled" "1" + "image" "../hud/ico_stickybomb_red_faded" + "scaleImage" "1" + "teambg_2" "../hud/ico_stickybomb_red_faded" + "teambg_3" "../hud/ico_stickybomb_blue_faded" + } + + "NumPipesLabel" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel" + "zpos" "2" + "wide" "35" + "tall" "20" + "tall_lodef" "28" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "font_lodef" "HudFontMediumBig" + } + "NumPipesLabelDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabelDropshadow" + "zpos" "2" + "wide" "35" + "tall" "20" + "tall_lodef" "28" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "font_lodef" "HudFontMediumBig" + "fgcolor" "Black" + } + "NumPipesLabel2" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel2" + "xpos" "0" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "center" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "TanLight" + } + "NumPipesLabel2Shadow" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel2Shadow" + "xpos" "1" + "ypos" "11" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "center" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "Black" + } + "NumPipesLabel3" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel3" + "xpos" "0" + "ypos" "128" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "center" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "TanLight" + } + "NumPipesLabel3Shadow" + { + "ControlName" "CExLabel" + "fieldName" "NumPipesLabel3Shadow" + "xpos" "1" + "ypos" "129" + "zpos" "2" + "wide" "40" + "tall" "10" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "%activepipes%" + "textAlignment" "center" + "dulltext" "1" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "Black" + } + } +} diff --git a/biscottihud/resource/ui/huddemomanpipes_label1.res b/biscottihud/resource/ui/huddemomanpipes_label1.res new file mode 100644 index 0000000..b5300e9 --- /dev/null +++ b/biscottihud/resource/ui/huddemomanpipes_label1.res @@ -0,0 +1,33 @@ +"Resource/UI/HudDemomanPipes.res" +{ + "PipesPresentPanel" + { + "PipeIcon" + { + "visible" "1" + } + "NumPipesLabel" + { + "visible" "1" + } + "NumPipesLabelDropshadow" + { + "visible" "1" + } + } + "NoPipesPresentPanel" + { + "PipeIcon" + { + "visible" "1" + } + "NumPipesLabel" + { + "visible" "1" + } + "NumPipesLabelDropshadow" + { + "visible" "1" + } + } +} diff --git a/biscottihud/resource/ui/huddemomanpipes_label2.res b/biscottihud/resource/ui/huddemomanpipes_label2.res new file mode 100644 index 0000000..fbbe84e --- /dev/null +++ b/biscottihud/resource/ui/huddemomanpipes_label2.res @@ -0,0 +1,25 @@ +"Resource/UI/HudDemomanPipes.res" +{ + "PipesPresentPanel" + { + "NumPipesLabel2" + { + "visible" "1" + } + "NumPipesLabel2Shadow" + { + "visible" "1" + } + } + "NoPipesPresentPanel" + { + "NumPipesLabel2" + { + "visible" "0" + } + "NumPipesLabel2Shadow" + { + "visible" "0" + } + } +} diff --git a/biscottihud/resource/ui/huddemomanpipes_label3.res b/biscottihud/resource/ui/huddemomanpipes_label3.res new file mode 100644 index 0000000..281272c --- /dev/null +++ b/biscottihud/resource/ui/huddemomanpipes_label3.res @@ -0,0 +1,25 @@ +"Resource/UI/HudDemomanPipes.res" +{ + "PipesPresentPanel" + { + "NumPipesLabel3" + { + "visible" "0" + } + "NumPipesLabel3Shadow" + { + "visible" "0" + } + } + "NoPipesPresentPanel" + { + "NumPipesLabel3" + { + "visible" "0" + } + "NumPipesLabel3Shadow" + { + "visible" "0" + } + } +} diff --git a/biscottihud/resource/ui/huddemomanpipes_positioning.res b/biscottihud/resource/ui/huddemomanpipes_positioning.res new file mode 100644 index 0000000..c5ec415 --- /dev/null +++ b/biscottihud/resource/ui/huddemomanpipes_positioning.res @@ -0,0 +1,39 @@ +"Resource/UI/HudDemomanPipes.res" +{ + "PipesPresentPanel" + { + "PipeIcon" + { + "xpos" "159" + "ypos" "102" + } + "NumPipesLabel" + { + "xpos" "175" + "ypos" "102" + } + "NumPipesLabelDropshadow" + { + "xpos" "176" + "ypos" "103" + } + } + "NoPipesPresentPanel" + { + "PipeIcon" + { + "xpos" "159" + "ypos" "102" + } + "NumPipesLabel" + { + "xpos" "175" + "ypos" "102" + } + "NumPipesLabelDropshadow" + { + "xpos" "176" + "ypos" "103" + } + } +} diff --git a/biscottihud/resource/ui/huddemomanpipes_size.res b/biscottihud/resource/ui/huddemomanpipes_size.res new file mode 100644 index 0000000..3685c10 --- /dev/null +++ b/biscottihud/resource/ui/huddemomanpipes_size.res @@ -0,0 +1,17 @@ +"Resource/UI/HudDemomanPipes.res" +{ + "ChargeLabel" + { + "xpos" "40" + "ypos" "141" + "wide" "80" + "tall" "15" + "visible" "1" + } + "ChargeMeter" + { + "xpos" "40" + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/hudhealthaccount.res b/biscottihud/resource/ui/hudhealthaccount.res new file mode 100644 index 0000000..f327e09 --- /dev/null +++ b/biscottihud/resource/ui/hudhealthaccount.res @@ -0,0 +1,52 @@ +"Resource/UI/HudHealthAccount.res" +{ + "CHealthAccountPanel" + { + "fieldName" "CHealthAccountPanel" + "delta_item_x" "0" + "delta_item_start_y" "0" + "delta_item_end_y" "0" + "PositiveColor" "0 255 0 255" + "NegativeColor" "255 0 0 255" + "delta_lifetime" "1.5" + "delta_item_font" "HudFontMedium" // HudFontMedium // HudFontMediumShadow + } + + "CHealthAccountValue" + { + "ControlName" "CExLabel" + "fieldName" "CHealthAccountValue" + "fgcolor" "0 255 0 255" + "font" "HudFontBiggerBold" + "xpos" "0" + "xpos_minmode" "0" + "ypos" "0" + "ypos_minmode" "-14" + "zpos" "2" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "labelText" "%metal%" + "textAlignment" "left" + } + + "CHealthAccountValueShadow" + { + "ControlName" "CExLabel" + "fieldName" "CHealthAccountValueShadow" + "fgcolor" "Black" + "font" "HudFontBiggerBold" + "xpos" "1" + "xpos_minmode" "1" + "ypos" "1" + "ypos_minmode" "-13" + "zpos" "1" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "labelText" "%metal%" + "textAlignment" "left" + } +} diff --git a/biscottihud/resource/ui/hudinspectpanel.res b/biscottihud/resource/ui/hudinspectpanel.res new file mode 100644 index 0000000..3356a6b --- /dev/null +++ b/biscottihud/resource/ui/hudinspectpanel.res @@ -0,0 +1,73 @@ +#base "hudinspectpanel_incognito.res" + +"Resource/UI/HudInspectPanel.res" +{ + "itempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "itempanel" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "190" + "tall" "100" + "visible" "0" + "bgcolor_override" "255 255 255 0" + "PaintBackgroundType" "0" + "PaintBorder" "0" + + "model_ypos" "10" + "model_center_x" "1" + "model_wide" "90" + "model_tall" "60" + + "text_xpos" "10" + "text_ypos" "10" + "text_wide" "170" + "text_center" "1" + + "max_text_height" "100" + "padding_height" "10" + "resize_to_text" "1" + "text_forcesize" "2" + + "itempanelBG" + { "controlname" "imagepanel" + "fieldname" "itempanelBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enable" "1" + "fillcolor" "bBlackBG" + } + + "itemmodelpanel" + { + "fieldName" "itemmodelpanel" + "use_item_rendertarget" "0" + "useparentbg" "1" + } + + "ItemLabel" + { + "ControlName" "Label" + "fieldName" "ItemLabel" + "font" "DefaultSmall" + "xpos" "10" + "ypos" "3" + "zpos" "1" + "wide" "270" + "tall" "9" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "labelText" "#FreezePanel_Item" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } +} diff --git a/biscottihud/resource/ui/hudinspectpanel_incognito.res b/biscottihud/resource/ui/hudinspectpanel_incognito.res new file mode 100644 index 0000000..3ee2adc --- /dev/null +++ b/biscottihud/resource/ui/hudinspectpanel_incognito.res @@ -0,0 +1,10 @@ +"Resource/UI/HudInspectPanel.res" +{ + "itempanel" + { + "ItemLabel" + { + "visible" "1" + } + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter.res b/biscottihud/resource/ui/huditemeffectmeter.res new file mode 100644 index 0000000..1fc3c19 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter.res @@ -0,0 +1,71 @@ +#base "huditemeffectmeter_size.res" + +"Resource/UI/HudItemEffectMeter.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c146" [$WIN32] + "xpos" "r194" [$X360] + "ypos" "r74" [$X360] + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "6" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz1_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz1_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz1_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Ball" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_action.res b/biscottihud/resource/ui/huditemeffectmeter_action.res new file mode 100644 index 0000000..144153d --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_action.res @@ -0,0 +1,8 @@ +"Resource/UI/HudItemEffectMeter_Action.res" +{ + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_cleaver.res b/biscottihud/resource/ui/huditemeffectmeter_cleaver.res new file mode 100644 index 0000000..1a59527 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_cleaver.res @@ -0,0 +1,69 @@ +#base "huditemeffectmeter_cleaver_size.res" + +"Resource/UI/HudItemEffectMeter_Cleaver.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c138" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz2_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz2_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz2_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "Label" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Cleaver" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_cleaver_size.res b/biscottihud/resource/ui/huditemeffectmeter_cleaver_size.res new file mode 100644 index 0000000..815ad68 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_cleaver_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudItemEffectMeter_Cleaver.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "80" + "tall" "15" + "visible" "1" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_demoman.res b/biscottihud/resource/ui/huditemeffectmeter_demoman.res new file mode 100644 index 0000000..9c29e60 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_demoman.res @@ -0,0 +1,113 @@ +#base "huditemeffectmeter_demoman_positioning.res" + +"Resource/UI/HudItemEffectMeter_Demoman.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "wide" "100" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "26" + "ypos" "7" + "zpos" "0" + "wide" "36" + "tall" "28" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "26" + "ypos" "27" + "zpos" "2" + "wide" "36" + "tall" "15" + "autoResize" "1" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Ball" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "25" + "ypos" "23" + "ypos_minmode" "0" + "xpos_minmode" "0" + "zpos" "2" + "wide" "40" + "wide_minmode" "50" + "tall" "6" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterCount" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCount" + "xpos" "25" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + } + + "ItemEffectMeterCountShadow" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCountShadow" + "xpos" "26" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + "fgcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_demoman_positioning.res b/biscottihud/resource/ui/huditemeffectmeter_demoman_positioning.res new file mode 100644 index 0000000..ecb7612 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_demoman_positioning.res @@ -0,0 +1,8 @@ +"Resource/UI/HudItemEffectMeter_Demoman.res" +{ + HudItemEffectMeter + { + "xpos" "c67" [$WIN32] + "ypos" "c111" [$WIN32] + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_engineer.res b/biscottihud/resource/ui/huditemeffectmeter_engineer.res new file mode 100644 index 0000000..590fc4a --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_engineer.res @@ -0,0 +1,113 @@ +#base "huditemeffectmeter_engineer_positioning.res" + +"Resource/UI/HudItemEffectMeter_Engineer.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "wide" "100" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "26" + "ypos" "7" + "zpos" "0" + "wide" "36" + "tall" "28" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "26" + "ypos" "27" + "zpos" "2" + "wide" "36" + "tall" "15" + "autoResize" "1" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Ball" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "ypos_minmode" "0" + "xpos_minmode" "0" + "zpos" "2" + "wide" "40" + "wide_minmode" "50" + "tall" "6" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterCount" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCount" + "xpos" "25" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + } + + "ItemEffectMeterCountShadow" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCountShadow" + "xpos" "26" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + "fgcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_engineer_positioning.res b/biscottihud/resource/ui/huditemeffectmeter_engineer_positioning.res new file mode 100644 index 0000000..0dfec4e --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_engineer_positioning.res @@ -0,0 +1,8 @@ +"Resource/UI/HudItemEffectMeter_Engineer.res" +{ + HudItemEffectMeter + { + "xpos" "c67" [$WIN32] + "ypos" "c111" [$WIN32] + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_heavy.res b/biscottihud/resource/ui/huditemeffectmeter_heavy.res new file mode 100644 index 0000000..4d767f6 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_heavy.res @@ -0,0 +1,136 @@ +#base "huditemeffectmeter_heavy_size.res" + +"Resource/UI/HudItemEffectMeter_Scout.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c138" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz2_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz2_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz2_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ENERGYDRINK" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterLabel2" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel2" + "xpos" "40" + "ypos" "31" + "zpos" "2" + "wide" "41" + "tall" "15" + "autoResize" "1" + "pinCorner" "2" + "visible" "0" + "visible_minmode" "0" + "ypos_minmode" "0" + "xpos_minmode" "-10" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_KILLCOMBO" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmall" + } + + "KillComboClassIcon1" + { + "ControlName" "ImagePanel" + "fieldName" "KillComboClassIcon1" + "xpos" "40" + "ypos" "23" + "wide" "12" + "tall" "12" + "visible" "0" + "visible_minmode" "0" + "enabled" "1" + "image" "../HUD/leaderboard_class_scout" + "scaleImage" "1" + } + "KillComboClassIcon2" + { + "ControlName" "ImagePanel" + "fieldName" "KillComboClassIcon2" + "xpos" "52" + "ypos" "23" + "wide" "12" + "tall" "12" + "visible" "0" + "visible_minmode" "0" + "enabled" "1" + "image" "../HUD/leaderboard_class_scout" + "scaleImage" "1" + } + "KillComboClassIcon3" + { + "ControlName" "ImagePanel" + "fieldName" "KillComboClassIcon3" + "xpos" "64" + "ypos" "23" + "wide" "12" + "tall" "12" + "visible" "0" + "visible_minmode" "0" + "enabled" "1" + "image" "../HUD/leaderboard_class_scout" + "scaleImage" "1" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_heavy_size.res b/biscottihud/resource/ui/huditemeffectmeter_heavy_size.res new file mode 100644 index 0000000..757668d --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_heavy_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudItemEffectMeter_Scout.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "80" + "tall" "15" + "visible" "1" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_kartcharge.res b/biscottihud/resource/ui/huditemeffectmeter_kartcharge.res new file mode 100644 index 0000000..da7cf5c --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_kartcharge.res @@ -0,0 +1,89 @@ +#base "huditemeffectmeter_kartcharge_size.res" + +"Resource/UI/HudItemEffectMeter_Scout.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c154" [$WIN32] + "tall" "100" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "-30" + "ypos" "28" + "zpos" "0" + "wide" "150" + "tall" "75" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz2_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz2_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz2_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "textAlignment" "center" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_KART" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterCount" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCount" + "xpos" "0" + "ypos" "2" + "zpos" "2" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmall" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_kartcharge_size.res b/biscottihud/resource/ui/huditemeffectmeter_kartcharge_size.res new file mode 100644 index 0000000..f067ca5 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_kartcharge_size.res @@ -0,0 +1,24 @@ +"Resource/UI/HudItemEffectMeter_Scout.res" +{ + HudItemEffectMeter + { + "xpos" "c-50" [$WIN32] + "wide" "100" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "100" + "tall" "15" + "visible" "1" + } + "ItemEffectMeter" + { + "wide" "100" + "tall" "5" + } + "ItemEffectMeterCount" + { + "wide" "100" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_killstreak.res b/biscottihud/resource/ui/huditemeffectmeter_killstreak.res new file mode 100644 index 0000000..76c3b83 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_killstreak.res @@ -0,0 +1,108 @@ +"Resource/UI/HudItemEffectMeter_Demoman.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "xpos" "81" [$WIN32] + "ypos" "r40" [$WIN32] + "xpos_minmode" "70" [$WIN32] + "wide" "100" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "29" + "ypos" "18" + "zpos" "0" + "wide" "32" + "tall" "23" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "25" + "ypos" "27" + "zpos" "2" + "wide" "41" + "tall" "15" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_KillStreak" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmall" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "25" + "ypos" "23" + "ypos_minmode" "0" + "xpos_minmode" "0" + "zpos" "2" + "wide" "40" + "wide_minmode" "50" + "tall" "6" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterCount" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCount" + "xpos" "32" // 25 is centered + "ypos" "18" + "zpos" "2" + "wide" "32" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontSmall" + } + + "KillStreakIcon" + { + "ControlName" "ImagePanel" + "fieldName" "KillStreakIcon" + "xpos" "30" + "ypos" "19" + "zpos" "12" + "wide" "10" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "../hud/leaderboard_streak" + "scaleImage" "1" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_organs.res b/biscottihud/resource/ui/huditemeffectmeter_organs.res new file mode 100644 index 0000000..4557f1c --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_organs.res @@ -0,0 +1,112 @@ +#base "huditemeffectmeter_organs_positioning.res" + +"Resource/UI/HudItemEffectMeter_Scout.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "wide" "100" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "26" + "ypos" "7" + "zpos" "0" + "wide" "36" + "tall" "28" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "26" + "ypos" "27" + "zpos" "2" + "wide" "36" + "tall" "15" + "autoResize" "1" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "45" + "ypos" "23" + "ypos_minmode" "0" + "xpos_minmode" "0" + "zpos" "2" + "wide" "30" + "wide_minmode" "50" + "tall" "5" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterCount" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCount" + "xpos" "25" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + } + + "ItemEffectMeterCountShadow" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCountShadow" + "xpos" "26" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + "fgcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_organs_positioning.res b/biscottihud/resource/ui/huditemeffectmeter_organs_positioning.res new file mode 100644 index 0000000..4e05384 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_organs_positioning.res @@ -0,0 +1,8 @@ +"Resource/UI/HudItemEffectMeter_Scout.res" +{ + HudItemEffectMeter + { + "xpos" "c67" [$WIN32] + "ypos" "c111" [$WIN32] + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_particlecannon.res b/biscottihud/resource/ui/huditemeffectmeter_particlecannon.res new file mode 100644 index 0000000..6514b95 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_particlecannon.res @@ -0,0 +1,100 @@ +#base "huditemeffectmeter_particlecannon_style.res" + +"Resource/UI/HudItemEffectMeter_ParticleCannon.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "xpos" "r194" [$X360] + "ypos" "r124" [$X360] + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz2_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz2_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz2_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "3" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ENERGYDRINK" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterMark25" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark25" + "ypos" "0" + "zpos" "3" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterMark50" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark50" + "ypos" "0" + "zpos" "3" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterMark75" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark75" + "ypos" "0" + "zpos" "3" + "enabled" "1" + "fillcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_particlecannon_ammo.res b/biscottihud/resource/ui/huditemeffectmeter_particlecannon_ammo.res new file mode 100644 index 0000000..6034417 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_particlecannon_ammo.res @@ -0,0 +1,42 @@ +"Resource/UI/HudItemEffectMeter_ParticleCannon.res" +{ + HudItemEffectMeter + { + "xpos" "c54" [$WIN32] + "ypos" "c131" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-4" + "wide" "80" + "tall" "15" + "visible" "0" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "8" + } + "ItemEffectMeterMark25" + { + "xpos" "17" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark50" + { + "xpos" "38" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark75" + { + "xpos" "59" + "wide" "4" + "tall" "8" + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_particlecannon_centered.res b/biscottihud/resource/ui/huditemeffectmeter_particlecannon_centered.res new file mode 100644 index 0000000..eb15029 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_particlecannon_centered.res @@ -0,0 +1,42 @@ +"Resource/UI/HudItemEffectMeter_ParticleCannon.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" [$WIN32] + "ypos" "c133" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-4" + "wide" "80" + "tall" "15" + "visible" "0" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "8" + } + "ItemEffectMeterMark25" + { + "xpos" "17" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark50" + { + "xpos" "38" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark75" + { + "xpos" "59" + "wide" "4" + "tall" "8" + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_particlecannon_style.res b/biscottihud/resource/ui/huditemeffectmeter_particlecannon_style.res new file mode 100644 index 0000000..1fcf6f0 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_particlecannon_style.res @@ -0,0 +1 @@ +#base "huditemeffectmeter_particlecannon_ammo.res" diff --git a/biscottihud/resource/ui/huditemeffectmeter_pomson.res b/biscottihud/resource/ui/huditemeffectmeter_pomson.res new file mode 100644 index 0000000..ebaf901 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_pomson.res @@ -0,0 +1,100 @@ +#base "huditemeffectmeter_pomson_style.res" + +"Resource/UI/HudItemEffectMeter_Pomson.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "xpos" "r194" [$X360] + "ypos" "r124" [$X360] + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz2_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz2_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz2_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "3" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ENERGYDRINK" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterMark25" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark25" + "ypos" "0" + "zpos" "3" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterMark50" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark50" + "ypos" "0" + "zpos" "3" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterMark75" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark75" + "ypos" "0" + "zpos" "3" + "enabled" "1" + "fillcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_pomson_ammo.res b/biscottihud/resource/ui/huditemeffectmeter_pomson_ammo.res new file mode 100644 index 0000000..c6a920e --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_pomson_ammo.res @@ -0,0 +1,42 @@ +"Resource/UI/HudItemEffectMeter_Pomson.res" +{ + HudItemEffectMeter + { + "xpos" "c54" [$WIN32] + "ypos" "c131" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-4" + "wide" "80" + "tall" "15" + "visible" "0" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "8" + } + "ItemEffectMeterMark25" + { + "xpos" "17" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark50" + { + "xpos" "38" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark75" + { + "xpos" "59" + "wide" "4" + "tall" "8" + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_pomson_centered.res b/biscottihud/resource/ui/huditemeffectmeter_pomson_centered.res new file mode 100644 index 0000000..d2f8830 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_pomson_centered.res @@ -0,0 +1,42 @@ +"Resource/UI/HudItemEffectMeter_Pomson.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" [$WIN32] + "ypos" "c106" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-4" + "wide" "80" + "tall" "15" + "visible" "0" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "8" + } + "ItemEffectMeterMark25" + { + "xpos" "17" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark50" + { + "xpos" "38" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark75" + { + "xpos" "59" + "wide" "4" + "tall" "8" + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_pomson_style.res b/biscottihud/resource/ui/huditemeffectmeter_pomson_style.res new file mode 100644 index 0000000..980226a --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_pomson_style.res @@ -0,0 +1 @@ +#base "huditemeffectmeter_pomson_ammo.res" diff --git a/biscottihud/resource/ui/huditemeffectmeter_powerupbottle.res b/biscottihud/resource/ui/huditemeffectmeter_powerupbottle.res new file mode 100644 index 0000000..6274725 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_powerupbottle.res @@ -0,0 +1,119 @@ +"Resource/UI/HudItemEffectMeter_PowerupBottles.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "xpos" "r86" [$WIN32] + "ypos" "r102" [$WIN32] + "xpos_minmode" "r70" [$WIN32] + "ypos_minmode" "r130" [$WIN32] + "wide" "100" + "tall" "60" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "90" + "tall" "56" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectIcon" + "xpos" "12" + "xpos_minmode" "36" + "ypos" "7" + "ypos_minmode" "14" + "zpos" "1" + "wide" "27" + "wide_minmode" "20" + "tall" "27" + "tall_minmode" "20" + "visible" "1" + "enabled" "1" + "image" "../hud/ico_powerup_critboost_red" + "scaleImage" "1" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "12" + "ypos" "32" + "zpos" "2" + "wide" "56" + "tall" "25" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Ball" + "textAlignment" "north" + "centerwrap" "1" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "25" + "ypos" "23" + "zpos" "2" + "wide" "40" + "tall" "6" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterCount" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCount" + "xpos" "24" + "xpos_minmode" "40" + "ypos" "11" + "ypos_minmode" "18" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + "font_minmode" "HudFontMediumSmall" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_pyro.res b/biscottihud/resource/ui/huditemeffectmeter_pyro.res new file mode 100644 index 0000000..a5def5a --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_pyro.res @@ -0,0 +1,69 @@ +#base "huditemeffectmeter_pyro_size.res" + +"Resource/UI/HudItemEffectMeter_Pyro.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c138" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz2_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz2_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz2_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "Label" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Cleaver" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_pyro_size.res b/biscottihud/resource/ui/huditemeffectmeter_pyro_size.res new file mode 100644 index 0000000..815ad68 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_pyro_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudItemEffectMeter_Cleaver.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "80" + "tall" "15" + "visible" "1" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_raygun.res b/biscottihud/resource/ui/huditemeffectmeter_raygun.res new file mode 100644 index 0000000..486bd19 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_raygun.res @@ -0,0 +1,100 @@ +#base "huditemeffectmeter_raygun_style.res" + +"Resource/UI/HudItemEffectMeter_Raygun.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "xpos" "r194" [$X360] + "ypos" "r124" [$X360] + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz1_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz1_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz1_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "3" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ENERGYDRINK" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterMark25" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark25" + "ypos" "0" + "zpos" "3" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterMark50" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark50" + "ypos" "0" + "zpos" "3" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterMark75" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark75" + "ypos" "0" + "zpos" "3" + "enabled" "1" + "fillcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_raygun_ammo.res b/biscottihud/resource/ui/huditemeffectmeter_raygun_ammo.res new file mode 100644 index 0000000..b8c2563 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_raygun_ammo.res @@ -0,0 +1,42 @@ +"Resource/UI/HudItemEffectMeter_Raygun.res" +{ + HudItemEffectMeter + { + "xpos" "c54" [$WIN32] + "ypos" "c148" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-4" + "wide" "80" + "tall" "15" + "visible" "0" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "8" + } + "ItemEffectMeterMark25" + { + "xpos" "17" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark50" + { + "xpos" "38" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark75" + { + "xpos" "59" + "wide" "4" + "tall" "8" + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_raygun_centered.res b/biscottihud/resource/ui/huditemeffectmeter_raygun_centered.res new file mode 100644 index 0000000..df82053 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_raygun_centered.res @@ -0,0 +1,42 @@ +"Resource/UI/HudItemEffectMeter_Raygun.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" [$WIN32] + "ypos" "c146" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-4" + "wide" "80" + "tall" "15" + "visible" "0" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "8" + } + "ItemEffectMeterMark25" + { + "xpos" "17" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark50" + { + "xpos" "38" + "wide" "4" + "tall" "8" + "visible" "1" + } + "ItemEffectMeterMark75" + { + "xpos" "59" + "wide" "4" + "tall" "8" + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_raygun_style.res b/biscottihud/resource/ui/huditemeffectmeter_raygun_style.res new file mode 100644 index 0000000..2ccdf93 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_raygun_style.res @@ -0,0 +1 @@ +#base "huditemeffectmeter_raygun_ammo.res" diff --git a/biscottihud/resource/ui/huditemeffectmeter_sapper.res b/biscottihud/resource/ui/huditemeffectmeter_sapper.res new file mode 100644 index 0000000..5479156 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_sapper.res @@ -0,0 +1,71 @@ +#base "huditemeffectmeter_sapper_size.res" + +"Resource/UI/HudItemEffectMeter_SodaPopper.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c130" [$WIN32] + "xpos" "r194" [$X360] + "ypos" "r124" [$X360] + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz3_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz3_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz3_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ENERGYDRINK" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_sapper_size.res b/biscottihud/resource/ui/huditemeffectmeter_sapper_size.res new file mode 100644 index 0000000..167f7ad --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_sapper_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudItemEffectMeter_SodaPopper.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "80" + "tall" "15" + "visible" "1" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_scout.res b/biscottihud/resource/ui/huditemeffectmeter_scout.res new file mode 100644 index 0000000..ba74ed9 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_scout.res @@ -0,0 +1,69 @@ +#base "huditemeffectmeter_scout_size.res" + +"Resource/UI/HudItemEffectMeter_Scout.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c138" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz2_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz2_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz2_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ENERGYDRINK" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_scout_size.res b/biscottihud/resource/ui/huditemeffectmeter_scout_size.res new file mode 100644 index 0000000..757668d --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_scout_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudItemEffectMeter_Scout.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "80" + "tall" "15" + "visible" "1" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_size.res b/biscottihud/resource/ui/huditemeffectmeter_size.res new file mode 100644 index 0000000..fefbcf5 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudItemEffectMeter.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "80" + "tall" "15" + "visible" "0" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_sniper.res b/biscottihud/resource/ui/huditemeffectmeter_sniper.res new file mode 100644 index 0000000..ab058a5 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_sniper.res @@ -0,0 +1,113 @@ +#base "huditemeffectmeter_sniper_positioning.res" + +"Resource/UI/HudItemEffectMeter_Sniper.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "wide" "100" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "26" + "ypos" "7" + "zpos" "0" + "wide" "36" + "tall" "28" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "26" + "ypos" "27" + "zpos" "2" + "wide" "36" + "tall" "15" + "autoResize" "1" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Ball" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "ypos_minmode" "0" + "xpos_minmode" "0" + "zpos" "2" + "wide" "40" + "wide_minmode" "50" + "tall" "6" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterCount" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCount" + "xpos" "25" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + } + + "ItemEffectMeterCountShadow" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCountShadow" + "xpos" "26" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + "fgcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_sniper_positioning.res b/biscottihud/resource/ui/huditemeffectmeter_sniper_positioning.res new file mode 100644 index 0000000..fb1176f --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_sniper_positioning.res @@ -0,0 +1,8 @@ +"Resource/UI/HudItemEffectMeter_Sniper.res" +{ + HudItemEffectMeter + { + "xpos" "c67" [$WIN32] + "ypos" "c111" [$WIN32] + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_sniperfocus.res b/biscottihud/resource/ui/huditemeffectmeter_sniperfocus.res new file mode 100644 index 0000000..43ad678 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_sniperfocus.res @@ -0,0 +1,183 @@ +#base "huditemeffectmeter_sniperfocus_size.res" + +"Resource/UI/HudItemEffectMeter_SodaPopper.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c138" [$WIN32] + "xpos" "r194" [$X360] + "ypos" "r124" [$X360] + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz2_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz2_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz2_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ENERGYDRINK" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterMark33" + { + "controlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark33" + "xpos" "27" + "ypos" "0" + "zpos" "3" + "wide" "2" + "tall" "5" + "visible" "0" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterMark66" + { + "controlName" "ImagePanel" + "fieldName" "ItemEffectMeterMark66" + "xpos" "53" + "ypos" "0" + "zpos" "3" + "wide" "2" + "tall" "5" + "visible" "0" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterSubbMark11" + { + "controlName" "ImagePanel" + "fieldName" "ItemEffectMeterSubMark11" + "xpos" "9" + "ypos" "0" + "zpos" "3" + "wide" "1" + "tall" "2" + "visible" "0" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterSubMark22" + { + "controlName" "ImagePanel" + "fieldName" "ItemEffectMeterSubMark22" + "xpos" "18" + "ypos" "0" + "zpos" "3" + "wide" "1" + "tall" "2" + "visible" "0" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterSubMark44" + { + "controlName" "ImagePanel" + "fieldName" "ItemEffectMeterSubMark44" + "xpos" "36" + "ypos" "0" + "zpos" "3" + "wide" "1" + "tall" "2" + "visible" "0" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterSubMark55" + { + "controlName" "ImagePanel" + "fieldName" "ItemEffectMeterSubMark55" + "xpos" "44" + "ypos" "0" + "zpos" "3" + "wide" "1" + "tall" "2" + "visible" "0" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterSubMark77" + { + "controlName" "ImagePanel" + "fieldName" "ItemEffectMeterSubMark77" + "xpos" "62" + "ypos" "0" + "zpos" "3" + "wide" "1" + "tall" "2" + "visible" "0" + "enabled" "1" + "fillcolor" "Black" + } + + "ItemEffectMeterSubMark88" + { + "controlName" "ImagePanel" + "fieldName" "ItemEffectMeterSubMark88" + "xpos" "71" + "ypos" "0" + "zpos" "3" + "wide" "1" + "tall" "2" + "visible" "0" + "enabled" "1" + "fillcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_sniperfocus_size.res b/biscottihud/resource/ui/huditemeffectmeter_sniperfocus_size.res new file mode 100644 index 0000000..167f7ad --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_sniperfocus_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudItemEffectMeter_SodaPopper.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "80" + "tall" "15" + "visible" "1" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_sodapopper.res b/biscottihud/resource/ui/huditemeffectmeter_sodapopper.res new file mode 100644 index 0000000..bb5f5ef --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_sodapopper.res @@ -0,0 +1,71 @@ +#base "huditemeffectmeter_sodapopper_size.res" + +"Resource/UI/HudItemEffectMeter_SodaPopper.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c130" [$WIN32] + "xpos" "r194" [$X360] + "ypos" "r124" [$X360] + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz3_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz3_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz3_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ENERGYDRINK" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_sodapopper_size.res b/biscottihud/resource/ui/huditemeffectmeter_sodapopper_size.res new file mode 100644 index 0000000..167f7ad --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_sodapopper_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudItemEffectMeter_SodaPopper.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "80" + "tall" "15" + "visible" "1" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_spy.res b/biscottihud/resource/ui/huditemeffectmeter_spy.res new file mode 100644 index 0000000..78fa83b --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_spy.res @@ -0,0 +1,113 @@ +#base "huditemeffectmeter_spy_positioning.res" + +"Resource/UI/HudItemEffectMeter_Spy.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "wide" "100" + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "ImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "26" + "ypos" "7" + "zpos" "0" + "wide" "36" + "tall" "28" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "26" + "ypos" "27" + "zpos" "2" + "wide" "36" + "tall" "15" + "autoResize" "1" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Ball" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "ypos_minmode" "0" + "xpos_minmode" "0" + "zpos" "2" + "wide" "40" + "wide_minmode" "50" + "tall" "6" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ItemEffectMeterCount" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCount" + "xpos" "25" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + } + + "ItemEffectMeterCountShadow" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCountShadow" + "xpos" "26" + "ypos" "10" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "north" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontMedium" + "fgcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_spy_positioning.res b/biscottihud/resource/ui/huditemeffectmeter_spy_positioning.res new file mode 100644 index 0000000..a8098d1 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_spy_positioning.res @@ -0,0 +1,8 @@ +"Resource/UI/HudItemEffectMeter_Spy.res" +{ + HudItemEffectMeter + { + "xpos" "c67" [$WIN32] + "ypos" "c111" [$WIN32] + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_spyknife.res b/biscottihud/resource/ui/huditemeffectmeter_spyknife.res new file mode 100644 index 0000000..aaa30d8 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_spyknife.res @@ -0,0 +1,71 @@ +#base "huditemeffectmeter_spyknife_size.res" + +"Resource/UI/HudItemEffectMeter_SpyKnife.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c138" [$WIN32] + "xpos" "r194" [$X360] + "ypos" "r124" [$X360] + "tall" "50" + "MeterFG" "White" + "MeterBG" "Gray" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "12" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/misc_ammo_area_horiz2_blue" + "scaleImage" "1" + "teambg_2" "../hud/misc_ammo_area_horiz2_red" + "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" + "teambg_3" "../hud/misc_ammo_area_horiz2_blue" + "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "zpos" "2" + "autoResize" "1" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ENERGYDRINK" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "TFFontSmallLabel" + "fgcolor_override" "Black" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/biscottihud/resource/ui/huditemeffectmeter_spyknife_size.res b/biscottihud/resource/ui/huditemeffectmeter_spyknife_size.res new file mode 100644 index 0000000..40eaf00 --- /dev/null +++ b/biscottihud/resource/ui/huditemeffectmeter_spyknife_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudItemEffectMeter_SpyKnife.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" [$WIN32] + "wide" "80" + } + "ItemEffectMeterLabel" + { + "ypos" "-5" + "wide" "80" + "tall" "15" + "visible" "1" + } + "ItemEffectMeter" + { + "wide" "80" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/hudkillstreaknotice.res b/biscottihud/resource/ui/hudkillstreaknotice.res new file mode 100644 index 0000000..6acc7b5 --- /dev/null +++ b/biscottihud/resource/ui/hudkillstreaknotice.res @@ -0,0 +1,35 @@ +#base "hudkillstreaknotice_incognito.res" + +"Resource/UI/HudKillStreakNotice.res" +{ + "Background" + { + "ControlName" "EditablePanel" + "fieldName" "Background" + "xpos" "c-250" + "ypos" "50" + "zpos" "0" + "wide" "500" + "tall" "50" + "autoResize" "0" + "visible" "1" + "enabled" "1" + "PaintBackgroundType" "0" + "bgcolor_override" "46 43 42 160" + } + + "SplashLabel" + { + "ControlName" "CExLabel" + "fieldName" "SplashLabel" + "font" "HudFontSmallestBold" + "labelText" "" + "textAlignment" "center" + "xpos" "c-250" + "zpos" "2" + "wide" "500" + "tall" "50" + "autoResize" "0" + "fgcolor" "tanlight" + } +} diff --git a/biscottihud/resource/ui/hudkillstreaknotice_incognito.res b/biscottihud/resource/ui/hudkillstreaknotice_incognito.res new file mode 100644 index 0000000..95e6fc2 --- /dev/null +++ b/biscottihud/resource/ui/hudkillstreaknotice_incognito.res @@ -0,0 +1,7 @@ +"Resource/UI/HudKillStreakNotice.res" +{ + "SplashLabel" + { + "ypos" "50" + } +} diff --git a/biscottihud/resource/ui/hudmannvsmachinestatus.res b/biscottihud/resource/ui/hudmannvsmachinestatus.res new file mode 100644 index 0000000..40f5dad --- /dev/null +++ b/biscottihud/resource/ui/hudmannvsmachinestatus.res @@ -0,0 +1,259 @@ +"Resource/UI/HudMannVsMachineStatus.res" +{ + "WaveStatusPanel" + { + "ControlName" "CWaveStatusPanel" + "fieldName" "WaveStatusPanel" + "xpos" "c-300" + "ypos" "0" + "zpos" "0" + "wide" "600" + "tall" "67" + "visible" "1" + "enabled" "1" + } + + "WaveCompleteSummaryPanel" + { + "ControlName" "CWaveCompleteSummaryPanel" + "fieldName" "WaveCompleteSummaryPanel" + "xpos" "c-125" + "ypos" "120" + "zpos" "0" + "wide" "400" + "tall" "400" + "visible" "1" + "enabled" "1" + } + + "BossStatusPanel" + { + "ControlName" "CMvMBossStatusPanel" + "fieldName" "BossStatusPanel" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "200" + "tall" "100" + "visible" "1" + "enabled" "1" + + "pin_to_sibling" "WaveStatusPanel" + "pin_corner_to_sibling" "4" + "pin_to_sibling_corner" "6" + } + + "CurrencyStatusPanel" + { + "ControlName" "CCurrencyStatusPanel" + "fieldName" "CurrencyStatusPanel" + "wide" "100" + "tall" "100" + "xpos" "65" + "ypos" "r88" + "visible" "1" + "enabled" "1" + } + + "InWorldCurrencyPanel" + { + "ControlName" "CInWorldCurrencyStatus" + "fieldName" "InWorldCurrencyPanel" + "wide" "100" + "tall" "100" + "xpos" "145" + "ypos" "r12" + "visible" "1" + "enabled" "1" + } + + "WarningSwoop" + { + "ControlName" "CWarningSwoop" + "fieldName" "WarningSwoop" + "xpos" "c-12" + "ypos" "0" + "zpos" "10" + "wide" "24" + "tall" "220" + "visible" "0" + "enabled" "1" + "image" "../sprites/obj_icons/warning_highlight" + "scaleImage" "1" + "time" "0.3" + } + + "UpgradeLevelContainer" + { + "ControlName" "EditablePanel" + "fieldName" "UpgradeLevelContainer" + "xpos" "0" + "ypos" "0" + "wide" "640" + "tall" "480" + "visible" "0" + + "UpgradeProgressTrack" + { + "ControlName" "CMvMBombCarrierProgress" + "fieldName" "UpgradeProgressTrack" + "xpos" "c-50" + "ypos" "r35" + "wide" "640" + "tall" "480" + "visible" "1" + } + + "UpgradeLevel1" + { + "ControlName" "ImagePanel" + "fieldName" "UpgradeLevel1" + "xpos" "c32" + "ypos" "r24" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "../hud/hud_mvm_bomb_upgrade_1_disabled" + "scaleImage" "1" + } + + "UpgradeLevel2" + { + "ControlName" "ImagePanel" + "fieldName" "UpgradeLevel2" + "xpos" "c32" + "ypos" "r42" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "../hud/hud_mvm_bomb_upgrade_2_disabled" + "scaleImage" "1" + } + + "UpgradeLevel3" + { + "ControlName" "ImagePanel" + "fieldName" "UpgradeLevel3" + "xpos" "c32" + "ypos" "r60" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "../hud/hud_mvm_bomb_upgrade_3_disabled" + "scaleImage" "1" + } + + "UpgradeLevelBoss" + { + "ControlName" "ImagePanel" + "fieldName" "UpgradeLevelBoss" + "xpos" "c32" + "ypos" "r46" + "wide" "20" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "image" "../hud/hud_mvm_bomb_upgrade_boss" + "scaleImage" "1" + } + } + + "VictorySplash" + { + "ControlName" "CVictorySplash" + "fieldName" "VictorySplash" + "xpos" "0" + "ypos" "0" + //"zpos" "102" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + } + + "VictoryPanelContainer" + { + "ControlName" "CMvMVictoryPanelContainer" + "fieldName" "VictoryPanelContainer" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "0" + } + + "WaveLossPanel" + { + "ControlName" "CMvMWaveLossPanel" + "fieldName" "WaveLossPanel" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "0" + } + + "ServerChangeMessage" + { + "ControlName" "EditablePanel" + "fieldName" "ServerChangeMessage" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "0" + + "Background" + { + "ControlName" "ScalableImagePanel" + "fieldName" "Background" + "xpos" "c-150" + "ypos" "400" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + + "src_corner_height" "15" // pixels inside the image + "src_corner_width" "15" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "ServerChangeLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerChangeLabel" + "font" "HudFontSmall" + "textAlignment" "center" + "labelText" "%servermessage%" + "xpos" "c-150" + "ypos" "400" + "wide" "300" + "tall" "20" + "visible" "1" + "enabled" "1" + "fgcolor" "tanlight" + } + } + +} diff --git a/biscottihud/resource/ui/hudmatchstatus.res b/biscottihud/resource/ui/hudmatchstatus.res new file mode 100644 index 0000000..54eff62 --- /dev/null +++ b/biscottihud/resource/ui/hudmatchstatus.res @@ -0,0 +1,872 @@ +#base "hudmatchstatus_teamstatus.res" + +"Resource/UI/HudMatchStatus.res" +{ + "HudMatchStatus" + { + "fieldName" "HudMatchStatus" + "avatar_width" "63" + "spacer" "5" + "name_width" "57" + "horiz_inset" "2" + } + + "RoundSignModel" + { + "ControlName" "CModelPanel" + "fieldName" "RoundSignModel" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "fov" "70" + "proportionaltoparent" "1" + + "model" + { + "modelname" "models/props_ui/banner.mdl" + "skin" "0" + "angles_x" "30" + "angles_y" "180" + "angles_z" "0" + "origin_x" "150" + "origin_y" "0" + "origin_z" "62" + "spotlight" "1" + + "animation" + { + "name" "ref" + "sequence" "ref" + "default" "1" + } + + "animation" + { + "name" "intro" + "sequence" "intro" + } + + "animation" + { + "name" "outro" + "sequence" "outro" + } + } + } + + "CountdownLabel" + { + "ControlName" "CExLabel" + "fieldName" "CountdownLabel" + "font" "HudFontGiant" + "xpos" "cs-0.5" + "ypos" "cs-0.1" + "wide" "40" + "tall" "40" + "zpos" "5" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "wrap" "0" + "labelText" "%countdown%" + "textAlignment" "center" + "proportionaltoparent" "1" + "fgcolor" "TanLight" + + if_readymode + { + "xpos" "300" + "ypos" "130" + } + } + + "CountdownLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "CountdownLabelShadow" + "font" "HudFontGiant" + "xpos" "cs-0.48" + "ypos" "cs-0.08" + "wide" "40" + "tall" "40" + "zpos" "4" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "wrap" "0" + "labelText" "%countdown%" + "textAlignment" "center" + "fgcolor" "Black" + "proportionaltoparent" "1" + + if_readymode + { + "xpos" "300" + "ypos" "130" + } + } + + "FrontParticlePanel" + { + "ControlName" "CTFParticlePanel" + "fieldName" "FrontParticlePanel" + "xpos" "0" + "ypos" "0" + "zpos" "3" + "wide" "f0" + "tall" "f0" + "visible" "1" + "proportionaltoparent" "1" + + "ParticleEffects" + { + "0" + { + "particle_xpos" "c0" + "particle_ypos" "c0" + "particle_scale" "2" + "particleName" "versus_door_slam" + "start_activated" "0" + "loop" "0" + } + } + + "paintbackground" "0" + } + + "MatchDoors" + { + "ControlName" "CModelPanel" + "fieldName" "MatchDoors" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "fov" "70" + "proportionaltoparent" "1" + + "model" + { + "modelname" "models/vgui/versus_doors.mdl" + "skin" "0" + "angles_x" "0" + "angles_y" "0" + "angles_z" "0" + "origin_x" "120" + "origin_y" "0" + "origin_z" "-77" + + "animation" + { + "name" "ref" + "sequence" "ref" + "default" "1" + } + + "animation" + { + "name" "open" + "sequence" "open" + } + + "animation" + { + "name" "close" + "sequence" "close" + } + + "animation" + { + "name" "idle_closed" + "sequence" "idle_closed" + } + } + } + + "RoundCounter" + { + "fieldName" "RoundCounter" + "xpos" "cs-0.5" + "ypos" "-2" + "zpos" "1" + "wide" "300" + "tall" "100" + "visible" "1" + "enabled" "1" + } + + "BGFrame" + { + "ControlName" "EditablePanel" + "fieldName" "BGFrame" + "xpos" "cs-0.5" + "ypos" "-5" + "zpos" "0" + "wide" "365" + "tall" "28" + "visible" "0" + + "proportionaltoaparent" "1" + "border" "TFFatLineBorder" + } + + "RankUpLabel" + { + "ControlName" "CExLabel" + "fieldName" "RankUpLabel" + "font" "HudFontMediumSmallBold" + "xpos" "cs-0.5" + "ypos" "80" + "wide" "600" + "tall" "60" + "zpos" "5" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "centerwrap" "1" + "alpha" "0" + "labelText" "%rank_possibility%" + "textAlignment" "center" + "proportionaltoparent" "1" + "fgcolor" "TanLight" + } + + "RankUpShadowLabel" + { + "ControlName" "CExLabel" + "fieldName" "RankUpShadowLabel" + "font" "HudFontMediumSmallBold" + "xpos" "cs-0.5+2" + "ypos" "80+2" + "wide" "600" + "tall" "60" + "zpos" "5" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "centerwrap" "1" + "alpha" "0" + "labelText" "%rank_possibility%" + "textAlignment" "center" + "proportionaltoparent" "1" + "fgcolor" "Black" + } + + "ObjectiveStatusTimePanel" + { + "ControlName" "EditablePanel" + "fieldName" "ObjectiveStatusTimePanel" + "xpos" "c-55" + "xpos_hidef" "c-150" + "xpos_lodef" "c-150" + "ypos" "0" [$WIN32] + "ypos" "24" [$X360] + "zpos" "2" + "wide" "110" + "wide_hidef" "300" + "wide_lodef" "300" + "tall" "150" + "visible" "0" + "enabled" "1" + "delta_item_x" "22" [$WIN32] + "delta_item_x" "115" [$X360] + "delta_item_start_y" "50" + "delta_item_end_y" "70" + "PositiveColor" "0 255 0 255" + "NegativeColor" "255 0 0 255" + "delta_lifetime" "1.5" + "delta_item_font" "HudFontMedium" + + if_match + { + "ypos" "10" + } + + "TimePanelValue" + { + "ControlName" "CExLabel" + "fieldName" "TimePanelValue" + "font" "HudFontMediumSmall" + "font_minmode" "HudFontSmall" + "font_lodef" "HudFontMedium" + "fgcolor" "TanLight" + "xpos" "16" + "xpos_minmode" "36" + "ypos" "3" + "ypos_minmode" "2" + "zpos" "3" + "wide" "78" + "wide_minmode" "38" + "tall" "28" + "tall_minmode" "14" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "0:00" + + if_match + { + "xpos" "36" + "ypos" "2" + "wide" "38" + "tall" "14" + "font" "HudFontSmall" + } + } + } + "TeamStatus" + { + "ControlName" "CTFTeamStatus" + "fieldName" "TeamStatus" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "tall" "75" + "visible" "1" + "enabled" "1" + + + "max_size" "19" + + "6v6_gap" "4" + "12v12_gap" "1" + + "team1_grow_dir" "west" + "team1_base_x" "c-45" + "team1_max_expand" "133" + + "team2_grow_dir" "east" + "team2_base_x" "c47" + "team2_max_expand" "133" + + "playerpanels_kv" + { + "visible" "0" + "wide" "25" + "tall" "50" + "zpos" "1" + + "color_portrait_bg_red" "119 62 61 255" + "color_portrait_bg_blue" "62 81 101 255" + "color_portrait_bg_red_dead" "79 54 52 255" + "color_portrait_bg_blue_dead" "44 49 51 255" + "color_bar_health_high" "84 191 58 255" + "color_bar_health_med" "191 183 58 255" + "percentage_health_med" "0.6" + "color_bar_health_low" "191 58 58 255" + "percentage_health_low" "0.3" + "color_portrait_blend_dead_red" "255 255 255 255" + "color_portrait_blend_dead_blue" "255 255 255 255" + + "playername" + { + "ControlName" "CExLabel" + "fieldName" "playername" + "font" "DefaultVerySmall" + "xpos" "5" + "ypos" "24" + "zpos" "5" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + } + "classimage" + { + "ControlName" "CTFClassImage" + "fieldName" "classimage" + "xpos" "cs-0.5" + "ypos" "0" + "zpos" "3" + "wide" "19" + "tall" "19" + "visible" "1" + "enabled" "1" + "image" "../hud/class_scoutred" + "scaleImage" "1" + "proportionaltoparent" "1" + } + "classimagebg" + { + "ControlName" "Panel" + "fieldName" "classimagebg" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "f0" + "tall" "19" + "visible" "1" + "enabled" "1" + "PaintBackgroundType" "0" + "proportionaltoparent" "1" + } + "healthbar" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "healthbar" + "font" "Default" + "xpos" "0" + "ypos" "19" + "zpos" "5" + "wide" "f0" + "tall" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "bgcolor_override" "80 80 80 255" + "proportionaltoparent" "1" + } + "overhealbar" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "overhealbar" + "font" "Default" + "xpos" "0" + "ypos" "19" + "zpos" "6" + "wide" "f0" + "tall" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "bgcolor_override" "0 0 0 0" + "fgcolor_override" "255 255 255 160" + "proportionaltoparent" "1" + } + "HealthIcon" + { + "ControlName" "EditablePanel" + "fieldName" "HealthIcon" + "xpos" "22" + "ypos" "-3" + "zpos" "3" + "wide" "32" + "tall" "32" + "visible" "0" + "enabled" "1" + "HealthBonusPosAdj" "10" + "HealthDeathWarning" "0.49" + "TFFont" "HudFontSmallest" + "HealthDeathWarningColor" "HUDDeathWarning" + "TextColor" "HudOffWhite" + } + "ReadyBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "ReadyBG" + "xpos" "30" + "ypos" "6" + "zpos" "-1" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "image" "../HUD/tournament_panel_brown" + "src_corner_height" "22" // pixels inside the image + "src_corner_width" "22" + "draw_corner_width" "3" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "3" + } + "ReadyImage" + { + "ControlName" "ImagePanel" + "fieldName" "ReadyImage" + "xpos" "32" + "ypos" "8" + "zpos" "0" + "wide" "12" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "image" "hud/checkmark" + "scaleImage" "1" + } + "respawntime" + { + "ControlName" "CExLabel" + "fieldName" "respawntime" + "font" "PlayerPanelPlayerName" + "xpos" "cs-0.5" + "ypos" "0" + "zpos" "5" + "wide" "f0" + "tall" "19" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "labelText" "%respawntime%" + "textAlignment" "center" + "proportionaltoparent" "1" + } + "chargeamount" + { + "ControlName" "CExLabel" + "fieldName" "chargeamount" + "font" "DefaultSmall" + "xpos" "25" + "ypos" "17" + "zpos" "6" + "wide" "25" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "labelText" "%chargeamount%" + "textAlignment" "north" + "fgcolor" "0 255 0 255" + } + "specindex" + { + "ControlName" "CExLabel" + "fieldName" "specindex" + "font" "DefaultVerySmall" + "xpos" "4" + "ypos" "2" + "zpos" "5" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "labelText" "%specindex%" + "textAlignment" "north-west" + //"fgcolor" "235 226 202 255" + } + "DeathPanel" + { + "ControlName" "ImagePanel" + "fieldName" "DeathPanel" + "xpos" "cs-0.5" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "24" + "visible" "0" + "enabled" "1" + "image" "../HUD/comp_player_status" + "scaleImage" "1" + "proportionaltoparent" "1" + } + "SkullPanel" + { + "ControlName" "ImagePanel" + "fieldName" "SkullPanel" + "xpos" "cs-0.5" + "zpos" "1" + "wide" "o1.2" + "tall" "p0.15" + "visible" "0" + "enabled" "1" + "image" "../HUD/comp_player_status_skull" + "scaleImage" "1" + "proportionaltoparent" "1" + } + } + } + + "BlueTeamPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BlueTeamPanel" + "xpos" "-155" + "ypos" "125" + "zpos" "50" + "wide" "150" + "tall" "260" + "visible" "0" + "enabled" "1" + + if_large + { + "ypos" "65" + "tall" "385" + } + + "BlueTeamBG" + { + "ControlName" "EditablePanel" + "fieldName" "BlueTeamBG" + "xpos" "0" + "ypos" "10" + "zpos" "2" + "wide" "147" + "tall" "36" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "TFFatLineBorderBlueBGOpaque" + } + "BlueTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "BlueTeamImage" + "xpos" "9" + "ypos" "0" + "zpos" "5" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "image" "../hud/team_blue" + "scaleImage" "1" + } + "BlueTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamLabel" + "font" "CompMatchStartTeamNames" + "labelText" "%blueteamname%" + "textAlignment" "center" + "xpos" "48" + "ypos" "13" + "zpos" "20" + "wide" "95" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "centerwrap" "1" + } + "BlueLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "BlueLeaderAvatar" + "xpos" "11" + "ypos" "10" + "zpos" "5" + "wide" "35" + "tall" "35" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "BlueLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "BlueLeaderAvatarBG" + "xpos" "9" + "ypos" "8" + "zpos" "4" + "wide" "39" + "tall" "39" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "BluePlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "BluePlayerList" + "xpos" "6" + "ypos" "38" + "zpos" "1" + "wide" "136" + "tall" "205" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "26" + "linegap" "4" + //"show_columns" "1" + + if_large + { + "tall" "315" + } + } + "BluePlayerListBG" + { + "ControlName" "EditablePanel" + "fieldName" "BluePlayerListBG" + "xpos" "4" + "ypos" "30" + "zpos" "0" + "wide" "139" + "tall" "215" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "TFFatLineBorderClearBG" + + if_large + { + "tall" "325" + } + } + } + + "RedTeamPanel" + { + "ControlName" "EditablePanel" + "fieldName" "RedTeamPanel" + "xpos" "r-5" + "ypos" "125" + "zpos" "50" + "wide" "150" + "tall" "260" + "visible" "0" + "enabled" "1" + + if_large + { + "ypos" "65" + "tall" "385" + } + + "RedTeamBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedTeamBG" + "xpos" "0" + "ypos" "10" + "zpos" "2" + "wide" "147" + "tall" "36" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "TFFatLineBorderRedBGOpaque" + } + "RedTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "RedTeamImage" + "xpos" "84" + "ypos" "-9" + "zpos" "5" + "wide" "70" + "tall" "70" + "visible" "1" + "enabled" "1" + "image" "../hud/team_Red" + "scaleImage" "1" + } + "RedTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamLabel" + "font" "CompMatchStartTeamNames" + "labelText" "%redteamname%" + "textAlignment" "center" + "xpos" "5" + "ypos" "13" + "zpos" "20" + "wide" "95" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "centerwrap" "1" + } + "RedLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "RedLeaderAvatar" + "xpos" "102" + "ypos" "10" + "zpos" "5" + "wide" "35" + "tall" "35" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "RedLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedLeaderAvatarBG" + "xpos" "100" + "ypos" "8" + "zpos" "4" + "wide" "39" + "tall" "39" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "RedPlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "RedPlayerList" + "xpos" "6" + "ypos" "38" + "zpos" "1" + "wide" "136" + "tall" "205" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "26" + "linegap" "4" + //"show_columns" "1" + + if_large + { + "tall" "315" + } + } + "RedPlayerListBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedPlayerListBG" + "xpos" "4" + "ypos" "30" + "zpos" "0" + "wide" "139" + "tall" "215" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "TFFatLineBorderClearBG" + + if_large + { + "tall" "325" + } + } + } +} diff --git a/biscottihud/resource/ui/hudmatchstatus_teamstatus.res b/biscottihud/resource/ui/hudmatchstatus_teamstatus.res new file mode 100644 index 0000000..488597e --- /dev/null +++ b/biscottihud/resource/ui/hudmatchstatus_teamstatus.res @@ -0,0 +1,7 @@ +"Resource/UI/HudMatchStatus.res" +{ + "TeamStatus" + { + "wide" "f0" + } +} diff --git a/biscottihud/resource/ui/hudmatchsummary.res b/biscottihud/resource/ui/hudmatchsummary.res new file mode 100644 index 0000000..57bf11d --- /dev/null +++ b/biscottihud/resource/ui/hudmatchsummary.res @@ -0,0 +1,1000 @@ +#base "hudmatchsummary_colour.res" + +"Resource/UI/HudMatchSummary.res" +{ + "MatchSummary" + { + "ControlName" "CTFMatchSummary" + "fieldName" "MatchSummary" + "autoResize" "0" + "pinCorner" "0" + "tabPosition" "0" + "paintbackground" "0" + "zpos" "20" + "visible" "0" + + "AnimBluePlayerListParent" "p.47" + "AnimBlueTeamScore" "p.46" + "AnimBlueTeamScoreDropshadow" "p.46" + "AnimBlueTeamScoreBG" "p.483" + "AnimBluePlayerListBG" "p.47" + + "AnimRedTeamScoreBGWide" "p.483" + "AnimRedTeamScoreBGXPos" "r5-p.483" + "AnimRedTeamScoreWide" "p.46" + "AnimRedTeamScoreXPos" "r5-p.46" + "AnimRedTeamScoreDropshadowWide" "p.46" + "AnimRedTeamScoreDropshadowXPos" "r4-p.46" + "AnimRedPlayerListParentWide" "p.47" + "AnimRedPlayerListParentXPos" "r7-p.47" + "AnimRedPlayerListBGWide" "p.47" + "AnimRedPlayerListBGXPos" "r9-p.47" + "AnimBlueMedalsYPos" "75" + "AnimRedMedalsYPos" "75" + "AnimStatsLabelPanel6v6YPos" "75" + "AnimBlueTeamLabel6v6YPos" "107" + "AnimRedTeamLabel6v6YPos" "107" + "AnimStatsLabelPanel12v12YPos" "20" + "AnimBlueTeamLabel12v12YPos" "47" + "AnimRedTeamLabel12v12YPos" "47" + "AnimStatsContainer12v12YPos" "-20" + + if_large + { + "AnimBlueMedalsYPos" "50" + "AnimRedMedalsYPos" "50" + } + } + + "RankBorder" + { + "ControlName" "EditablePanel" + "fieldName" "RankBorder" + "xpos" "cs-0.5" + "ypos" "r0" + "zpos" "9000" + "wide" "-510" + "tall" "43" + "visible" "0" + "PaintBackgroundType" "0" + "proportionaltoparent" "1" + + if_uses_xp + { + "visible" "1" + } + } + + "RankPanel" + { + "ControlName" "CMiniPvPRankPanel" + "fieldName" "RankPanel" + "xpos" "cs-0.5" + "ypos" "r0" + "zpos" "9001" + "wide" "f0" + "tall" "480" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "1" + + "matchgroup" "MatchGroup_Ladder_6v6" + "show_name" "0" + "show_sources_when_hidden" "1" + "instantly_update" "0" + + if_uses_placement + { + "show_model" "0" + } + + } + + "RankModelPanel" + { + "ControlName" "CPvPRankPanel" + "fieldName" "RankModelPanel" + "xpos" "cs-0.5" + "ypos" "r1" + + "zpos" "9002" + "wide" "2000" + "tall" "2000" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "1" + + "matchgroup" "MatchGroup_Casual_12v12" + + "show_progress" "0" + "instantly_update" "0" + + if_uses_xp + { + "visible" "0" + } + } + + "StatsBgPanel" + { + "ControlName" "EditablePanel" + "fieldName" "StatsBgPanel" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "f0" + "visible" "0" + "enabled" "1" + "PaintBackgroundType" "1" + "bgcolor_override" "0 0 0 250" + } + + "DrawingPanel" + { + "ControlName" "CDrawingPanel" + "fieldName" "DrawingPanel" + "xpos" "c-320" + "ypos" "35" + "wide" "640" + "tall" "480" + "zpos" "60" + "visible" "0" + "enabled" "1" + "keyboardinputenabled" "0" + + "linecolor" "RedSolid" + "team_colors" "1" + } + + + "MainStatsContainer" + { + "Controlname" "EditablePanel" + "fieldnName" "MainStatsContainer" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "f0" + "tall" "f0" + "proportionaltoparent" "1" + + "ParticlePanel" + { + "ControlName" "CTFParticlePanel" + "fieldName" "ParticlePanel" + "xpos" "0" + "ypos" "0" + "zpos" "55" + "wide" "f0" + "tall" "f0" + "visible" "1" + } + + "StatsLabelPanel" + { + "ControlName" "EditablePanel" + "fieldName" "StatsLabelPanel" + "xpos" "c-100" + "ypos" "-20" + "zpos" "70" + "wide" "200" + "tall" "15" + "visible" "0" + "enabled" "1" + "autoResize" "0" + + "StatsAndMedals" + { + "ControlName" "CExLabel" + "fieldName" "StatsAndMedals" + "font" "MatchSummaryStatsAndMedals" + "labelText" "#TF_StatsAndMedals" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "zpos" "4" + "wide" "200" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "StatsAndMedalsShadow" + { + "ControlName" "CExLabel" + "fieldName" "StatsAndMedalsShadow" + "font" "MatchSummaryStatsAndMedals" + "labelText" "#TF_StatsAndMedals" + "fgcolor" "Black" + "textAlignment" "center" + "xpos" "1" + "ypos" "1" + "zpos" "3" + "wide" "200" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + + "TeamScoresPanel" + { + "ControlName" "EditablePanel" + "fieldName" "TeamScoresPanel" + "xpos" "0" + "ypos" "0" + "zpos" "50" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enabled" "1" + + "BlueTeamPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BlueTeamPanel" + "xpos" "-320" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enabled" "1" + + "BlueTeamScoreBG" + { + "ControlName" "EditablePanel" + "fieldName" "BlueTeamScoreBG" + "xpos" "5" + "ypos" "99" + "zpos" "2" + "wide" "p.213" + "tall" "36" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "TFFatLineBorderBlueBGOpaque" + + if_large + { + "ypos" "39" + } + } + "BlueTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScore" + "font" "MatchSummaryTeamScores" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "5" + "ypos" "103" + "zpos" "4" + "wide" "p.19" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "43" + } + + } + "BlueTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScoreDropshadow" + "font" "MatchSummaryTeamScores" + "fgcolor" "Black" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "6" + "ypos" "104" + "zpos" "3" + "wide" "p.19" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "44" + } + } + "BlueTeamWinner" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamWinner" + "font" "MatchSummaryWinner" + "labelText" "%blueteamwinner%" + "textAlignment" "east" + "xpos" "5" + "ypos" "103" + "zpos" "4" + "wide" "p.19" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "43" + } + } + "BlueTeamWinnerDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamWinnerDropshadow" + "font" "MatchSummaryWinner" + "fgcolor" "Black" + "labelText" "%blueteamwinner%" + "textAlignment" "east" + "xpos" "6" + "ypos" "104" + "zpos" "3" + "wide" "p.19" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "44" + } + } + "BlueTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "BlueTeamImage" + "xpos" "14" + "ypos" "89" + "zpos" "5" + "wide" "56" + "tall" "56" + "visible" "1" + "enabled" "1" + "image" "../hud/team_blue" + "scaleImage" "1" + + if_large + { + "ypos" "29" + } + } + "BlueTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamLabel" + "font" "CompMatchStartTeamNames" + "labelText" "%blueteamname%" + "textAlignment" "west" + "xpos" "60" + "ypos" "-25" + "zpos" "20" + "wide" "195" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BlueLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "BlueLeaderAvatar" + "xpos" "18" + "ypos" "100" + "zpos" "5" + "wide" "34" + "tall" "34" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + + if_large + { + "ypos" "40" + } + } + "BlueLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "BlueLeaderAvatarBG" + "xpos" "16" + "ypos" "98" + "zpos" "4" + "wide" "38" + "tall" "38" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + + if_large + { + "ypos" "38" + } + } + "BluePlayerListParent" + { + "ControlName" "EditablePanel" + "fieldName" "BluePlayerListParent" + "xpos" "12" + "ypos" "137" + "zpos" "1" + "wide" "p.193" + "tall" "215" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "77" + "tall" "340" + } + + "BluePlayerList" + { + "ControlName" "TFSectionedListPanel" + "fieldName" "BluePlayerList" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "p.465" + "tall" "205" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "0" + "linespacing" "26" + "linegap" "4" + //"show_columns" "1" + + "medal_width" "s.08" + "avatar_width" "s.08" + "spacer" "s.01" + "name_width" "s.19" + "class_width" "s.04" + "award_width" "s.04" + "stats_width" "s.08" + "horiz_inset" "5" + + if_large + { + "tall" "340" + "linegap" "1" + } + } + } + "BluePlayerListBG" + { + "ControlName" "EditablePanel" + "fieldName" "BluePlayerListBG" + "xpos" "9" + "ypos" "117" + "zpos" "0" + "wide" "p.2" + "tall" "225" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "TFFatLineBorderClearBG" + + if_large + { + "ypos" "57" + "tall" "360" + } + } + } + "RedTeamPanel" + { + "ControlName" "EditablePanel" + "fieldName" "RedTeamPanel" + "xpos" "320" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enabled" "1" + + "RedTeamScoreBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedTeamScoreBG" + "xpos" "r5-p.213" + "ypos" "99" + "zpos" "2" + "wide" "p.213" + "tall" "36" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "TFFatLineBorderRedBGOpaque" + + if_large + { + "ypos" "39" + } + } + "RedTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScore" + "font" "MatchSummaryTeamScores" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "r5-p.19" + "ypos" "103" + "zpos" "4" + "wide" "p.19" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "43" + } + } + "RedTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScoreDropshadow" + "font" "MatchSummaryTeamScores" + "fgcolor" "Black" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "r4-p.19" + "ypos" "104" + "zpos" "3" + "wide" "p.19" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "44" + } + } + "RedTeamWinner" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamWinner" + "font" "MatchSummaryWinner" + "labelText" "%redteamwinner%" + "textAlignment" "west" + "xpos" "r5-p.19" + "ypos" "103" + "zpos" "4" + "wide" "p.19" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "43" + } + } + "RedTeamWinnerDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamWinnerDropshadow" + "font" "MatchSummaryWinner" + "fgcolor" "Black" + "labelText" "%redteamwinner%" + "textAlignment" "west" + "xpos" "r4-p.19" + "ypos" "104" + "zpos" "3" + "wide" "p.19" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "44" + } + } + "RedTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "RedTeamImage" + "xpos" "r68" + "ypos" "80" + "zpos" "5" + "wide" "70" + "tall" "70" + "visible" "1" + "enabled" "1" + "image" "../hud/team_red" + "scaleImage" "1" + + if_large + { + "ypos" "20" + } + } + "RedTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamLabel" + "font" "CompMatchStartTeamNames" + "labelText" "%redteamname%" + "textAlignment" "east" + "xpos" "r255" + "ypos" "-25" + "zpos" "20" + "wide" "195" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RedLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "RedLeaderAvatar" + "xpos" "r52" + "ypos" "100" + "zpos" "5" + "wide" "34" + "tall" "34" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + + if_large + { + "ypos" "40" + } + } + "RedLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedLeaderAvatarBG" + "xpos" "r54" + "ypos" "98" + "zpos" "4" + "wide" "38" + "tall" "38" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + + if_large + { + "ypos" "38" + } + } + "RedPlayerListParent" + { + "ControlName" "EditablePanel" + "fieldName" "RedPlayerListParent" + "xpos" "r12-p.193" + "ypos" "137" + "zpos" "1" + "wide" "p.193" + "tall" "215" + "visible" "1" + "enabled" "1" + + if_large + { + "ypos" "77" + "tall" "340" + } + + "RedPlayerList" + { + "ControlName" "TFSectionedListPanel" + "fieldName" "RedPlayerList" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "p.465" + "tall" "205" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "0" + "linespacing" "26" + "linegap" "4" + //"show_columns" "1" + + "medal_width" "s.08" + "avatar_width" "s.08" + "spacer" "s.01" + "name_width" "s.19" + "class_width" "s.04" + "award_width" "s.04" + "stats_width" "s.08" + "horiz_inset" "5" + + if_large + { + "tall" "340" + "linegap" "1" + } + } + } + "RedPlayerListBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedPlayerListBG" + "xpos" "r9-p.2" + "ypos" "117" + "zpos" "0" + "wide" "p.2" + "tall" "225" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "TFFatLineBorderClearBG" + + if_large + { + "ypos" "57" + "tall" "360" + } + } + } + "BlueMedals" + { + "ControlName" "EditablePanel" + "fieldName" "BlueMedals" + "xpos" "c-250" + "ypos" "-20" + "zpos" "50" + "wide" "150" + "tall" "15" + "visible" "1" + "enabled" "1" + + if_large + { + "visible" "0" + } + + "BlueGoldMedal" + { + "ControlName" "ImagePanel" + "fieldName" "BlueGoldMedal" + "xpos" "0" + "ypos" "0" + "zpos" "5" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "image" "competitive/competitive_coin_gold" + "scaleImage" "1" + } + "BlueGoldMedalValue" + { + "ControlName" "CExLabel" + "fieldName" "BlueGoldMedalValue" + "font" "MatchSummaryStatsAndMedals" + "labelText" "%blueteammedals_gold%" + "textAlignment" "center" + "xpos" "15" + "ypos" "0" + "zpos" "6" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BlueSilverMedal" + { + "ControlName" "ImagePanel" + "fieldName" "BlueSilverMedal" + "xpos" "55" + "ypos" "0" + "zpos" "5" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "image" "competitive/competitive_coin_silver" + "scaleImage" "1" + } + "BlueSilverMedalValue" + { + "ControlName" "CExLabel" + "fieldName" "BlueSilverMedalValue" + "font" "MatchSummaryStatsAndMedals" + "labelText" "%blueteammedals_silver%" + "textAlignment" "center" + "xpos" "70" + "ypos" "0" + "zpos" "6" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BlueBronzeMedal" + { + "ControlName" "ImagePanel" + "fieldName" "BlueBronzeMedal" + "xpos" "110" + "ypos" "0" + "zpos" "5" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "image" "competitive/competitive_coin_bronze" + "scaleImage" "1" + } + "BlueBronzeMedalValue" + { + "ControlName" "CExLabel" + "fieldName" "BlueBronzeMedalValue" + "font" "MatchSummaryStatsAndMedals" + "labelText" "%blueteammedals_bronze%" + "textAlignment" "center" + "xpos" "125" + "ypos" "0" + "zpos" "6" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + "RedMedals" + { + "ControlName" "EditablePanel" + "fieldName" "RedMedals" + "xpos" "c100" + "ypos" "-20" + "zpos" "50" + "wide" "150" + "tall" "15" + "visible" "1" + "enabled" "1" + + if_large + { + "visible" "0" + } + + "RedGoldMedal" + { + "ControlName" "ImagePanel" + "fieldName" "RedGoldMedal" + "xpos" "0" + "ypos" "0" + "zpos" "5" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "image" "competitive/competitive_coin_gold" + "scaleImage" "1" + } + "RedGoldMedalValue" + { + "ControlName" "CExLabel" + "fieldName" "RedGoldMedalValue" + "font" "MatchSummaryStatsAndMedals" + "labelText" "%redteammedals_gold%" + "textAlignment" "center" + "xpos" "15" + "ypos" "0" + "zpos" "6" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RedSilverMedal" + { + "ControlName" "ImagePanel" + "fieldName" "RedSilverMedal" + "xpos" "55" + "ypos" "0" + "zpos" "5" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "image" "competitive/competitive_coin_silver" + "scaleImage" "1" + } + "RedSilverMedalValue" + { + "ControlName" "CExLabel" + "fieldName" "RedSilverMedalValue" + "font" "MatchSummaryStatsAndMedals" + "labelText" "%redteammedals_silver%" + "textAlignment" "center" + "xpos" "70" + "ypos" "0" + "zpos" "6" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RedBronzeMedal" + { + "ControlName" "ImagePanel" + "fieldName" "RedBronzeMedal" + "xpos" "110" + "ypos" "0" + "zpos" "5" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "image" "competitive/competitive_coin_bronze" + "scaleImage" "1" + } + "RedBronzeMedalValue" + { + "ControlName" "CExLabel" + "fieldName" "RedBronzeMedalValue" + "font" "MatchSummaryStatsAndMedals" + "labelText" "%redteammedals_bronze%" + "textAlignment" "center" + "xpos" "125" + "ypos" "0" + "zpos" "6" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + } + } +} \ No newline at end of file diff --git a/biscottihud/resource/ui/hudmatchsummary_colour.res b/biscottihud/resource/ui/hudmatchsummary_colour.res new file mode 100644 index 0000000..0304063 --- /dev/null +++ b/biscottihud/resource/ui/hudmatchsummary_colour.res @@ -0,0 +1,8 @@ +"Resource/UI/HudMatchSummary.res" +{ + "RankBorder" + { + "border" "bSchemePrimeBorder1" + "bgcolor_override" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge.res b/biscottihud/resource/ui/hudmediccharge.res new file mode 100644 index 0000000..94ea079 --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge.res @@ -0,0 +1,374 @@ +#base "hudmediccharge_label1.res" +#base "hudmediccharge_label2.res" +#base "hudmediccharge_label3.res" +#base "hudmediccharge_linesh.res" +#base "hudmediccharge_linesv.res" +#base "hudmediccharge_positioning.res" +#base "hudmediccharge_size.res" +#base "hudmediccharge_vacccrosshair.res" +#base "hudmediccharge_vaccicon.res" + +"Resource/UI/HudMedicCharge.res" +{ + "Background" + { + "ControlName" "CTFImagePanel" + "fieldName" "Background" + "xpos" "50" + "ypos" "0" + "zpos" "0" + "wide" "-130" + "tall" "65" + "visible" "1" + "enabled" "1" + "image" "../hud/medic_charge_blue_bg" + "scaleImage" "1" + "teambg_2" "../hud/medic_charge_red_bg" + "teambg_3" "../hud/medic_charge_blue_bg" + } + + "MedicChargedShadedBG" + { + "ControlName" "CExButton" + "fieldName" "MedicChargedShadedBG" + "zpos" "1" + "wide" "100" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "defaultBgColor_Override" "bUberBoxNorm" + "paintbackgroundtype" "0" + "border_default" "NoBorder" + "labelText" "" + } + "BGColoredLineH" + { + "ControlName" "CTFImagePanel" + "fieldName" "BGColoredLineH" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "100" + "tall" "2" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "pin_to_sibling" "MedicChargedShadedBG" + "pin_to_sibling_corner" "2" + "pin_corner_to_sibling" "2" + } + "BGColoredLineV" + { + "ControlName" "CTFImagePanel" + "fieldName" "BGColoredLineV" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "2" + "tall" "50" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "pin_to_sibling" "MedicChargedShadedBG" + "pin_to_sibling_corner" "1" + "pin_corner_to_sibling" "1" + } + + "ChargeLabel" + { + "ControlName" "CExLabel" + "fieldName" "ChargeLabel" + "zpos" "2" + "tall" "50" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_UberchargeMinHUD" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontGiantBold" + "fgcolor" "bUberLabelNorm" + } + "ChargeLabel2" + { + "ControlName" "CExLabel" + "fieldName" "ChargeLabel2" + "xpos" "100" + "ypos" "10" + "zpos" "2" + "tall" "10" + "autoResize" "0" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_UberchargeMinHUD" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "Default" + "fgcolor" "bUberLabelNorm" + } + "ChargeLabel2Shadow" + { + "ControlName" "CExLabel" + "fieldName" "ChargeLabel2Shadow" + "xpos" "101" + "ypos" "11" + "zpos" "2" + "tall" "10" + "autoResize" "0" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_UberchargeMinHUD" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "Default" + "fgcolor" "Black" + } + "ChargeLabel3" + { + "ControlName" "CExLabel" + "fieldName" "ChargeLabel3" + "xpos" "100" + "zpos" "3" + "tall" "8" + "autoResize" "0" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_UberchargeMinHUD" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "Default" + } + "ChargeLabel3Shadow" + { + "ControlName" "CExLabel" + "fieldName" "ChargeLabel3Shadow" + "xpos" "101" + "ypos" "93" + "zpos" "3" + "autoResize" "0" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_UberchargeMinHUD" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "Default" + "fgcolor" "Black" + } + + "IndividualChargesLabel" + { + "ControlName" "CExLabel" + "fieldName" "IndividualChargesLabel" + "zpos" "2" + "wide" "55" + "tall" "50" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_IndividualUberchargesMinHUD" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontGiantBold" + "fgcolor" "bUberLabelNorm" + } + "IndividualChargesLabel2" + { + "ControlName" "CExLabel" + "fieldName" "IndividualChargesLabel2" + "xpos" "100" + "ypos" "10" // 16 for below ChargeLabel2 // 10 to replace it + "zpos" "2" + "tall" "10" + "autoResize" "0" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_IndividualUberchargesMinHUD" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "Default" + "fgcolor" "bUberLabelNorm" + } + "IndividualChargesLabel2Shadow" + { + "ControlName" "CExLabel" + "fieldName" "IndividualChargesLabelShadow" + "xpos" "101" + "ypos" "11" // 17 for below ChargeLabel2 // 11 to replace it + "zpos" "2" + "tall" "10" + "autoResize" "0" + "pinCorner" "2" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_IndividualUberchargesMinHUD" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "Default" + "fgcolor" "Black" + } + + "ChargeMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ChargeMeter" + "font" "Default" + "ypos" "90" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "bUberMeterNorm" + } + + "ChargeMeter1" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ChargeMeter1" + "font" "Default" + "ypos" "90" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "bUberMeterNorm" + } + + "ChargeMeter2" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ChargeMeter2" + "font" "Default" + "ypos" "90" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "bUberMeterNorm" + } + + "ChargeMeter3" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ChargeMeter3" + "font" "Default" + "ypos" "90" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "bUberMeterNorm" + } + + "ChargeMeter4" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ChargeMeter4" + "font" "Default" + "ypos" "90" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "bUberMeterNorm" + } + + "HealthClusterIcon" + { + "ControlName" "ImagePanel" + "fieldName" "HealthClusterIcon" + "xpos" "52" + "ypos" "17" + "wide" "36" + "tall" "36" + "visible" "0" + "enabled" "1" + "image" "../hud/ico_health_cluster" + "scaleImage" "1" + } + "ResistIconAnchor" + { + "ControlName" "ImagePanel" + "fieldName" "ResistIconAnchor" + "wide" "0" + "tall" "0" + "visible" "0" + "enabled" "1" + + "fillcolor" "0 0 0 0" + } + "ResistIcon" + { + "ControlName" "ImagePanel" + "fieldName" "ResistIcon" + "xpos" "0" + "ypos" "0" + "wide" "36" + "tall" "36" + "visible" "1" + "enabled" "1" + "image" "../HUD/defense_buff_bullet_blue" + "scaleImage" "1" + + "pin_to_sibling" "ResistIconAnchor" + "pin_to_sibling_corner" "0" + "pin_corner_to_sibling" "0" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge_label1.res b/biscottihud/resource/ui/hudmediccharge_label1.res new file mode 100644 index 0000000..bd82058 --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge_label1.res @@ -0,0 +1,11 @@ +"Resource/UI/HudMedicCharge.res" +{ + "MedicChargedShadedBG" + { + "visible" "1" + } + "ChargeLabel" + { + "wide" "95" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge_label2.res b/biscottihud/resource/ui/hudmediccharge_label2.res new file mode 100644 index 0000000..dcb5b7e --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge_label2.res @@ -0,0 +1,19 @@ +"Resource/UI/HudMedicCharge.res" +{ + "ChargeLabel2" + { + "visible" "1" + } + "ChargeLabel2Shadow" + { + "visible" "1" + } + "IndividualChargesLabel2" + { + "visible" "1" + } + "IndividualChargesLabel2Shadow" + { + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge_label3.res b/biscottihud/resource/ui/hudmediccharge_label3.res new file mode 100644 index 0000000..7410b3e --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge_label3.res @@ -0,0 +1,11 @@ +"Resource/UI/HudMedicCharge.res" +{ + "ChargeLabel3" + { + "visible" "0" + } + "ChargeLabel3Shadow" + { + "visible" "0" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge_linesh.res b/biscottihud/resource/ui/hudmediccharge_linesh.res new file mode 100644 index 0000000..8081a19 --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge_linesh.res @@ -0,0 +1,7 @@ +"Resource/UI/HudMedicCharge.res" +{ + "BGColoredLineH" + { + "visible" "0" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge_linesv.res b/biscottihud/resource/ui/hudmediccharge_linesv.res new file mode 100644 index 0000000..6c8948c --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge_linesv.res @@ -0,0 +1,7 @@ +"Resource/UI/HudMedicCharge.res" +{ + "BGColoredLineV" + { + "visible" "0" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge_positioning.res b/biscottihud/resource/ui/hudmediccharge_positioning.res new file mode 100644 index 0000000..392c4db --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge_positioning.res @@ -0,0 +1,18 @@ +"Resource/UI/HudMedicCharge.res" +{ + "MedicChargedShadedBG" + { + "xpos" "259" + "ypos" "118" + } + "ChargeLabel" + { + "xpos" "263" + "ypos" "118" + } + "IndividualChargesLabel" + { + "xpos" "270" + "ypos" "118" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge_size.res b/biscottihud/resource/ui/hudmediccharge_size.res new file mode 100644 index 0000000..c80f743 --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge_size.res @@ -0,0 +1,43 @@ +"Resource/UI/HudMedicCharge.res" +{ + "ChargeLabel3" + { + "ypos" "89" + "fgcolor" "Black" + } + "ChargeLabel3Shadow" + { + "tall" "-8" + } + "ChargeMeter" + { + "xpos" "70" + "wide" "100" + "tall" "8" + } + "ChargeMeter1" + { + "xpos" "70" + "wide" "19" + "tall" "8" + } + "ChargeMeter2" + { + "xpos" "97" + "wide" "19" + "tall" "8" + } + "ChargeMeter3" + { + "xpos" "124" + "wide" "19" + "tall" "8" + } + + "ChargeMeter4" + { + "xpos" "151" + "wide" "19" + "tall" "8" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge_vacccrosshair.res b/biscottihud/resource/ui/hudmediccharge_vacccrosshair.res new file mode 100644 index 0000000..53fd594 --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge_vacccrosshair.res @@ -0,0 +1,27 @@ +"Resource/UI/HudMedicCharge.res" +{ + "ChargeLabel2" + { + "wide" "40" + } + "ChargeLabel2Shadow" + { + "wide" "40" + } + "ChargeLabel3" + { + "wide" "40" + } + "ChargeLabel3Shadow" + { + "wide" "40" + } + "IndividualChargesLabel2" + { + "wide" "-40" + } + "IndividualChargesLabel2Shadow" + { + "wide" "-40" + } +} diff --git a/biscottihud/resource/ui/hudmediccharge_vaccicon.res b/biscottihud/resource/ui/hudmediccharge_vaccicon.res new file mode 100644 index 0000000..90f11e4 --- /dev/null +++ b/biscottihud/resource/ui/hudmediccharge_vaccicon.res @@ -0,0 +1,8 @@ +"Resource/UI/HudMedicCharge.res" +{ + "ResistIconAnchor" + { + "xpos" "102" + "ypos" "132" + } +} diff --git a/biscottihud/resource/ui/hudmenutauntselection.res b/biscottihud/resource/ui/hudmenutauntselection.res new file mode 100644 index 0000000..3e4a97e --- /dev/null +++ b/biscottihud/resource/ui/hudmenutauntselection.res @@ -0,0 +1,701 @@ +"Resource/UI/HudMenuTauntSelection.res" +{ + "MainBackground" + { + "ControlName" "ImagePanel" + "fieldName" "MainBackground" + "xpos" "0" + "ypos" "10" + "zpos" "0" + "wide" "470" + "tall" "170" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + } + + "Divider" + { + "ControlName" "ImagePanel" + "fieldName" "Divider" + "xpos" "8" + "ypos" "65" + "zpos" "1" + "wide" "456" + "tall" "2" + "fillcolor" "255 222 208 255" + } + + "IcoReelIcon" + { + "ControlName" "CIconPanel" + "fieldName" "IcoReelIcon" + "xpos" "10" + "ypos" "-3" + "zpos" "1" + "wide" "50" + "tall" "50" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "hud_taunt_menu_icon" + "iconColor" "255 255 255 255" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontGiantBold" + "xpos" "60" // align me to the left edge of the first selection + "ypos" "5" + "zpos" "3" + "wide" "360" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Taunt_Title" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "TitleLabelDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabelDropshadow" + "font" "HudFontGiantBold" + "fgcolor" "Black" + "xpos" "60" // align me to the left edge of the first selection + "ypos" "6" + "zpos" "3" + "wide" "360" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Taunt_Title" + "textAlignment" "Left" + "dulltext" "1" + "brighttext" "0" + } + + "WeaponTauntLabel" + { + "ControlName" "CExLabel" + "fieldName" "WeaponTauntLabel" + "font" "Default" + "xpos" "17" + "ypos" "49" + "zpos" "2" + "wide" "350" + "tall" "13" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Taunt_Weapon" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + + "CancelLabel" + { + "ControlName" "CExLabel" + "fieldName" "CancelLabel" + "font" "Default" + "xpos" "250" + "ypos" "49" + "zpos" "2" + "wide" "200" + "tall" "13" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Hud_Menu_Taunt_Cancel" + "textAlignment" "east" + "dulltext" "0" + "brighttext" "0" + } + + "TauntModelPanel1" + { + "ControlName" "CItemModelPanel" + "fieldName" "TauntModelPanel1" + "xpos" "17" + "ypos" "85" + "zpos" "100" + "wide" "50" + "tall" "40" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "0" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "38" + "text_ypos" "46" + "text_center" "1" + "text_forcesize" "3" + "model_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "visible" "0" + } + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "NumberBg1" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg1" + "xpos" "32" + "ypos" "140" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel1" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel1" + "font" "Default" + "fgcolor" "Black" + "xpos" "32" + "ypos" "140" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "1" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "TauntModelPanel2" + { + "ControlName" "CItemModelPanel" + "fieldName" "TauntModelPanel2" + "xpos" "73" + "ypos" "85" + "zpos" "100" + "wide" "50" + "tall" "40" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "0" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "38" + "text_ypos" "46" + "text_center" "1" + "text_forcesize" "3" + "model_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "visible" "0" + } + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "NumberBg2" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg2" + "xpos" "87" + "ypos" "140" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel2" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel2" + "font" "Default" + "fgcolor" "Black" + "xpos" "87" + "ypos" "140" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "2" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "TauntModelPanel3" + { + "ControlName" "CItemModelPanel" + "fieldName" "TauntModelPanel3" + "xpos" "127" + "ypos" "85" + "zpos" "100" + "wide" "50" + "tall" "40" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "0" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "38" + "text_ypos" "46" + "text_center" "1" + "text_forcesize" "3" + "model_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "visible" "0" + } + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "NumberBg3" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg3" + "xpos" "142" + "ypos" "140" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel3" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel3" + "font" "Default" + "fgcolor" "Black" + "xpos" "142" + "ypos" "140" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "3" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "TauntModelPanel4" + { + "ControlName" "CItemModelPanel" + "fieldName" "TauntModelPanel4" + "xpos" "182" + "ypos" "85" + "zpos" "100" + "wide" "50" + "tall" "40" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "0" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "38" + "text_ypos" "46" + "text_center" "1" + "text_forcesize" "3" + "model_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "visible" "0" + } + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "NumberBg4" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg4" + "xpos" "197" + "ypos" "140" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel4" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel4" + "font" "Default" + "fgcolor" "Black" + "xpos" "197" + "ypos" "140" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "4" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "TauntModelPanel5" + { + "ControlName" "CItemModelPanel" + "fieldName" "TauntModelPanel5" + "xpos" "237" + "ypos" "85" + "zpos" "100" + "wide" "50" + "tall" "40" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "0" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "38" + "text_ypos" "46" + "text_center" "1" + "text_forcesize" "3" + "model_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "visible" "0" + } + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "NumberBg5" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg5" + "xpos" "252" + "ypos" "140" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel5" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel5" + "font" "Default" + "fgcolor" "Black" + "xpos" "252" + "ypos" "140" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "5" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "TauntModelPanel6" + { + "ControlName" "CItemModelPanel" + "fieldName" "TauntModelPanel6" + "xpos" "292" + "ypos" "85" + "zpos" "100" + "wide" "50" + "tall" "40" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "0" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "38" + "text_ypos" "46" + "text_center" "1" + "text_forcesize" "3" + "model_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "visible" "0" + } + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "NumberBg6" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg6" + "xpos" "307" + "ypos" "140" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel6" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel6" + "font" "Default" + "fgcolor" "Black" + "xpos" "307" + "ypos" "140" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "6" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "TauntModelPanel7" + { + "ControlName" "CItemModelPanel" + "fieldName" "TauntModelPanel7" + "xpos" "347" + "ypos" "85" + "zpos" "100" + "wide" "50" + "tall" "40" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "0" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "38" + "text_ypos" "46" + "text_center" "1" + "text_forcesize" "3" + "model_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "visible" "0" + } + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "NumberBg7" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg7" + "xpos" "362" + "ypos" "140" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel7" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel7" + "font" "Default" + "fgcolor" "Black" + "xpos" "362" + "ypos" "140" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "7" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } + + "TauntModelPanel8" + { + "ControlName" "CItemModelPanel" + "fieldName" "TauntModelPanel8" + "xpos" "402" + "ypos" "85" + "zpos" "100" + "wide" "50" + "tall" "40" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "0" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "38" + "text_ypos" "46" + "text_center" "1" + "text_forcesize" "3" + "model_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "visible" "0" + } + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + + "NumberBg8" + { + "ControlName" "CIconPanel" + "fieldName" "NumberBg8" + "xpos" "417" + "ypos" "140" + "zpos" "4" + "wide" "15" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_key_blank" + "iconColor" "255 255 255 255" + } + + "NumberLabel8" + { + "ControlName" "CExLabel" + "fieldName" "NumberLabel8" + "font" "Default" + "fgcolor" "Black" + "xpos" "417" + "ypos" "140" + "zpos" "5" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "8" + "textAlignment" "Center" + "dulltext" "1" + "brighttext" "0" + } +} \ No newline at end of file diff --git a/biscottihud/resource/ui/hudminigame_base.res b/biscottihud/resource/ui/hudminigame_base.res new file mode 100644 index 0000000..8ce4d81 --- /dev/null +++ b/biscottihud/resource/ui/hudminigame_base.res @@ -0,0 +1,163 @@ +"Resource/UI/HudMiniGame_Base.res" +{ + "LeftSideBG" + { + "ControlName" "ImagePanel" + "fieldName" "LeftSideBG" + "xpos" "cs-0.5" + "ypos" "r77" + "zpos" "1" + "wide" "280" + "tall" "80" + "visible" "1" + "enabled" "1" + "image" "../hud/objectives_flagpanel_bg_left" + "scaleImage" "1" + } + + "RightSideBG" + { + "ControlName" "ImagePanel" + "fieldName" "RightSideBG" + "xpos" "cs-0.5" + "ypos" "r77" + "zpos" "1" + "wide" "280" + "tall" "80" + "visible" "1" + "enabled" "1" + "image" "../hud/objectives_flagpanel_bg_right" + "scaleImage" "1" + } + + "OutlineBG" + { + "ControlName" "ImagePanel" + "fieldName" "OutlineBG" + "xpos" "cs-0.5" + "ypos" "r77" + "zpos" "2" + "wide" "280" + "tall" "80" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_flagpanel_bg_outline" + "scaleImage" "1" + } + + "BlueScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueScore" + "xpos" "c-110" + "ypos" "r49" + "zpos" "8" + "wide" "75" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%bluescore%" + "font" "HudFontBig" + "fgcolor" "TanLight" + } + + "BlueScoreShadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueScoreShadow" + "xpos" "c-108" + "ypos" "r48" + "zpos" "7" + "wide" "75" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%bluescore%" + "font" "HudFontBig" + "fgcolor" "Black" + } + + "RedScore" + { + "ControlName" "CExLabel" + "fieldName" "RedScore" + "xpos" "c37" + "ypos" "r49" + "zpos" "8" + "wide" "75" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "east" + "labelText" "%redscore%" + "font" "HudFontBig" + "fgcolor" "TanLight" + } + + "RedScoreShadow" + { + "ControlName" "CExLabel" + "fieldName" "RedScoreShadow" + "xpos" "c39" + "ypos" "r48" + "zpos" "7" + "wide" "75" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "east" + "labelText" "%redscore%" + "font" "HudFontBig" + "fgcolor" "Black" + } + + "PlayingTo" + { + "ControlName" "CExLabel" + "fieldName" "PlayingTo" + "xpos" "cs-0.5" + "ypos" "r24" + "zpos" "7" + "wide" "90" + "tall" "18" + "visible" "1" + "enabled" "1" + "labelText" "#TF_PlayingTo" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "TanLight" + } + + "PlayingToBG" + { + "ControlName" "ImagePanel" + "fieldName" "PlayingToBG" + "xpos" "cs-0.5" + "ypos" "r24" + "zpos" "6" + "wide" "90" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "color_panel_brown" + } + + "GameImage" + { + "ControlName" "ImagePanel" + "fieldName" "GameImage" + "xpos" "cs-0.5" + "ypos" "r74" + "zpos" "5" + "wide" "50" + "tall" "50" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + } +} diff --git a/biscottihud/resource/ui/hudobjectiveflagpanel.res b/biscottihud/resource/ui/hudobjectiveflagpanel.res new file mode 100644 index 0000000..7c1688b --- /dev/null +++ b/biscottihud/resource/ui/hudobjectiveflagpanel.res @@ -0,0 +1,549 @@ +"Resource/UI/HudObjectiveFlagPanel.res" +{ + "ObjectiveStatusFlagPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ObjectiveStatusFlagPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + + "if_hybrid" + { + "zpos" "-1" + } + } + + "LeftSideBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "LeftSideBG" + "xpos" "c-91" + "ypos" "r35" [$WIN32] + "ypos" "r96" [$X360] + "zpos" "1" + "wide" "50" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "RightSideBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "RightSideBG" + "xpos" "c41" + "ypos" "r35" [$WIN32] + "ypos" "r96" [$X360] + "zpos" "1" + "wide" "50" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + "scaleImage" "1" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "OutlineBG" + { + "ControlName" "ImagePanel" + "fieldName" "OutlineBG" + "xpos" "c-140" + "ypos" "r75" [$WIN32] + "ypos" "r96" [$X360] + "zpos" "2" + "wide" "280" + "tall" "80" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_flagpanel_bg_outline" + "scaleImage" "1" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "BlueScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueScore" + "xpos" "c-91" + "ypos" "r34" + "ypos_lodef" "r88" + "ypos_hidef" "r93" + "zpos" "8" + "wide" "50" + "tall" "30" + "tall_hidef" "100" + "tall_lodef" "75" + "visible" "1" + "enabled" "1" + "textAlignment" "east" + "labelText" "%bluescore%" + "font" "HudFontBig" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "TanLight" + "textinsetx" "5" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "BlueScoreShadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueScoreShadow" + "xpos" "c-89" + "ypos" "r33" + "ypos_lodef" "r87" + "ypos_hidef" "r92" + "zpos" "7" + "wide" "50" + "tall" "30" + "tall_hidef" "100" + "tall_lodef" "75" + "visible" "1" + "enabled" "1" + "textAlignment" "east" + "labelText" "%bluescore%" + "font" "HudFontBig" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "Black" + "textinsetx" "5" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "RedScore" + { + "ControlName" "CExLabel" + "fieldName" "RedScore" + "xpos" "c41" + "ypos" "r34" + "ypos_lodef" "r88" + "ypos_hidef" "r93" + "zpos" "8" + "wide" "50" + "tall" "30" + "tall_hidef" "100" + "tall_lodef" "75" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%redscore%" + "font" "HudFontBig" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "TanLight" + "textinsetx" "5" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "RedScoreShadow" + { + "ControlName" "CExLabel" + "fieldName" "RedScoreShadow" + "xpos" "c43" + "ypos" "r33" + "ypos_lodef" "r87" + "ypos_hidef" "r92" + "zpos" "7" + "wide" "50" + "tall" "30" + "tall_hidef" "100" + "tall_lodef" "75" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%redscore%" + "font" "HudFontBig" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "Black" + "textinsetx" "5" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "OutlineImage" + { + "ControlName" "CTFImagePanel" + "fieldName" "OutlineImage" + "xpos" "0" + "ypos" "r117" [$WIN32] + "ypos" "r148" [$X360] + "zpos" "9" + "wide" "100" + "tall" "50" + "visible" "1" + "enabled" "1" + "image" "../hud/objectives_flagpanel_carried_outline" + "scaleImage" "1" + } + + "CarriedImage" + { + "ControlName" "ImagePanel" + "fieldName" "CarriedImage" + "xpos" "0" + "ypos" "r165" [$WIN32] + "ypos_minmode" "r127" [$WIN32] + "ypos" "r158" [$X360] + "zpos" "10" + "wide" "100" + "tall" "100" + "visible" "1" + "enabled" "1" + "image" "../hud/objectives_flagpanel_carried_red" + "scaleImage" "1" + + "if_hybrid" + { + "ypos" "r142" + } + + "if_specialdelivery" + { + "visible" "r142" + } + } + + "PlayingTo" + { + "ControlName" "CExLabel" + "fieldName" "PlayingTo" + "xpos" "c-41" + "ypos" "r22" + "zpos" "4" + "wide" "82" + "tall" "18" + "visible" "1" + "enabled" "1" + "labelText" "#TF_PlayingTo" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "TanLight" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "PlayingToBG" + { + "ControlName" "ImagePanel" + "fieldName" "PlayingToBG" + "xpos" "c-41" + "ypos" "r23" + "zpos" "3" + "wide" "82" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "BlueFlag" + { + "ControlName" "CTFFlagStatus" + "fieldName" "BlueFlag" + "xpos" "c-186" + "ypos" "r70" [$WIN32] + "ypos" "r116" [$X360] + "zpos" "5" + "wide" "160" + "tall" "90" + "visible" "1" + "enabled" "1" + + "if_hybrid" + { + "visible" "0" + "ypos" "r100" + } + + "if_hybrid_single" + { + "xpos" "c-80" + } + + "if_hybrid_double" + { + "xpos" "c-115" + } + + "if_mvm" + { + "ypos" "r90" + } + + "if_specialdelivery" + { + "ypos" "r90" + } + + "if_no_flags" + { + "visible" "0" + } + } + + "RedFlag" + { + "ControlName" "CTFFlagStatus" + "fieldName" "RedFlag" + "xpos" "c26" + "ypos" "r70" [$WIN32] + "ypos" "r116" [$X360] + "zpos" "5" + "wide" "160" + "tall" "90" + "visible" "1" + "enabled" "1" + + "if_hybrid" + { + "visible" "0" + "ypos" "r100" + } + + "if_hybrid_single" + { + "xpos" "c-80" + } + + "if_hybrid_double" + { + "xpos" "c-45" + } + + "if_mvm" + { + "ypos" "r90" + } + + "if_specialdelivery" + { + "ypos" "r90" + } + + "if_no_flags" + { + "visible" "0" + } + } + + "CaptureFlag" + { + "ControlName" "CTFArrowPanel" + "fieldName" "CaptureFlag" + "xpos" "c-35" + "ypos" "r88" [$WIN32] + "ypos" "r116" [$X360] + "zpos" "5" + "wide" "70" + "tall" "70" + "visible" "0" + "enabled" "1" + + "if_hybrid" + { + "ypos" "r100" + } + + "if_specialdelivery" + { + "ypos" "r90" + } + } + + "PoisonIcon" + { + "ControlName" "ImagePanel" + "fieldName" "PoisonIcon" + "xpos" "cs-0.5" + "ypos" "r75" + "zpos" "6" + "wide" "40" + "tall" "o1" + "visible" "0" + "enabled" "1" + "image" "marked_for_death" + "scaleImage" "1" + } + + "PoisonTimeLabel" + { + "ControlName" "CExLabel" + "fieldName" "PoisonTimeLabel" + "xpos" "cs-0.5" + "ypos" "r65" + "zpos" "6" + "wide" "40" + "tall" "20" + "visible" "0" + "enabled" "1" + "textAlignment" "center" + "labelText" "%redscore%" + "font" "HudFontMediumBold" + "fgcolor" "TanLight" + } + + "SpecCarriedImage" + { + "ControlName" "ImagePanel" + "fieldName" "SpecCarriedImage" + "xpos" "c-50" + "ypos" "r137" [$WIN32] + "ypos" "r158" [$X360] + "zpos" "10" + "wide" "100" + "tall" "100" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_flagpanel_carried_red" + "scaleImage" "1" + } +} diff --git a/biscottihud/resource/ui/hudobjectivekothtimepanel.res b/biscottihud/resource/ui/hudobjectivekothtimepanel.res new file mode 100644 index 0000000..20d2ff0 --- /dev/null +++ b/biscottihud/resource/ui/hudobjectivekothtimepanel.res @@ -0,0 +1,159 @@ +"Resource/UI/HudObjectiveKothTimePanel.res" +{ + "BlueTimer" + { + "ControlName" "CTFHudTimeStatus" + "fieldName" "BlueTimer" + "xpos" "0" + "xpos_minmode" "20" + "ypos" "0" + "zpos" "2" + "wide" "100" + "tall" "150" + "visible" "1" + "enabled" "1" + "delta_item_x" "22" + "delta_item_start_y" "50" + "delta_item_end_y" "70" + "PositiveColor" "0 255 0 255" + "NegativeColor" "255 0 0 255" + "delta_lifetime" "1.5" + "delta_item_font" "HudFontMedium" + + if_match + { + "xpos" "20" + "ypos" "10" + } + + "TimePanelValue" + { + "ControlName" "CExLabel" + "fieldName" "TimePanelValue" + "font" "HudFontMediumSmall" + "font_minmode" "HudFontSmall" + "font_lodef" "HudFontMedium" + "fgcolor" "TanLight" + "xpos" "16" + "xpos_minmode" "36" + "xpos_hidef" "114" + "xpos_lodef" "114" + "ypos" "3" + "ypos_minmode" "2" + "ypos_hidef" "15" + "ypos_lodef" "18" + "zpos" "3" + "wide" "78" + "wide_minmode" "38" + "wide_lodef" "50" + "tall" "28" + "tall_minmode" "14" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "0:00" + + if_match + { + "xpos" "36" + "ypos" "2" + "wide" "38" + "tall" "14" + "font" "HudFontSmall" + } + } + } + + "RedTimer" + { + "ControlName" "CTFHudTimeStatus" + "fieldName" "RedTimer" + "xpos" "90" + "xpos_minmode" "70" + "ypos" "0" + "zpos" "2" + "wide" "100" + "tall" "150" + "visible" "1" + "enabled" "1" + "delta_item_x" "22" + "delta_item_start_y" "50" + "delta_item_end_y" "70" + "PositiveColor" "0 255 0 255" + "NegativeColor" "255 0 0 255" + "delta_lifetime" "1.5" + "delta_item_font" "HudFontMedium" + + if_match + { + "xpos" "70" + "ypos" "10" + } + + "TimePanelValue" + { + "ControlName" "CExLabel" + "fieldName" "TimePanelValue" + "font" "HudFontMediumSmall" + "font_minmode" "HudFontSmall" + "font_lodef" "HudFontMedium" + "fgcolor" "TanLight" + "xpos" "16" + "xpos_minmode" "36" + "xpos_hidef" "114" + "xpos_lodef" "114" + "ypos" "3" + "ypos_minmode" "2" + "ypos_hidef" "15" + "ypos_lodef" "18" + "zpos" "3" + "wide" "78" + "wide_minmode" "38" + "wide_lodef" "50" + "tall" "28" + "tall_minmode" "14" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "0:00" + + if_match + { + "xpos" "36" + "ypos" "2" + "wide" "38" + "tall" "14" + "font" "HudFontSmall" + } + } + } + + "ActiveTimerBG" + { + "ControlName" "ImagePanel" + "fieldName" "ActiveTimerBG" + "xpos" "0" + "ypos" "32" + "ypos_minmode" "15" + "zpos" "1" + "wide" "78" + "wide_minmode" "38" + "wide_lodef" "90" + "tall" "2" + "tall_minmode" "1" + "tall_lodef" "38" + "visible" "0" + "enabled" "1" +// "image" "../hud/objectives_timepanel_active_bg" + "fillcolor" "255 255 255 175" + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + + if_match + { + "ypos" "25" + "wide" "38" + "tall" "1" + } + } +} diff --git a/biscottihud/resource/ui/hudobjectiverobotdestruction.res b/biscottihud/resource/ui/hudobjectiverobotdestruction.res new file mode 100644 index 0000000..c807402 --- /dev/null +++ b/biscottihud/resource/ui/hudobjectiverobotdestruction.res @@ -0,0 +1,857 @@ +#base "hudobjectiverobotdestruction_positioning.res" + +"Resource/UI/HudObjectiveFlagPanel.res" +{ + "ObjectiveStatusRobotDestruction" + { + "ControlName" "EditablePanel" + "fieldName" "ObjectiveStatusRobotDestruction" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + + "left_steal_edge_offset" "97" + "right_steal_edge_offset" "97" + "robot_x_offset" "78" + "robot_y_offset" "47" + "robot_x_step" "23" + "robot_y_step" "0" + + + "color_blue" "84 111 127 255" + "color_red" "171 59 59 255" + + "if_hybrid" + { + "zpos" "-1" + } + + "robot_kv" + { + "ControlName" "CTFHudRobotDestruction_RobotIndicator" + "xpos" "0" + "ypos" "0" + "wide" "20" + "tall" "20" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "PaintBackgroundType" "0" + "paintborder" "0" + "AutoResize" "0" + "skip_autoresize" "1" + } + } + + "PlayingTo" + { + "ControlName" "CExLabel" + "fieldName" "PlayingTo" + "xpos" "c-70" [$WIN32] + "xpos" "c-60" [$X360] + "ypos" "r28" [$WIN32] + "ypos" "r48" [$X360] + "zpos" "4" + "wide" "140" [$WIN32] + "wide" "120" [$X360] + "tall" "30" + "visible" "1" + "enabled" "1" + "labelText" "#TF_PlayingTo" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "TanLight" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "PlayingToBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayingToBG" + "xpos" "c-75" [$WIN32] + "xpos" "c-70" [$X360] + "ypos" "r31" [$WIN32] + "ypos" "r51" [$X360] + "zpos" "3" + "wide" "150" [$WIN32] + "wide" "140" [$X360] + "tall" "38" [$WIN32] + "tall" "35" [$X360] + "visible" "1" + "enabled" "1" + "image" "../hud/objectives_flagpanel_bg_playingto" + "image_hidef" "../hud/objectives_flagpanel_bg_playingto_hidef" + "scaleImage" "1" + + "if_hybrid" + { + "visible" "0" + } + + "if_mvm" + { + "visible" "0" + } + + "if_specialdelivery" + { + "visible" "0" + } + } + + "CarriedContainer" + { + "ControlName" "EditablePanel" + "fieldName" "CarriedContainer" + "zpos" "1" + "wide" "150" + "tall" "80" + "visible" "0" + "enabled" "1" + "bgcolor_override" "0 0 0 0" + + "CarriedImage" + { + "ControlName" "ImagePanel" + "fieldName" "CarriedImage" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enabled" "1" + "image" "../hud/obj_rd_powersupply_outline" + "scaleImage" "1" + "proportionalToParent" "1" + } + + "CarriedProgressBar" + { + "fieldName" "CarriedProgressBar" + "ControlName" "ImagePanel" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "f0" + "scaleimage" "0" + "visible" "1" + "proportionalToParent" "1" + "positionImage" "0" + "drawcolor" "84 111 127 255" + "Image" "../HUD/obj_rd_powersupply_meter" + + "left_offset" "30" + "right_offset" "30" + "standard_color" "84 111 127 255" + "bright_color" "110 159 189 255" + "left_to_right" "1" + } + + "FlagValue" + { + "ControlName" "CExLabel" + "fieldName" "FlagValue" + "xpos" "c-50" + "ypos" "23" + "zpos" "11" + "wide" "100" + "tall" "35" + "tall_hidef" "100" + "tall_lodef" "75" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%flagvalue%" + "font" "HudFontMediumBold" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "TanLight" + "proportionalToParent" "1" + } + + "FlagValueShadow" + { + "ControlName" "CExLabel" + "fieldName" "FlagValueShadow" + "xpos" "c-49" + "ypos" "24" + "zpos" "11" + "wide" "100" + "tall" "35" + "tall_hidef" "100" + "tall_lodef" "75" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%flagvalue%" + "font" "HudFontMediumBold" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "Black" + "proportionalToParent" "1" + } + } + + "ScoreContainer" + { + "fieldName" "ScoreContainer" + "ControlName" "EditablePanel" + "xpos" "c-200" + "ypos" "r131" + "zpos" "0" + "wide" "400" + "tall" "120" + "scaleimage" "0" + "visible" "1" + "enabled" "1" + + "ProgressBarContainer" + { + "fieldName" "ProgressBarContainer" + "ControlName" "EditablePanel" + "xpos" "c-150" + "ypos" "r61" + "zpos" "1" + "wide" "300" + "tall" "60" + "visible" "1" + "enabled" "1" + "proportionalToParent" "1" + + "ScoreOutline" + { + "fieldName" "ScoreOutline" + "ControlName" "ImagePanel" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "f0" + "scaleimage" "1" + "visible" "1" + "enabled" "1" + "Image" "../hud/objectives_corepanel_bg" + "proportionalToParent" "1" + } + + "BlueVictoryContainer" + { + "fieldName" "BlueVictoryContainer" + "ControlName" "EditablePanel" + "xpos" "25" + "ypos" "22" + "zpos" "5" + "wide" "f0" + "tall" "f0" + "visible" "0" + "enabled" "1" + "proportionalToParent" "1" + + "VictoryLabel" + { + "ControlName" "CExLabel" + "fieldName" "VictoryLabel" + "xpos" "0" + "ypos" "0" + "zpos" "8" + "wide" "95" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "#TF_RD_BlueFinale" + "font" "HudFontSmallBold" + "fgcolor" "TanLight" + "proportionalToParent" "1" + } + + "VictoryLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "VictoryLabelShadow" + "xpos" "1" + "ypos" "1" + "zpos" "7" + "wide" "95" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "#TF_RD_BlueFinale" + "font" "HudFontSmallBold" + "fgcolor" "Black" + "proportionalToParent" "1" + } + + "VictoryLabelTime" + { + "ControlName" "CExLabel" + "fieldName" "VictoryLabelTime" + "xpos" "0" + "ypos" "0" + "zpos" "8" + "wide" "55" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%victorytime%" + "font" "HudFontSmallBold" + "fgcolor" "TanLight" + "proportionalToParent" "1" + + "pin_to_sibling" "VictoryLabel" + "pin_corner_to_sibling" "7" + "pin_to_sibling_corner" "5" + } + + "VictoryLabelTimeShadow" + { + "ControlName" "CExLabel" + "fieldName" "VictoryLabelTimeShadow" + "xpos" "1" + "ypos" "1" + "zpos" "7" + "wide" "55" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%victorytime%" + "font" "HudFontSmallBold" + "fgcolor" "Black" + "proportionalToParent" "1" + + "pin_to_sibling" "VictoryLabel" + "pin_corner_to_sibling" "7" + "pin_to_sibling_corner" "5" + } + } + + "BlueProgressBarFill" + { + "fieldName" "BlueProgressBarFill" + "ControlName" "ImagePanel" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "150" + "tall" "f0" + "scaleimage" "0" + "visible" "1" + "proportionalToParent" "1" + "positionImage" "0" + "drawcolor" "84 111 127 255" + "Image" "../hud/objectives_corepanel_meter_solid" + + "left_offset" "10" + "right_offset" "0" + "standard_color" "84 111 127 255" + "bright_color" "110 159 189 255" + "left_to_right" "0" + "blink_threshold" "1.0" + "blink_rate" "10" + } + + "BlueProgressBarEscrow" + { + "fieldName" "BlueProgressBarEscrow" + "ControlName" "ImagePanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "150" + "tall" "f0" + "scaleimage" "0" + "visible" "1" + "proportionalToParent" "1" + "positionImage" "0" + "drawcolor" "141 160 171 255" + "Image" "../hud/objectives_corepanel_meter" + + "left_offset" "10" + "right_offset" "0" + "standard_color" "127 143 152 255" + "bright_color" "177 193 202 255" + "left_to_right" "0" + "blink_threshold" "1" + "blink_rate" "20" + } + + "RedVictoryContainer" + { + "fieldName" "RedVictoryContainer" + "ControlName" "EditablePanel" + "xpos" "25" + "ypos" "22" + "zpos" "5" + "wide" "f0" + "tall" "f0" + "visible" "0" + "enabled" "1" + "proportionalToParent" "1" + + "VictoryLabel" + { + "ControlName" "CExLabel" + "fieldName" "VictoryLabel" + "xpos" "140" + "ypos" "0" + "zpos" "8" + "wide" "90" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "#TF_RD_RedFinale" + "font" "HudFontSmallBold" + "fgcolor" "TanLight" + "proportionalToParent" "1" + } + + "VictoryLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "VictoryLabelShadow" + "xpos" "141" + "ypos" "1" + "zpos" "7" + "wide" "90" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "#TF_RD_RedFinale" + "font" "HudFontSmallBold" + "fgcolor" "Black" + "proportionalToParent" "1" + } + + "VictoryLabelTime" + { + "ControlName" "CExLabel" + "fieldName" "VictoryLabelTime" + "xpos" "0" + "ypos" "0" + "zpos" "8" + "wide" "55" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%victorytime%" + "font" "HudFontSmallBold" + "fgcolor" "TanLight" + "proportionalToParent" "1" + + "pin_to_sibling" "VictoryLabel" + "pin_corner_to_sibling" "7" + "pin_to_sibling_corner" "5" + } + + "VictoryLabelTimeShadow" + { + "ControlName" "CExLabel" + "fieldName" "VictoryLabelTimeShadow" + "xpos" "1" + "ypos" "1" + "zpos" "7" + "wide" "55" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%victorytime%" + "font" "HudFontSmallBold" + "fgcolor" "Black" + "proportionalToParent" "1" + + "pin_to_sibling" "VictoryLabel" + "pin_corner_to_sibling" "7" + "pin_to_sibling_corner" "5" + } + } + + "RedProgressBarFill" + { + "fieldName" "RedProgressBarFill" + "ControlName" "ImagePanel" + "xpos" "150" + "ypos" "0" + "zpos" "2" + "wide" "150" + "tall" "f0" + "scaleimage" "0" + "positionImage" "0" + "visible" "1" + "proportionalToParent" "1" + "drawcolor" "171 59 59 255" + "Image" "../hud/objectives_corepanel_meter_solid_right" + + "left_offset" "0" + "right_offset" "9" + "standard_color" "171 59 59 255" + "bright_color" "222 65 65 255" + "left_to_right" "1" + "blink_threshold" "1.0" + "blink_rate" "10" + } + + "RedProgressBarEscrow" + { + "fieldName" "RedProgressBarEscrow" + "ControlName" "ImagePanel" + "xpos" "150" + "ypos" "0" + "zpos" "1" + "wide" "150" + "tall" "f0" + "scaleimage" "0" + "positionImage" "0" + "visible" "1" + "proportionalToParent" "1" + "drawcolor" "212 151 151 255" + "Image" "../hud/objectives_corepanel_meter_right" + + "left_offset" "0" + "right_offset" "9" + "standard_color" "212 151 151 255" + "bright_color" "250 201 201 255" + "left_to_right" "1" + "blink_threshold" "1" + "blink_rate" "20" + } + } + + "BlueScoreValueContainer" + { + "ControlName" "EditablePanel" + "fieldName" "BlueScoreValueContainer" + "xpos" "80" + "ypos" "r48" + "zpos" "10" + "wide" "60" + "tall" "60" + "visible" "1" + "enabled" "1" + "bgcolor_override" "0 0 0 0" + "proportionalToParent" "1" + + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "xpos" "c-27" + "ypos" "c-20" + "zpos" "8" + "wide" "55" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%score%" + "font" "HudFontMediumBold" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "TanLight" + "proportionalToParent" "1" + } + + "ScoreShadow" + { + "ControlName" "CExLabel" + "fieldName" "ScoreShadow" + "xpos" "c-26" + "ypos" "c-19" + "zpos" "7" + "wide" "55" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%score%" + "font" "HudFontMediumBold" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "Black" + "proportionalToParent" "1" + } + } + + "RedScoreValueContainer" + { + "ControlName" "EditablePanel" + "fieldName" "RedScoreValueContainer" + "xpos" "r140" + "ypos" "r48" + "zpos" "10" + "wide" "60" + "tall" "60" + "visible" "1" + "enabled" "1" + "bgcolor_override" "0 0 0 0" + "proportionalToParent" "1" + + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "xpos" "c-27" + "ypos" "c-20" + "zpos" "8" + "wide" "55" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "east" + "labelText" "%score%" + "font" "HudFontMediumBold" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "TanLight" + "proportionalToParent" "1" + } + + "ScoreShadow" + { + "ControlName" "CExLabel" + "fieldName" "ScoreShadow" + "xpos" "c-26" + "ypos" "c-19" + "zpos" "7" + "wide" "55" + "tall" "35" + "visible" "1" + "enabled" "1" + "textAlignment" "east" + "labelText" "%score%" + "font" "HudFontMediumBold" + "font_hidef" "HudFontGiant" + "font_lodef" "HudFontGiant" + "fgcolor" "Black" + "proportionalToParent" "1" + } + } + + "BlueStolenContainer" + { + "ControlName" "EditablePanel" + "fieldName" "BlueStolenContainer" + "xpos" "r45" + "ypos" "r77" + "zpos" "1" + "wide" "30" + "tall" "40" + "visible" "1" + "enabled" "1" + "bgcolor_override" "0 0 0 0" + "proportionalToParent" "1" + + "IntelImage" + { + "ControlName" "ImagePanel" + "fieldName" "IntelImage" + "xpos" "5" + "ypos" "19" + "zpos" "10" + "wide" "21" + "tall" "21" + "visible" "0" + "enabled" "1" + "image" "../HUD/obj_thief_red" + "scaleImage" "1" + "proportionalToParent" "1" + } + + "DroppedIntelContainer" + { + "ControlName" "EditablePanel" + "fieldName" "DroppedIntelContainer" + "xpos" "0" + "ypos" "20" + "zpos" "1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enabled" "1" + "bgcolor_override" "0 0 0 0" + + "proportionalToParent" "1" + + "DroppedIntelImage" + { + "ControlName" "ImagePanel" + "fieldName" "DroppedIntelImage" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "20" + "visible" "1" + "enabled" "1" + "image" "../HUD/obj_rd_thief_dropped_blue" + "scaleImage" "1" + "proportionalToParent" "1" + } + } + + "IntelValue" + { + "ControlName" "CExLabel" + "fieldName" "IntelValue" + "xpos" "0" + "ypos" "0" + "zpos" "12" + "wide" "f0" + "tall" "20" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%intelvalue%" + "font" "HudFontSmallishBold" + "fgcolor" "TanLight" + "bgcolor_override" "0 0 0 0" + "proportionalToParent" "1" + } + + "IntelValueShadow" + { + "ControlName" "CExLabel" + "fieldName" "IntelValueShadow" + "xpos" "1" + "ypos" "1" + "zpos" "11" + "wide" "f0" + "tall" "20" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%intelvalue%" + "font" "HudFontSmallishBold" + "fgcolor" "Black" + "proportionalToParent" "1" + } + } + + "RedStolenContainer" + { + "ControlName" "EditablePanel" + "fieldName" "RedStolenContainer" + "xpos" "r45" + "ypos" "r77" + "zpos" "1" + "wide" "30" + "tall" "40" + "visible" "1" + "enabled" "1" + "bgcolor_override" "0 0 0 0" + "proportionalToParent" "1" + + "IntelImage" + { + "ControlName" "ImagePanel" + "fieldName" "IntelImage" + "xpos" "5" + "ypos" "19" + "zpos" "10" + "wide" "21" + "tall" "21" + "visible" "0" + "enabled" "1" + "image" "../HUD/obj_thief_blue" + "scaleImage" "1" + "proportionalToParent" "1" + } + + "DroppedIntelContainer" + { + "ControlName" "EditablePanel" + "fieldName" "DroppedIntelContainer" + "xpos" "0" + "ypos" "20" + "zpos" "1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enabled" "1" + "bgcolor_override" "0 0 0 0" + + "proportionalToParent" "1" + + "DroppedIntelImage" + { + "ControlName" "ImagePanel" + "fieldName" "DroppedIntelImage" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "20" + "visible" "1" + "enabled" "1" + "image" "../HUD/obj_rd_thief_dropped_red" + "scaleImage" "1" + "proportionalToParent" "1" + } + } + + "IntelValue" + { + "ControlName" "CExLabel" + "fieldName" "IntelValue" + "xpos" "0" + "ypos" "0" + "zpos" "12" + "wide" "f0" + "tall" "20" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%intelvalue%" + "font" "HudFontSmallishBold" + "fgcolor" "TanLight" + "bgcolor_override" "0 0 0 0" + "proportionalToParent" "1" + } + + "IntelValueShadow" + { + "ControlName" "CExLabel" + "fieldName" "IntelValueShadow" + "xpos" "1" + "ypos" "1" + "zpos" "11" + "wide" "f0" + "tall" "20" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%intelvalue%" + "font" "HudFontSmallishBold" + "fgcolor" "Black" + "proportionalToParent" "1" + } + } + } +} diff --git a/biscottihud/resource/ui/hudobjectiverobotdestruction_positioning.res b/biscottihud/resource/ui/hudobjectiverobotdestruction_positioning.res new file mode 100644 index 0000000..f0a0014 --- /dev/null +++ b/biscottihud/resource/ui/hudobjectiverobotdestruction_positioning.res @@ -0,0 +1,8 @@ +"Resource/UI/HudObjectiveFlagPanel.res" +{ + "CarriedContainer" + { + "xpos" "c114" + "ypos" "c28" + } +} diff --git a/biscottihud/resource/ui/hudobjectivetimepanel.res b/biscottihud/resource/ui/hudobjectivetimepanel.res new file mode 100644 index 0000000..ade1197 --- /dev/null +++ b/biscottihud/resource/ui/hudobjectivetimepanel.res @@ -0,0 +1,309 @@ +"Resource/UI/HudObjectiveTimePanel.res" +{ + "TimePanelBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "TimePanelBG" + "xpos" "16" + "xpos_minmode" "36" + "ypos" "0" + "zpos" "2" + "wide" "78" + "wide_minmode" "38" + "tall" "4" + "tall_minmode" "2" + "visible" "1" + "enabled" "1" + "image" "../hud/objectives_timepanel_blue_bg" + "scaleImage" "1" + "src_corner_height" "3" // pixels inside the image + "src_corner_width" "3" + + if_match + { + "xpos" "36" + "wide" "38" + "tall" "2" + } + } + + "MainBG" + { + "ControlName" "ImagePanel" + "fieldName" "MainBG" + "xpos" "16" + "xpos_minmode" "36" + "ypos" "4" + "ypos_minmode" "2" + "zpos" "2" + "wide" "78" + "wide_minmode" "38" + "tall" "28" + "tall_minmode" "13" // 23 + "visible" "1" + "enabled" "1" + + "fillcolor" "bBlackBG" + + if_match + { + "xpos" "36" + "ypos" "2" + "wide" "38" + "tall" "13" + } + } + "TimePanelProgressBar" + { + "ControlName" "CTFProgressBar" + "fieldName" "TimePanelProgressBar" + "xpos" "71" + "ypos" "6" + "zpos" "4" + "wide" "20" + "tall" "20" + "visible" "0" + "visible_minmode" "0" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/objectives_timepanel_progressbar" + "color_active" "TimerProgress.Active" + "color_inactive" "TimerProgress.InActive" + "color_warning" "TimerProgress.Warning" + "percent_warning" "0.75" + } + "WaitingForPlayersLabel" + { + "ControlName" "CExLabel" + "fieldName" "WaitingForPlayersLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_WaitingForPlayers" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubTextTiny" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + } + } + "WaitingForPlayersBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "WaitingForPlayersBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "tall_minmode" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "OvertimeLabel" + { + "ControlName" "CExLabel" + "fieldName" "OvertimeLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_Overtime" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubText" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + } + } + "OvertimeBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "OvertimeBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "tall_minmode" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "SuddenDeathLabel" + { + "ControlName" "CExLabel" + "fieldName" "SuddenDeathLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_SuddenDeath" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubTextSuddenDeath" + "font_hidef" "HudFontSmall" + "font_lodef" "HudFontSmall" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + } + } + "SuddenDeathBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "SuddenDeathBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "0" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "SetupLabel" + { + "ControlName" "CExLabel" + "fieldName" "SetupLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "19" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "0" + "enabled" "1" + "labelText" "#game_Setup" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubText" + "font_minmode" "ClockSubTextSuddenDeath" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + "font" "ClockSubTextSuddenDeath" + } + } + "SetupBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "SetupBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } + "ServerTimeLimitLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLimitLabel" + "xpos" "16" + "xpos_minmode" "35" + "ypos" "24" + "ypos_minmode" "10" + "zpos" "5" + "wide" "78" + "wide_minmode" "38" + "tall" "19" + "visible" "1" + "enabled" "1" + "labelText" "%servertimeleft%" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "font" "ClockSubText" + "font_minmode" "ClockSubTextSuddenDeath" + + if_match + { + "xpos" "35" + "ypos" "10" + "wide" "38" + "font" "ClockSubTextSuddenDeath" + } + } + "ServerTimeLimitLabelBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ServerTimeLimitLabelBG" + "xpos" "16" [$WIN32] + "xpos" "11" [$X360] + "ypos" "31" + "ypos_hidef" "-100" //off-screen + "ypos_lodef" "-100" //off-screen + "zpos" "1" + "wide" "78" + "tall" "-20" + "tall_minmode" "-20" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_timepanel_suddendeath" + "scaleImage" "1" + } +} diff --git a/biscottihud/resource/ui/hudpasstimeballstatus.res b/biscottihud/resource/ui/hudpasstimeballstatus.res new file mode 100644 index 0000000..fc1adf7 --- /dev/null +++ b/biscottihud/resource/ui/hudpasstimeballstatus.res @@ -0,0 +1,684 @@ +// enum PinCorner_e +// { +// PIN_TOPLEFT = 0, +// PIN_TOPRIGHT, +// PIN_BOTTOMLEFT, +// PIN_BOTTOMRIGHT, + +// // For sibling pinning +// PIN_CENTER_TOP, +// PIN_CENTER_RIGHT, +// PIN_CENTER_BOTTOM, +// PIN_CENTER_LEFT, +// }; + +"Resource/UI/HudPasstimeBallStatus.res" +{ + "HudPasstimeBallStatus" + { + "ControlName" "EditablePanel" + "fieldName" "HudPasstimeBallStatus" + "xpos" "0" + "ypos" "0" + "zpos" "100" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enabled" "1" + } + + "EventTitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "EventTitleLabel" + "dropshadow" "1" + "font" "HudFontBiggerBold" + "xpos" 0 + "ypos" c100 + "zpos" "3" + "wide" "f" + "tall" "25" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "A TEAM STOLE THE BALL" + fgcolor_override "224 217 197 255" + } + + "EventBonusLabel" + { + "ControlName" "CExLabel" + "fieldName" "EventBonusLabel" + "font" "HudFontMediumSmallBold" + "dropshadow" "1" + "xpos" 0 + "ypos" 0 + "zpos" "3" + "wide" "f" + "tall" "20" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "" + fgcolor_override "255 235 35 200" + pin_to_sibling EventTitleLabel + pin_corner_to_sibling 6 + pin_to_sibling_corner 4 + } + + "EventDetailLabel" + { + "ControlName" "CExLabel" + "fieldName" "EventDetailLabel" + "font" "HudFontMediumSmallBold" + "dropshadow" "1" + "xpos" 0 + "ypos" 0 + "zpos" "3" + "wide" "f" + "tall" "24" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "A TEAM STOLE THE BALL" + fgcolor_override "224 217 197 255" + pin_to_sibling EventTitleLabel + pin_corner_to_sibling 4 + pin_to_sibling_corner 6 + } + + "ProgressLevelBar" + { + "ControlName" "ImagePanel" + "fieldName" "ProgressLevelBar" + "xpos" "c-190" + "ypos" "48" // r88 + "ypos_minmode" "20" + "zpos" "0" + "wide" "380" + "tall" "48" + "visible" "1" + "enabled" "1" + "labelText" "" + "image" "../passtime/hud/passtime_ballcontrol_bar" + "scaleImage" "1" + } + + "BlueProgressEnd" + { + // tells the code where the end of the progress bar is since the image + // might be padded for npot reasons. + "ControlName" "Panel" + "fieldName" "BlueProgressEnd" + "xpos" "c-152" + "ypos" "76" // r64 + "ypos_minmode" "48" + "visible" "0" + } + + "RedProgressEnd" + { + // tells the code where the end of the progress bar is since the image + // might be padded for npot reasons. + "ControlName" "Panel" + "fieldName" "RedProgressEnd" + "xpos" "c152" + "ypos" "76" + "ypos_minmode" "48" + "visible" "0" + } + + "GoalBlue0" + { + "ControlName" "ImagePanel" + "fieldName" "GoalBlue0" + "xpos" "c-162" + "ypos" "64" // r72 + "ypos_minmode" "36" + "zpos" "1" + "wide" "17" + "tall" "17" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_home_blue" + "scaleImage" "1" + } + + "GoalBlue1" + { + "ControlName" "ImagePanel" + "fieldName" "GoalBlue1" + "xpos" "c-132" + "ypos" "64" + "ypos_minmode" "36" + "zpos" "1" + "wide" "17" + "tall" "17" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_home_blue" + "scaleImage" "1" + } + + "GoalBlue2" + { + "ControlName" "ImagePanel" + "fieldName" "GoalBlue2" + "xpos" "c-102" + "ypos" "64" + "ypos_minmode" "36" + "zpos" "1" + "wide" "17" + "tall" "17" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_home_blue" + "scaleImage" "1" + } + + + "GoalRed0" + { + "ControlName" "ImagePanel" + "fieldName" "GoalRed0" + "xpos" "c146" + "ypos" "64" + "ypos_minmode" "36" + "zpos" "1" + "wide" "17" + "tall" "17" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_home_red" + "scaleImage" "1" + } + + "GoalRed1" + { + "ControlName" "ImagePanel" + "fieldName" "GoalRed1" + "xpos" "c116" + "ypos" "64" + "ypos_minmode" "36" + "zpos" "1" + "wide" "17" + "tall" "17" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_home_red" + "scaleImage" "1" + } + + + "GoalRed2" + { + "ControlName" "ImagePanel" + "fieldName" "GoalRed2" + "xpos" "c86" + "ypos" "64" + "ypos_minmode" "36" + "zpos" "1" + "wide" "17" + "tall" "17" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_home_red" + "scaleImage" "1" + } + + "ProgressBallIcon" + { + "ControlName" "ImagePanel" + "fieldName" "ProgressBallIcon" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "32" + "tall" "32" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../passtime/hud/passtime_ball" + "scaleImage" "1" + } + + "ProgressSelfPlayerIcon" + { + "ControlName" "ImagePanel" + "fieldName" "ProgressSelfPlayerIcon" + "xpos" "0" + "ypos" "0" + "zpos" "-100" + "wide" "28" + "tall" "28" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "scaleImage" "1" + } + + "ProgressBallCarrierName" + { + "ControlName" "Label" + "fieldName" "ProgressBallCarrierName" + //font TargetID + "visible" "1" + "enabled" "1" + "zpos" "-400" + "xpos" "0" + "ypos" "-6" + "wide" "150" + "tall" "16" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "1" + "labelText" "NameOfCarrier" + //bgcolor_override "0 0 0 128" + //border TFThinLineBorder + pin_to_sibling ProgressLevelBar + pin_corner_to_sibling 4 + pin_to_sibling_corner 6 + } + + + + "BallPowerCluster" + { + "ControlName" "EditablePanel" + "fieldName" "BallPowerCluster" + "xpos" "0" + "ypos" "32" + "zpos" "5" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "visible" "1" + "enabled" "1" + + "BallPowerMeterFrame" + { + "ControlName" "ImagePanel" + "fieldName" "BallPowerMeterFrame" + "xpos" "c-100" + "ypos" "0" + "zpos" "5" + "wide" "200" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "../passtime/hud/passtime_powerball_meter_frame" + "scaleImage" "1" + } + + "BallPowerMeterFinalSectionContainer" + { + // This exists because the bar is filled by changing the width dynamically + // and if you change the width of the ImagePanel, it will stretch the image. + // But if you instead change the width of this container, the image is simply + // cut off instead of stretched. + // Also so that the bar is clipped nicely to the border. + "ControlName" "EditablePanel" + "fieldName" "BallPowerMeterFinalSectionContainer" + "xpos" "c-85" + "ypos" "16" + "zpos" "3" + "wide" "168" + "tall" "18" + "visible" "1" + "enabled" "1" + + "BallPowerMeterFinalSection" + { + "ControlName" "ImagePanel" + "fieldName" "BallPowerMeterFinalSection" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "168" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "white" + "scaleImage" "1" + } + } + + "BallPowerMeterFillContainer" + { + // This exists because the bar is filled by changing the width dynamically + // and if you change the width of the ImagePanel, it will stretch the image. + // But if you instead change the width of this container, the image is simply + // cut off instead of stretched. + // Also so that the bar is clipped nicely to the border. + "ControlName" "EditablePanel" + "fieldName" "BallPowerMeterFillContainer" + "xpos" "c-85" + "ypos" "16" + "zpos" "4" + "wide" "168" + "tall" "18" + "visible" "1" + "enabled" "1" + + "BallPowerMeterFill" + { + "ControlName" "ImagePanel" + "fieldName" "BallPowerMeterFill" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "168" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "white" + "scaleImage" "1" + } + } + } + + + + "playericon0" + { + "ControlName" "ImagePanel" + "fieldName" "playericon0" + wide 12 + tall 12 + } + + "playericon1" + { + "ControlName" "ImagePanel" + "fieldName" "playericon1" + wide 12 + tall 12 + } + + "playericon2" + { + "ControlName" "ImagePanel" + "fieldName" "playericon2" + wide 12 + tall 12 + } + + "playericon3" + { + "ControlName" "ImagePanel" + "fieldName" "playericon3" + wide 12 + tall 12 + } + + "playericon4" + { + "ControlName" "ImagePanel" + "fieldName" "playericon4" + wide 12 + tall 12 + } + + "playericon5" + { + "ControlName" "ImagePanel" + "fieldName" "playericon5" + wide 12 + tall 12 + } + + "playericon6" + { + "ControlName" "ImagePanel" + "fieldName" "playericon6" + wide 12 + tall 12 + } + + "playericon7" + { + "ControlName" "ImagePanel" + "fieldName" "playericon7" + wide 12 + tall 12 + } + + "playericon8" + { + "ControlName" "ImagePanel" + "fieldName" "playericon8" + wide 12 + tall 12 + } + + "playericon9" + { + "ControlName" "ImagePanel" + "fieldName" "playericon9" + wide 12 + tall 12 + } + + "playericon10" + { + "ControlName" "ImagePanel" + "fieldName" "playericon10" + wide 12 + tall 12 + } + + "playericon11" + { + "ControlName" "ImagePanel" + "fieldName" "playericon11" + wide 12 + tall 12 + } + + "playericon12" + { + "ControlName" "ImagePanel" + "fieldName" "playericon12" + wide 12 + tall 12 + } + + "playericon13" + { + "ControlName" "ImagePanel" + "fieldName" "playericon13" + wide 12 + tall 12 + } + + "playericon14" + { + "ControlName" "ImagePanel" + "fieldName" "playericon14" + wide 12 + tall 12 + } + + "playericon15" + { + "ControlName" "ImagePanel" + "fieldName" "playericon15" + wide 12 + tall 12 + } + + "playericon16" + { + "ControlName" "ImagePanel" + "fieldName" "playericon16" + wide 12 + tall 12 + } + + "playericon17" + { + "ControlName" "ImagePanel" + "fieldName" "playericon17" + wide 12 + tall 12 + } + + "playericon18" + { + "ControlName" "ImagePanel" + "fieldName" "playericon18" + wide 12 + tall 12 + } + + "playericon19" + { + "ControlName" "ImagePanel" + "fieldName" "playericon19" + wide 12 + tall 12 + } + + "playericon20" + { + "ControlName" "ImagePanel" + "fieldName" "playericon20" + wide 12 + tall 12 + } + + "playericon21" + { + "ControlName" "ImagePanel" + "fieldName" "playericon21" + wide 12 + tall 12 + } + + "playericon22" + { + "ControlName" "ImagePanel" + "fieldName" "playericon22" + wide 12 + tall 12 + } + + "playericon23" + { + "ControlName" "ImagePanel" + "fieldName" "playericon23" + wide 12 + tall 12 + } + + "playericon24" + { + "ControlName" "ImagePanel" + "fieldName" "playericon24" + wide 12 + tall 12 + } + + "playericon25" + { + "ControlName" "ImagePanel" + "fieldName" "playericon25" + wide 12 + tall 12 + } + + "playericon26" + { + "ControlName" "ImagePanel" + "fieldName" "playericon26" + wide 12 + tall 12 + } + + "playericon27" + { + "ControlName" "ImagePanel" + "fieldName" "playericon27" + wide 12 + tall 12 + } + + "playericon28" + { + "ControlName" "ImagePanel" + "fieldName" "playericon28" + wide 12 + tall 12 + } + + "playericon29" + { + "ControlName" "ImagePanel" + "fieldName" "playericon29" + wide 12 + tall 12 + } + + "playericon30" + { + "ControlName" "ImagePanel" + "fieldName" "playericon30" + wide 12 + tall 12 + } + + "playericon31" + { + "ControlName" "ImagePanel" + "fieldName" "playericon31" + wide 12 + tall 12 + } + + "playericon32" + { + "ControlName" "ImagePanel" + "fieldName" "playericon32" + wide 12 + tall 12 + } +} diff --git a/biscottihud/resource/ui/hudpasstimepassnotify.res b/biscottihud/resource/ui/hudpasstimepassnotify.res new file mode 100644 index 0000000..9a7ef28 --- /dev/null +++ b/biscottihud/resource/ui/hudpasstimepassnotify.res @@ -0,0 +1,151 @@ +// enum PinCorner_e +// { +// PIN_TOPLEFT = 0, +// PIN_TOPRIGHT, +// PIN_BOTTOMLEFT, +// PIN_BOTTOMRIGHT, + +// // For sibling pinning +// PIN_CENTER_TOP, +// PIN_CENTER_RIGHT, +// PIN_CENTER_BOTTOM, +// PIN_CENTER_LEFT, +// }; + +Resource/UI/HudPasstimePassNotify.res +{ + HudPasstimePassNotify + { + ControlName EditablePanel + fieldName HudPasstimePassNotify + xpos 0 + ypos 0 + zpos 0 + wide f0 + tall 480 + visible 1 + enabled 1 + } + + TextBox + { + ControlName EditablePanel + fieldName TextBox + xpos c-100 + ypos c-160 + zpos 1 + wide 200 + tall 40 + visible 1 + enabled 1 + border TFFatLineBorder + RoundedCorners 255 + + TextInPassRange + { + ControlName CExLabel + fieldName TextInPassRange + font HudFontMediumSmallBold + xpos 0 + ypos 0 + zpos 3 + wide 200 + tall 24 + visible 1 + enabled 1 + centerwrap 1 + textAlignment center + labelText #Msg_PasstimeInPassRange + fgcolor_override "224 217 197 180" + } + + TextLockedOn + { + ControlName CExLabel + fieldName TextLockedOn + font HudFontMediumSmallBold + xpos 0 + ypos 0 + zpos 3 + wide 200 + tall 24 + visible 1 + enabled 1 + centerwrap 1 + textAlignment center + labelText #Msg_PasstimeLockedOn + fgcolor_override "224 217 197 180" + } + + TextPassIncoming + { + ControlName CExLabel + fieldName TextPassIncoming + font HudFontMediumSmallBold + xpos 0 + ypos 0 + zpos 3 + wide 200 + tall 24 + visible 1 + enabled 1 + centerwrap 1 + textAlignment center + labelText #Msg_PasstimePassIncoming + fgcolor_override "224 217 197 180" + } + + TextPlayerName + { + ControlName CExLabel + fieldName TextPlayerName + font HudFontSmall + xpos 0 + ypos 22 + zpos 3 + wide 200 + tall 16 + visible 1 + enabled 1 + textAlignment center + labelText "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW" + fgcolor_override "224 217 197 180" + } + } + + PassLockIndicator + { + ControlName ImagePanel + fieldName PassLockIndicator + xpos 8 + ypos 0 + wide 38 + zpos 3 + tall 38 + visible 1 + enabled 1 + scaleImage 1 + image "../passtime/hud/passtime_ball_reticle_incomingpass" + pin_to_sibling TextBox + pin_corner_to_sibling 0 + pin_to_sibling_corner 1 + } + + SpeechIndicator + { + ControlName ImagePanel + fieldName SpeechIndicator + xpos 8 + ypos 0 + zpos 3 + wide 38 + tall 38 + visible 1 + enabled 1 + scaleImage 1 + image "../passtime/hud/passtime_pass_to_me_prompt" + pin_to_sibling TextBox + pin_corner_to_sibling 1 + pin_to_sibling_corner 0 + } +} diff --git a/biscottihud/resource/ui/hudpasstimeteamscore.res b/biscottihud/resource/ui/hudpasstimeteamscore.res new file mode 100644 index 0000000..1920366 --- /dev/null +++ b/biscottihud/resource/ui/hudpasstimeteamscore.res @@ -0,0 +1,190 @@ +"Resource/UI/HudPasstimeTeamScore.res" +{ + "HudTeamScore" + { + "ControlName" "EditablePanel" + "fieldName" "HudPasstimeTeamScore" + "xpos" "0" + "ypos" "25" + "zpos" "0" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + } + + "LeftSideBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "LeftSideBG" + "xpos" "c-91" + "ypos" "r60" + "zpos" "1" + "wide" "50" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "RightSideBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "RightSideBG" + "xpos" "c41" + "ypos" "r60" + "zpos" "1" + "wide" "50" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + "scaleImage" "1" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "OutlineBG" + { + "ControlName" "ImagePanel" + "fieldName" "OutlineBG" + "xpos" "c-140" + "ypos" "r95" + "zpos" "2" + "wide" "280" + "tall" "80" + "visible" "0" + "enabled" "1" + "image" "../hud/objectives_flagpanel_bg_outline" + "scaleImage" "1" + } + + "BlueScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueScore" + "xpos" "c-91" + "ypos" "r59" + "zpos" "8" + "wide" "50" + "tall" "30" + "visible" "1" + "enabled" "1" + "textAlignment" "east" + "labelText" "%bluescore%" + "font" "HudFontBig" + "fgcolor" "TanLight" + "textinsetx" "5" + } + + "BlueScoreShadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueScore" + "xpos" "c-89" + "ypos" "r58" + "zpos" "7" + "wide" "50" + "tall" "30" + "visible" "1" + "enabled" "1" + "textAlignment" "east" + "labelText" "%bluescore%" + "font" "HudFontBig" + "fgcolor" "Black" + "textinsetx" "5" + } + + "RedScore" + { + "ControlName" "CExLabel" + "fieldName" "RedScore" + "xpos" "c41" + "ypos" "r59" + "zpos" "8" + "wide" "50" + "tall" "30" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%redscore%" + "font" "HudFontBig" + "fgcolor" "TanLight" + "textinsetx" "5" + } + + "RedScoreShadow" + { + "ControlName" "CExLabel" + "fieldName" "RedScore" + "xpos" "c43" + "ypos" "r58" + "zpos" "7" + "wide" "50" + "tall" "30" + "visible" "1" + "enabled" "1" + "textAlignment" "west" + "labelText" "%redscore%" + "font" "HudFontBig" + "fgcolor" "Black" + "textinsetx" "5" + } + + "PlayingToCluster" + { + "ControlName" "EditablePanel" + "fieldName" "PlayingToCluster" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + + "PlayingTo" + { + "ControlName" "CExLabel" + "fieldName" "PlayingTo" + "xpos" "c-41" + "ypos" "r47" + "zpos" "4" + "wide" "82" + "tall" "18" + "visible" "1" + "enabled" "1" + "labelText" "#TF_PlayingTo" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontSmall" + "fgcolor" "TanLight" + } + + "PlayingToBG" + { + "ControlName" "ImagePanel" + "fieldName" "PlayingToBG" + "xpos" "c-41" + "ypos" "r48" + "zpos" "3" + "wide" "82" + "tall" "18" + "visible" "1" + "enabled" "1" + "fillcolor" "bBlackBG" + } + } +} \ No newline at end of file diff --git a/biscottihud/resource/ui/hudplayerclass.res b/biscottihud/resource/ui/hudplayerclass.res new file mode 100644 index 0000000..38912b8 --- /dev/null +++ b/biscottihud/resource/ui/hudplayerclass.res @@ -0,0 +1,396 @@ +"Resource/UI/HudPlayerClass.res" +{ + // player class data + "HudPlayerClass" + { + "ControlName" "EditablePanel" + "fieldName" "HudPlayerClass" + "xpos" "0" + "ypos" "18" + "zpos" "1" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + } + "PlayerStatusClassImage" + { + "ControlName" "CTFClassImage" + "fieldName" "PlayerStatusClassImage" + "xpos" "25" [$WIN32] + "xpos_minmode" "15" [$WIN32] + "ypos" "r88" [$WIN32] + "ypos_minmode" "r54" [$WIN32] + "xpos" "57" [$X360] + "ypos" "r110" [$X360] + "zpos" "2" + "wide" "75" + "wide_minmode" "37" + "tall" "75" + "tall_minmode" "37" + "visible" "1" + "enabled" "1" + "image" "../hud/class_scoutred" + "scaleImage" "1" + } + "PlayerStatusSpyImage" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayerStatusSpyImage" + "xpos" "3" [$WIN32] + "xpos_minmode" "-5" [$WIN32] + "ypos" "r67" [$WIN32] + "ypos_minmode" "r44" [$WIN32] + "xpos" "35" [$X360] + "ypos" "r89" [$X360] + "zpos" "2" + "wide" "-55" + "wide_minmode" "-27" + "tall" "55" + "tall_minmode" "27" + "visible" "1" + "enabled" "1" + "image" "../hud/class_spyred" + "scaleImage" "1" + "teambg_2" "../hud/class_spyred" + "teambg_3" "../hud/class_spyblue" + } + "PlayerStatusSpyOutlineImage" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayerStatusSpyOutlineImage" + "xpos" "35" [$X360] + "ypos" "r89" [$X360] + "zpos" "7" + "visible" "0" + "enabled" "1" + "image" "../hud/class_spy_outline" + "scaleImage" "1" + } + "PlayerStatusClassImageBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayerStatusClassImageBG" + "xpos" "0" [$WIN32] + "ypos" "r40" [$WIN32] + "xpos" "41" [$X360] + "ypos" "r82" [$X360] + "zpos" "1" + "wide" "110" + "wide_minmode" "99" + "tall" "40" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/character_red_bg" + "teambg_2" "../hud/character_red_bg" + "teambg_2_lodef" "../hud/character_red_bg_lodef" + "teambg_3" "../hud/character_blue_bg" + "teambg_3_lodef" "../hud/character_blue_bg_lodef" + + "src_corner_height" "4" // pixels inside the image + "src_corner_width" "4" + } + + "classmodelpanelBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "classmodelpanelBG" + "xpos" "0" [$WIN32] + "ypos" "r40" [$WIN32] + "xpos" "41" [$X360] + "ypos" "r82" [$X360] + "zpos" "1" + "wide" "110" + "wide_minmode" "99" + "tall" "40" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/character_red_bg_clipped" + "teambg_2" "../hud/character_red_bg_clipped" + "teambg_3" "../hud/character_blue_bg_clipped" + + "src_corner_height" "4" // pixels inside the image + "src_corner_width" "4" + } + + "classmodelpanel" + { + "ControlName" "CTFPlayerModelPanel" + "fieldName" "classmodelpanel" + + "xpos" "0" [$WIN32] + "ypos" "r214" [$WIN32] + "ypos_minmode" "r88" [$WIN32] + "zpos" "2" + "wide" "100" + "wide_minmode" "52" + "tall" "200" + "tall_minmode" "102" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "render_texture" "0" + "fov" "12" + "allow_rot" "1" + + "disable_speak_event" "1" + + "model" + { + "force_pos" "1" + + "angles_x" "0" + "angles_y" "172" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + "frame_origin_x" "0" + "frame_origin_y" "0" + "frame_origin_z" "0" + "spotlight" "1" + + "modelname" "" + } + + "customclassdata" + { + "undefined" + { + } + "Scout" + { + "fov" "25" + "angles_x" "-17" + "angles_x_minmode" "-10" + "angles_y" "220" // 145 + "angles_z" "-10" // 0 + "origin_x" "105" + "origin_y" "-4" + "origin_z" "-82" + "origin_z_minmode" "-52" + } + "Sniper" + { + "fov" "25" + "angles_x" "-10" + "angles_x_minmode" "0" + "angles_y" "172" + "angles_z" "0" + "origin_x" "130" + "origin_y" "-3" + "origin_z" "-97" + "origin_z_minmode" "-57" + } + "Soldier" + { + "fov" "25" + "angles_x" "-10" + "angles_x_minmode" "-3" + "angles_y" "170" + "angles_z" "0" + "origin_x" "145" + "origin_y" "-5" + "origin_y_minmode" "-8" + "origin_z" "-90" + "origin_z_minmode" "-50" + } + "Demoman" + { + "fov" "25" + "angles_x" "-13" + "angles_x_minmode" "-3" + "angles_y" "200" + "angles_z" "0" + "origin_x" "138" + "origin_y" "-4" + "origin_z" "-93" + "origin_z_minmode" "-53" + } + "Medic" + { + "fov" "20" + "angles_x" "-5" + "angles_x_minmode" "3" + "angles_y" "178" + "angles_z" "0" + "origin_x" "150" + "origin_y" "-5" + "origin_z" "-90" + "origin_z_minmode" "-60" + } + "Heavy" + { + "fov" "20" + "angles_x" "-5" + "angles_x_minmode" "0" + "angles_y" "200" + "angles_y_minmode" "210" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-102" + "origin_z_minmode" "-60" + } + "Pyro" + { + "fov" "20" + "angles_x" "-5" + "angles_x_minmode" "0" + "angles_y" "172" + "angles_z" "0" + "origin_x" "175" + "origin_y" "-5" + "origin_z" "-90" + "origin_z_minmode" "-50" + } + "Spy" + { + "fov" "20" + "angles_x" "-5" + "angles_x_minmode" "3" + "angles_y" "160" + "angles_z" "0" + "origin_x" "160" + "origin_y" "0" + "origin_y_minmode" "-3" + "origin_z" "-95" + "origin_z_minmode" "-60" + } + "Engineer" + { + "fov" "20" + "angles_x" "-10" + "angles_x_minmode" "0" + "angles_y" "168" + "angles_z" "0" + "origin_x" "140" + "origin_x_minmode" "160" + "origin_y" "-2" + "origin_y_minmode" "-7" + "origin_z" "-82" + "origin_z_minmode" "-52" + } + } + } + + "CarryingWeapon" + { + "ControlName" "EditablePanel" + "fieldName" "CarryingWeapon" + "xpos" "0" + "ypos" "r114" + "ypos_minmode" "r76" + "zpos" "1" + "wide" "500" + "tall" "32" + + "CarryingBackground" + { + "ControlName" "CTFImagePanel" + "fieldName" "CarryingBackground" + "xpos" "0" + "xpos_minmode" "0" + "ypos" "0" + "ypos_minmode" "0" + "zpos" "0" + "wide" "p1" + "wide_minmode" "f0" + "tall" "f0" + "tall_minmode" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_2_lodef" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + "teambg_3_lodef" "../hud/color_panel_blu" + "proportionaltoparent" "1" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "CarryingLabel" + { + "ControlName" "CExLabel" + "fieldName" "CarryingLabel" + "font" "ReplayBrowserSmallest" + "font_minmode" "TFFontMedium" + "xpos" "5" + "ypos" "3" + "zpos" "1" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "West" + "dulltext" "0" + "brighttext" "0" + "proportionaltoparent" "1" + "auto_wide_tocontents" "1" + "labelText" "%carrying%" + } + + "CarryingLabelDropShadow" + { + "ControlName" "CExLabel" + "fieldName" "CarryingLabelDropShadow" + "font" "ReplayBrowserSmallest" + "font_minmode" "TFFontMedium" + "xpos" "p0.011" + "xpos_minmode" "6" + "ypos" "p0.12" + "ypos_minmode" "3" + "zpos" "0" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "textAlignment" "West" + "dulltext" "0" + "brighttext" "0" + "proportionaltoparent" "1" + "auto_wide_tocontents" "1" + "fgcolor_override" "Black" + "labelText" "%carrying%" + } + + "OwnerLabel" + { + "ControlName" "Label" + "fieldName" "OwnerLabel" + "font" "FontStoreOriginalPrice" + "font_minmode" "TFFontSmall" + "xpos" "5" + "ypos" "12" + "zpos" "0" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "West" + "dulltext" "0" + "brighttext" "0" + "proportionaltoparent" "1" + "auto_wide_tocontents" "1" + } + } +} diff --git a/biscottihud/resource/ui/hudplayerhealth.res b/biscottihud/resource/ui/hudplayerhealth.res new file mode 100644 index 0000000..5986264 --- /dev/null +++ b/biscottihud/resource/ui/hudplayerhealth.res @@ -0,0 +1,720 @@ +#base "hudplayerhealth_linesh.res" +#base "hudplayerhealth_linesv.res" +#base "hudplayerhealth_overhealcross.res" +#base "hudplayerhealth_positioning.res" +#base "hudplayerhealth_style.res" + +"Resource/UI/HudPlayerHealth.res" +{ + // player health data + "HudPlayerHealth" + { + "ControlName" "EditablePanel" + "fieldName" "HudPlayerHealth" + "xpos" "32" [$X360] + "ypos" "r144" [$X360] + "zpos" "2" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + "HealthBonusPosAdj" "35" + "HealthDeathWarning" "0.49" + "HealthDeathWarningColor" "HUDDeathWarning" + } + "PlayerStatusHealthImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthImage" + "xpos" "22" + "ypos" "43" + "zpos" "4" + "wide" "46" + "tall" "46" + "enabled" "1" + "scaleImage" "1" + } + "PlayerStatusHealthImageBG" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthImageBG" + "xpos" "20" + "ypos" "41" + "zpos" "3" + "wide" "50" + "tall" "50" + "visible" "1" + "enabled" "1" + "image" "../hud/health_bg" + "scaleImage" "1" + } + "PlayerStatusHealthImageBGH" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayerStatusHealthImageBGH" + "zpos" "2" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + "PlayerStatusHealthImageBGV" + { + "ControlName" "CTFImagePanel" + "fieldName" "PlayerStatusHealthImageBGV" + "zpos" "2" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + "PlayerStatusHealthBonusImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthBonusImage" + "zpos" "2" + "wide" "50" + "tall" "50" + "visible" "0" + "enabled" "1" + "image" "../hud/health_over_bg" + "scaleImage" "1" + } + "PlayerHealthShadedBG" + { + "ControlName" "CExButton" + "fieldName" "PlayerHealthShadedBG" + "xpos" "94" + "ypos" "41" + "zpos" "1" + "wide" "100" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "defaultBgColor_Override" "bHPBoxNorm" + "paintbackgroundtype" "0" + "border_default" "NoBorder" + "labelText" "" + } + "BGColoredLineH" + { + "ControlName" "CTFImagePanel" + "fieldName" "BGColoredLineH" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "100" + "tall" "2" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "pin_to_sibling" "PlayerHealthShadedBG" + "pin_to_sibling_corner" "2" + "pin_corner_to_sibling" "2" + } + "BGColoredLineV" + { + "ControlName" "CTFImagePanel" + "fieldName" "BGColoredLineV" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "2" + "tall" "50" + "enabled" "1" + "image" "../hud/color_panel_brown" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown" + "teambg_2" "../hud/color_panel_red" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + "pin_to_sibling" "PlayerHealthShadedBG" + "pin_to_sibling_corner" "0" + "pin_corner_to_sibling" "0" + } + "PlayerStatusHealthValueSelf" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusHealthValueSelf" + "xpos" "96" + "ypos" "41" + "zpos" "5" + "wide" "100" + "tall" "50" + "visible" "1" + "enabled" "1" + "labelText" "%Health%" + "textAlignment" "center" + "font" "HudFontGiantBold" + "fgcolor" "bHPSelfNorm" + } + "PlayerStatusHealthValueSelfShadow" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusHealthValueSelfShadow" + "xpos" "97" + "ypos" "41" + "zpos" "5" + "wide" "100" + "tall" "50" + "visible" "1" + "enabled" "1" + "labelText" "%Health%" + "textAlignment" "center" + "font" "HudFontGiantBold" + "fgcolor" "Black" + } + "PlayerStatusMaxHealthValue" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusMaxHealthValue" + "xpos" "170" + "ypos" "41" + "zpos" "6" + "wide" "20" + "tall" "12" + "visible" "1" + "enabled" "1" + "labelText" "%MaxHealth%" + "textAlignment" "east" + "font" "DefaultSmall" + "fgcolor" "bHPSelfNorm" + } + "PlayerStatusBleedImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusBleedImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../vgui/bleed_drop" + "fgcolor" "TanDark" + } + "PlayerStatusHookBleedImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHookBleedImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "8" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../vgui/bleed_drop_grapple" + "fgcolor" "TanDark" + } + "PlayerStatusMilkImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusMilkImage" + "xpos" "157" + "xpos_minmode" "142" + "ypos" "0" + "zpos" "7" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../vgui/bleed_drop" + "fgcolor" "TanDark" + } + "PlayerStatusGasImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusGasImage" + "xpos" "157" + "xpos_minmode" "142" + "ypos" "0" + "zpos" "7" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../vgui/covered_in_gas" + "fgcolor" "TanDark" + } + "PlayerStatusMarkedForDeathImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusMarkedForDeathImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../vgui/marked_for_death" + "fgcolor" "TanDark" + } + "PlayerStatusMarkedForDeathSilentImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusMarkedForDeathSilentImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../vgui/marked_for_death" + "fgcolor" "TanDark" + } + "PlayerStatus_MedicUberBulletResistImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_MedicUberBulletResistImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../HUD/defense_buff_bullet_blue" + "fgcolor" "TanDark" + } + "PlayerStatus_MedicUberBlastResistImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_MedicUberBlastResistImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../HUD/defense_buff_explosion_blue" + "fgcolor" "TanDark" + } + "PlayerStatus_MedicUberFireResistImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_MedicUberFireResistImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../HUD/defense_buff_fire_blue" + "fgcolor" "TanDark" + } + + "PlayerStatus_MedicSmallBulletResistImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_MedicSmallBulletResistImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../HUD/defense_buff_bullet_blue" + "fgcolor" "TanDark" + } + "PlayerStatus_MedicSmallBlastResistImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_MedicSmallBlastResistImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../HUD/defense_buff_explosion_blue" + "fgcolor" "TanDark" + } + "PlayerStatus_MedicSmallFireResistImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_MedicSmallFireResistImage" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../HUD/defense_buff_fire_blue" + "fgcolor" "TanDark" + } + + + "PlayerStatus_WheelOfDoom" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_WheelOfDoom" + "xpos" "170" + "xpos_minmode" "185" + "ypos" "38" + "ypos_minmode" "55" + "zpos" "7" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../signs/death_wheel_whammy" + "fgcolor" "TanDark" + } + + "PlayerStatus_SoldierOffenseBuff" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_SoldierOffenseBuff" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../HUD/defense_buff_bullet_blue" + "fgcolor" "TanDark" + } + + "PlayerStatus_SoldierDefenseBuff" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_SoldierDefenseBuff" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../HUD/defense_buff_bullet_blue" + "fgcolor" "TanDark" + } + + "PlayerStatus_SoldierHealOnHitBuff" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_SoldierHealOnHitBuff" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../HUD/defense_buff_bullet_blue" + "fgcolor" "TanDark" + } + "PlayerStatus_SpyMarked" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_SpyMarked" + "xpos" "155" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "image" "" + "fgcolor" "TanDark" + } + "PlayerStatus_Parachute" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_Parachute" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "image" "" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneStrength" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneStrength" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_strength_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneHaste" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneHaste" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_haste_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneRegen" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneRegen" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_regen_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneResist" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneResist" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_resist_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneVampire" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneVampire" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_vampire_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneReflect" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneReflect" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_reflect_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RunePrecision" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RunePrecision" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_precision_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneAgility" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneAgility" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_agility_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneKnockout" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneKnockout" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_knockout_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneKing" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneKing" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_king_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RunePlague" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RunePlague" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_plague_hud" + "fgcolor" "TanDark" + } + "PlayerStatus_RuneSupernova" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatus_RuneSupernova" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "31" + "tall" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../Effects/powerup_supernova_hud" + "fgcolor" "TanDark" + } + "PlayerStatusSlowed" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusSlowed" + "xpos" "125" + "xpos_minmode" "110" + "ypos" "0" + "zpos" "7" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "../vgui/slowed" + "fgcolor" "TanDark" + } +} diff --git a/biscottihud/resource/ui/hudplayerhealth_linesh.res b/biscottihud/resource/ui/hudplayerhealth_linesh.res new file mode 100644 index 0000000..8b40bd8 --- /dev/null +++ b/biscottihud/resource/ui/hudplayerhealth_linesh.res @@ -0,0 +1,7 @@ +"Resource/UI/HudPlayerHealth.res" +{ + "BGColoredLineH" + { + "visible" "0" + } +} diff --git a/biscottihud/resource/ui/hudplayerhealth_linesv.res b/biscottihud/resource/ui/hudplayerhealth_linesv.res new file mode 100644 index 0000000..ff1eafd --- /dev/null +++ b/biscottihud/resource/ui/hudplayerhealth_linesv.res @@ -0,0 +1,7 @@ +"Resource/UI/HudPlayerHealth.res" +{ + "BGColoredLineV" + { + "visible" "0" + } +} diff --git a/biscottihud/resource/ui/hudplayerhealth_overhealcross.res b/biscottihud/resource/ui/hudplayerhealth_overhealcross.res new file mode 100644 index 0000000..3dc770d --- /dev/null +++ b/biscottihud/resource/ui/hudplayerhealth_overhealcross.res @@ -0,0 +1,7 @@ +"Resource/UI/HudPlayerHealth.res" +{ + "PlayerStatusHealthBonusImage" + { + "ypos" "9999" + } +} diff --git a/biscottihud/resource/ui/hudplayerhealth_positioning.res b/biscottihud/resource/ui/hudplayerhealth_positioning.res new file mode 100644 index 0000000..139e389 --- /dev/null +++ b/biscottihud/resource/ui/hudplayerhealth_positioning.res @@ -0,0 +1,8 @@ +"Resource/UI/HudPlayerHealth.res" +{ + "HudPlayerHealth" + { + "xpos" "c-333" [$WIN32] + "ypos" "c77" [$WIN32] + } +} diff --git a/biscottihud/resource/ui/hudplayerhealth_style.res b/biscottihud/resource/ui/hudplayerhealth_style.res new file mode 100644 index 0000000..a70b58b --- /dev/null +++ b/biscottihud/resource/ui/hudplayerhealth_style.res @@ -0,0 +1,23 @@ +"Resource/UI/HudPlayerHealth.res" +{ + "PlayerStatusHealthImage" + { + "visible" "0" + } + "PlayerStatusHealthImageBG" + { + "alpha" "0" + } + "PlayerStatusHealthImageBGH" + { + "visible" "0" + } + "PlayerStatusHealthImageBGV" + { + "visible" "0" + } + "PlayerStatusHealthBonusImage" + { + "xpos" "119" + } +} diff --git a/biscottihud/resource/ui/hudrocketpack.res b/biscottihud/resource/ui/hudrocketpack.res new file mode 100644 index 0000000..d7bd1d5 --- /dev/null +++ b/biscottihud/resource/ui/hudrocketpack.res @@ -0,0 +1,103 @@ +#base "hudrocketpack_size.res" + +"Resource/UI/HudRocketPack.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "visible" "1" + "enabled" "1" + "ypos" "c97" [$WIN32] + "tall" "45" + } + + "ItemEffectMeterBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectMeterBG" + "xpos" "4" + "ypos" "0" + "zpos" "1" + "wide" "90" + "tall" "45" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + "image" "../hud/ammo_blue_bg" + "teambg_2" "../hud/ammo_red_bg" + "teambg_2_lodef" "../hud/ammo_red_bg_lodef" + "teambg_3" "../hud/ammo_blue_bg" + "teambg_3_lodef" "../hud/ammo_blue_bg_lodef" + } + + "ItemEffectIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "ItemEffectIcon" + "xpos" "24" + "ypos" "0" + "zpos" "2" + "wide" "32" + "tall" "32" + "visible" "0" + "enabled" "1" + "image" "../hud/pyro_jetpack_off2" + "scaleImage" "1" + } + + "ItemEffectMeterLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterLabel" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "80" + "tall" "8" + "autoResize" "1" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_RocketPack_Disabled" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "font" "HudFontSmallest" + "fgcolor" "178 0 0 255" + } + + "ItemEffectMeter" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter" + "font" "Default" + "ypos" "33" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "White" + } + + "ItemEffectMeter2" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ItemEffectMeter2" + "font" "Default" + "ypos" "33" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + "fgcolor" "White" + } +} diff --git a/biscottihud/resource/ui/hudrocketpack_size.res b/biscottihud/resource/ui/hudrocketpack_size.res new file mode 100644 index 0000000..80c8f5a --- /dev/null +++ b/biscottihud/resource/ui/hudrocketpack_size.res @@ -0,0 +1,20 @@ +"Resource/UI/HudRocketPack.res" +{ + HudItemEffectMeter + { + "xpos" "c-40" [$WIN32] + "wide" "80" + } + "ItemEffectMeter" + { + "xpos" "16" + "wide" "22" + "tall" "5" + } + "ItemEffectMeter2" + { + "xpos" "42" + "wide" "22" + "tall" "5" + } +} diff --git a/biscottihud/resource/ui/hudroundcounter.res b/biscottihud/resource/ui/hudroundcounter.res new file mode 100644 index 0000000..88dc2f3 --- /dev/null +++ b/biscottihud/resource/ui/hudroundcounter.res @@ -0,0 +1,117 @@ +"Resource/UI/HudRoundCounter.res" +{ + "RoundCounter" + { + "fieldName" "RoundCounter" + "xpos" "cs-0.5" + "ypos" "-2" + "zpos" "2" + "wide" "300" + "tall" "25" + "visible" "1" + "enabled" "1" + "proportionaltoparent" "1" + + "starting_width" "20" + "width_per_round" "24" + "indicator_start_offset" "6" + "indicator_max_wide" "30" + + "RoundIndicatorPanel_kv" + { + "ypos" "3" + "wide" "6" + "tall" "6" + "zpos" "7" + "image" "../hud/comp_round_counter_dot_bg" + "scaleimage" "1" + } + + "RoundWinPanelRed_kv" + { + "ypos" "-3" + "wide" "17" + "tall" "17" + "zpos" "8" + "image" "../hud/comp_round_counter_light_red" + "scaleimage" "1" + } + + "RoundWinPanelBlue_kv" + { + "ypos" "-3" + "wide" "17" + "tall" "17" + "zpos" "8" + "image" "../hud/comp_round_counter_light_blue" + "scaleimage" "1" + } + } + + "Background" + { + "ControlName" "ImagePanel" + "fieldName" "Background" + "xpos" "cs-0.5" + "ypos" "0" + "zpos" "5" + "wide" "-o3.833" + "tall" "35" + + "backgroundtype" "2" + "proportionaltoparent" "1" + + "image" "../hud/comp_round_timer" + "scaleimage" "1" + } + + "BGAnchor" + { + "ControlName" "ImagePanel" + "fieldName" "BGAnchor" + "xpos" "150" + "ypos" "2" + "wide" "0" + "tall" "0" + "visible" "0" + "enabled" "1" + + "fillcolor" "0 0 0 0" + } + "BGBlue" + { + "ControlName" "ImagePanel" + "fieldName" "BGBlue" + "xpos" "2" // 6 for box + "ypos" "0" + "zpos" "0" + "wide" "2" // 30 for box + "tall" "8" + "visible" "1" + "enabled" "1" + + "fillcolor" "color_panel_blu" + + "pin_to_sibling" "BGAnchor" + "pin_to_sibling_corner" "0" + "pin_corner_to_sibling" "1" + } + "BGRed" + { + "ControlName" "ImagePanel" + "fieldName" "BGRed" + "xpos" "2" // 6 for box + "ypos" "0" + "zpos" "0" + "wide" "2" // 30 for box + "tall" "8" + "visible" "1" + "enabled" "1" + + "fillcolor" "color_panel_red" + + "pin_to_sibling" "BGAnchor" + "pin_to_sibling_corner" "1" + "pin_corner_to_sibling" "0" + } +} diff --git a/biscottihud/resource/ui/hudstopwatch.res b/biscottihud/resource/ui/hudstopwatch.res new file mode 100644 index 0000000..779995a --- /dev/null +++ b/biscottihud/resource/ui/hudstopwatch.res @@ -0,0 +1,213 @@ +"Resource/UI/HudStopWatch.res" +{ + "HudStopWatchBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "HudStopWatchBG" + "xpos" "100" + "ypos" "0" + "zpos" "-1" + "wide" "124" + "tall" "32" + "tall_minmode" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_brown" + + if_comp + { + "ypos" "36" + } + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "StopWatchImageCaptureTime" + { + "ControlName" "ImagePanel" + "fieldName" "StopWatchImageCaptureTime" + "xpos" "102" + "ypos" "2" + "zpos" "0" + "wide" "17" + "wide_minmode" "11" + "tall" "17" + "tall_minmode" "11" + "visible" "0" + "enabled" "1" + "image" "../hud/ico_time_10" + "scaleImage" "1" + //"teambg_2" "../hud/objectives_timepanel_red_bg" + //"teambg_3" "../hud/objectives_timepanel_blue_bg" + + if_comp + { + "ypos" "38" + } + } + + "ObjectiveStatusTimePanel" + { + "ControlName" "EditablePanel" + "fieldName" "ObjectiveStatusTimePanel" + "xpos" "100" + "ypos" "0" [$WIN32] + "zpos" "1" + "wide" "62" + "tall" "32" + "tall_minmode" "15" + "visible" "0" + "enabled" "1" + + if_comp + { + "ypos" "36" + } + + "TimePanelValue" + { + "ControlName" "CExLabel" + "fieldName" "TimePanelValue" + "font" "HudFontMediumSmall" + "font_minmode" "HudFontSmall" + "font_lodef" "HudFontMedium" + "fgcolor" "TanLight" + "xpos" "0" + "xpos_minmode" "0" + "ypos" "0" + "zpos" "3" + "wide" "62" + "wide_minmode" "62" + "tall" "32" + "tall_minmode" "15" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + } + } + + "StopWatchScoreToBeat" + { + "ControlName" "CExLabel" + "fieldName" "StopWatchScoreToBeat" + "font" "HudFontMediumBold" + "font_minmode" "HudFontSmallBold" + "labelText" "%scoretobeat%" + "textAlignment" "east" + "xpos" "112" + "ypos" "0" + "zpos" "4" + "wide" "77" + "tall" "32" + "tall_minmode" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_comp + { + "ypos" "36" + } + } + "StopWatchPointsLabel" + { + "ControlName" "CExLabel" + "fieldName" "StopWatchPointsLabel" + "font" "HudFontSmallest" + "labelText" "%pointslabel%" + "textAlignment" "east" + "xpos" "112" + "ypos" "0" + "zpos" "4" + "wide" "104" + "tall" "32" + "tall_minmode" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + + if_comp + { + "ypos" "36" + } + } + + "StopWatchLabel" + { + "ControlName" "CExLabel" + "fieldName" "StopWatchLabel" + "font" "HudFontSmallest" + "labelText" "%stopwatchlabel%" + "textAlignment" "center" + "xpos" "100" + "ypos" "0" + "zpos" "4" + "wide" "124" + "tall" "32" + "tall_minmode" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "wrap" "0" + + if_comp + { + "ypos" "36" + } + } + + "HudStopWatchDescriptionBG" + { + "ControlName" "ImagePanel" + "fieldName" "HudStopWatchDescriptionBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "100" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 175" + + if_comp + { + "ypos" "36" + } + } + + "StopWatchDescriptionLabel" + { + "ControlName" "CExLabel" + "fieldName" "StopWatchDescriptionLabel" + "font" "ClockSubTextTiny" + "labelText" "%descriptionlabel%" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "zpos" "4" + "wide" "100" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "wrap" "0" + + if_comp + { + "ypos" "36" + } + } +} diff --git a/biscottihud/resource/ui/hudtournament.res b/biscottihud/resource/ui/hudtournament.res new file mode 100644 index 0000000..4b1ce37 --- /dev/null +++ b/biscottihud/resource/ui/hudtournament.res @@ -0,0 +1,1059 @@ +"Resource/UI/HudTournament.res" +{ + HudTournament + { + "ControlName" "EditablePanel" + "fieldName" "HudTournament" + + "xpos" "c-125" + "ypos" "0" + "wide" "250" + "tall" "480" + "proportionaltoparent" "1" + + "team1_player_base_offset_x" "-75" + "team1_player_base_y" "0" + "team1_player_delta_x" "-47" + "team1_player_delta_y" "0" + "team2_player_base_offset_x" "25" + "team2_player_base_y" "0" + "team2_player_delta_x" "47" + "team2_player_delta_y" "0" + "teams_player_delta_x_comp" "42" + + "avatar_width" "63" + "spacer" "5" + "name_width" "57" + "horiz_inset" "2" + + if_mvm + { + "xpos" "c-250" + "ypos" "0" + "wide" "500" + "tall" "480" + + "team1_player_base_y" "66" + "team2_player_base_y" "66" + "team2_player_delta_x" "52" + } + + if_competitive + { + "xpos" "cs-0.5" + "ypos" "0" + "wide" "f0" + "tall" "480" + + "team1_player_base_y" "75" + "team2_player_base_y" "66" + "team2_player_base_offset_x" "5" + } + + if_readymode + { + "xpos" "c-320" + "ypos" "0" + "wide" "640" + "tall" "480" + + "team1_player_base_y" "66" + "team2_player_base_y" "66" + "team2_player_delta_x" "52" + "team2_player_base_offset_x" "5" + } + + "ModeImage" + { + "ControlName" "ImagePanel" + "fieldName" "ModeImage" + "xpos" "cs-0.5" + "ypos" "35" + "zpos" "0" + "wide" "60" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "image" "competitive/competitive_logo_laurel" + "scaleImage" "1" + "proportionaltoparent" "1" + + if_competitive + { + "visible" "1" + } + } + + "playerpanels_kv" + { + "visible" "0" + "wide" "50" + "tall" "33" + "zpos" "1" + + "color_ready" "0 255 0 220" + "color_notready" "0 0 0 220" + + if_mvm + { + "wide" "50" + "tall" "35" + } + + if_competitive + { + "wide" "40" + "tall" "29" + } + + if_readymode + { + "wide" "50" + "tall" "35" + } + + "playername" + { + "ControlName" "CExLabel" + "fieldName" "playername" + "font" "DefaultVerySmall" + "xpos" "5" + "ypos" "24" + "zpos" "5" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "labelText" "%playername%" + "textAlignment" "north-west" + //"fgcolor" "235 226 202 255" + + if_mvm + { + "xpos" "0" + "ypos" "25" + "wide" "50" + "textAlignment" "center" + "font" "PlayerPanelPlayerName" + } + + if_competitive + { + "xpos" "0" + "ypos" "21" + "wide" "p1" + "tall" "p0.22" + "textAlignment" "center" + "font" "PlayerPanelPlayerName" + "proportionaltoparent" "1" + } + + if_readymode + { + "xpos" "4" + "ypos" "25" + "wide" "48" + "textAlignment" "center" + "font" "PlayerPanelPlayerName" + } + } + + "classimage" + { + "ControlName" "CTFClassImage" + "fieldName" "classimage" + "xpos" "2" + "ypos" "2" + "zpos" "2" + "wide" "22" + "tall" "22" + "visible" "1" + "enabled" "1" + "image" "../hud/class_scoutred" + "scaleImage" "1" + + if_mvm + { + "xpos" "5" + "ypos" "4" + "wide" "20" + "tall" "20" + "image" "../vgui/hud_connecting" + } + + if_competitive + { + "xpos" "4" + "ypos" "4" + "wide" "p0.4" + "tall" "p0.6" + "image" "../vgui/hud_connecting" + "proportionaltoparent" "1" + } + + if_readymode + { + "xpos" "5" + "ypos" "4" + "wide" "20" + "tall" "20" + "image" "../vgui/hud_connecting" + } + } + + "classimagebg" + { + "ControlName" "Panel" + "fieldName" "classimagebg" + "xpos" "5" + "ypos" "4" + "zpos" "2" + "wide" "20" + "tall" "20" + "visible" "0" + "enabled" "1" + "bgcolor_override" "Black" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + } + + if_competitive + { + "xpos" "4" + "ypos" "4" + "wide" "p0.4" + "tall" "p0.6" + "visible" "1" + "proportionaltoparent" "1" + } + + if_readymode + { + "visible" "1" + } + } + + "HealthIcon" + { + "ControlName" "EditablePanel" + "fieldName" "HealthIcon" + "xpos" "22" + "ypos" "-3" + "zpos" "3" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "HealthBonusPosAdj" "10" + "HealthDeathWarning" "0.49" + "TFFont" "HudFontSmallest" + "HealthDeathWarningColor" "HUDDeathWarning" + "TextColor" "HudOffWhite" + + if_competitive + { + "wide" "p0.64" + "tall" "p0.96" + "visible" "1" + "proportionaltoparent" "1" + } + } + + "ReadyBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "ReadyBG" + "xpos" "30" + "ypos" "6" + "zpos" "-1" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "image" "../HUD/tournament_panel_brown" + + "src_corner_height" "22" // pixels inside the image + "src_corner_width" "22" + + "draw_corner_width" "3" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "3" + + if_mvm + { + "visible" "1" + } + + if_competitive + { + "xpos" "25" + "ypos" "5" + "wide" "p0.3" + "tall" "p0.45" + "proportionaltoparent" "1" + "visible" "1" + } + + if_readymode + { + "visible" "1" + } + } + + "ReadyImage" + { + "ControlName" "ImagePanel" + "fieldName" "ReadyImage" + "xpos" "32" + "ypos" "8" + "zpos" "0" + "wide" "12" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "image" "hud/checkmark" + "scaleImage" "1" + + if_mvm + { + "visible" "1" + } + + if_competitive + { + "xpos" "27" + "ypos" "7" + "wide" "p0.21" + "tall" "p0.34" + "proportionaltoparent" "1" + "visible" "1" + } + + if_readymode + { + "visible" "1" + } + } + + "respawntime" + { + "ControlName" "CExLabel" + "fieldName" "respawntime" + "font" "DefaultSmall" + "xpos" "30" + "ypos" "18" + "zpos" "5" + "wide" "23" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "labelText" "%respawntime%" + "textAlignment" "west" + //"fgcolor" "235 226 202 255" + + if_competitive + { + "xpos" "6" + "ypos" "7.5" + "wide" "p0.5" + "tall" "p0.28" + "autoResize" "1" + "proportionaltoparent" "1" + } + } + + "chargeamount" + { + "ControlName" "CExLabel" + "fieldName" "chargeamount" + "font" "DefaultSmall" + "xpos" "25" + "ypos" "17" + "zpos" "6" + "wide" "25" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "labelText" "%chargeamount%" + "textAlignment" "north" + "fgcolor" "0 255 0 255" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "22" + "ypos" "15" + "wide" "p0.45" + "tall" "p0.28" + "proportionaltoparent" "1" + } + } + + "specindex" + { + "ControlName" "CExLabel" + "fieldName" "specindex" + "font" "DefaultVerySmall" + "xpos" "4" + "ypos" "2" + "zpos" "5" + "wide" "50" + "tall" "8" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "labelText" "%specindex%" + "textAlignment" "north-west" + //"fgcolor" "235 226 202 255" + + if_competitive + { + "wide" "p0.9" + "tall" "p0.22" + "proportionaltoparent" "1" + } + } + } + } + + "HudTournamentBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "HudTournamentBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "250" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_brown" + "proportionaltoparent" "1" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "cs-0.5" + "ypos" "12" + "tall" "20" + "visible" "1" + } + + if_readymode + { + "xpos" "195" + "visible" "1" + } + } + "TournamentLabel" + { + "ControlName" "Label" + "fieldName" "TournamentLabel" + "font" "HudFontSmall" + "xpos" "5" + "ypos" "3" + "zpos" "1" + "wide" "240" + "tall" "19" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%tournamentstatelabel%" + "textAlignment" "center" + "proportionaltoparent" "1" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "cs-0.5" + "visible" "0" + } + + if_readymode + { + "xpos" "200" + "visible" "0" + } + } + + "HudTournamentBLUEBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "HudTournamentBLUEBG" + "xpos" "5" + "ypos" "23" + "zpos" "-1" + "wide" "120" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_blu" + "proportionaltoparent" "1" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "cs-0.5" + "visible" "0" + } + + if_readymode + { + "xpos" "200" + "visible" "0" + } + } + "TournamentBLUELabel" + { + "ControlName" "Label" + "fieldName" "TournamentBLUELabel" + "font" "HudFontSmallest" + "xpos" "12" + "ypos" "24" + "zpos" "1" + "wide" "65" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%bluenamelabel%" + "textAlignment" "west" + "proportionaltoparent" "1" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "cs-0.5" + "visible" "0" + } + + if_readymode + { + "xpos" "207" + "visible" "0" + } + } + "TournamentBLUEStateLabel" + { + "ControlName" "Label" + "fieldName" "TournamentBLUEStateLabel" + "font" "HudFontSmallestBold" + "xpos" "56" + "ypos" "24" + "zpos" "1" + "wide" "65" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%bluestate%" + "textAlignment" "east" + "proportionaltoparent" "1" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "cs-0.5" + "visible" "0" + } + + if_readymode + { + "xpos" "251" + "visible" "0" + } + } + + "HudTournamentREDBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "HudTournamentREDBG" + "xpos" "125" + "ypos" "23" + "zpos" "-1" + "wide" "120" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_red" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + "proportionaltoparent" "1" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "cs-0.5" + "visible" "0" + } + + if_readymode + { + "xpos" "320" + "visible" "0" + } + } + "TournamentREDLabel" + { + "ControlName" "Label" + "fieldName" "TournamentREDLabel" + "font" "HudFontSmallest" + "xpos" "175" + "ypos" "24" + "zpos" "1" + "wide" "65" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%rednamelabel%" + "textAlignment" "east" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "370" + "visible" "0" + } + + if_readymode + { + "xpos" "370" + "visible" "0" + } + } + "TournamentREDStateLabel" + { + "ControlName" "Label" + "fieldName" "TournamentREDStateLabel" + "font" "HudFontSmallestBold" + "xpos" "130" + "ypos" "24" + "zpos" "1" + "wide" "65" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%redstate%" + "textAlignment" "west" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "325" + "visible" "0" + } + + if_readymode + { + "xpos" "325" + "visible" "0" + } + } + "TournamentConditionLabel" + { + "ControlName" "CExLabel" + "fieldName" "TournamentConditionLabel" + "font" "TFFontSmall" + "fgcolor" "TanLight" + "xpos" "8" + "ypos" "42" + "zpos" "1" + "wide" "250" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%winconditions%" + "textAlignment" "north-west" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "xpos" "c-45" + "ypos" "18" + "tall" "35" + "visible" "1" + "font" "TFFontMedium" + } + + if_readymode + { + "xpos" "285" + "ypos" "26" + "visible" "1" + "font" "TFFontMedium" + } + } + + "HudTournamentBGHelp" + { + "ControlName" "ScalableImagePanel" + "fieldName" "HudTournamentBGHelp" + "xpos" "0" + "ypos" "55" + "zpos" "-1" + "wide" "250" + "tall" "13" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_brown" + + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + + if_competitive + { + "visible" "0" + } + + if_readymode + { + "visible" "0" + } + } + "TournamentInstructionsLabel" + { + "ControlName" "CExLabel" + "fieldName" "TournamentInstructionsLabel" + "font" "TFFontSmall" + "xpos" "0" + "ypos" "54" + "wide" "250" + "tall" "10" + "zpos" "1" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%readylabel%" + "textAlignment" "center" + "proportionaltoparent" "1" + + if_mvm + { + "font" "HudFontSmallishBold" + "xpos" "155" + "ypos" "105" + "wide" "190" + "tall" "20" + "zpos" "3" + } + + if_competitive + { + "font" "HudFontSmallishBold" + "xpos" "cs-0.5" + "ypos" "110" + "wide" "190" + "tall" "20" + "zpos" "3" + } + + if_readymode + { + "font" "HudFontSmallishBold" + "xpos" "225" + "ypos" "110" + "wide" "190" + "tall" "20" + "zpos" "3" + } + } + + "TournamentInstructionsLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "TournamentInstructionsLabelShadow" + "font" "TFFontSmall" + "xpos" "0" + "ypos" "54" + "wide" "250" + "tall" "10" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "wrap" "0" + "labelText" "%readylabel%" + "textAlignment" "center" + "proportionaltoparent" "1" + + if_mvm + { + "font" "HudFontSmallishBold" + "xpos" "156" + "ypos" "106" + "wide" "190" + "tall" "20" + "visible" "1" + "fgcolor" "Black" + } + + if_competitive + { + "font" "HudFontSmallishBold" + "xpos" "cs-0.5" + "ypos" "111" + "wide" "190" + "tall" "20" + "visible" "1" + "fgcolor" "Black" + } + + if_readymode + { + "font" "HudFontSmallishBold" + "xpos" "226" + "ypos" "111" + "wide" "190" + "tall" "20" + "visible" "1" + "fgcolor" "Black" + } + } + + "TournamentReadyHintIcon" + { + "ControlName" "CExLabel" + "fieldName" "TournamentReadyHintIcon" + "font" "GameUIButtonsSteamControllerSmallest" + "xpos" "0" + "ypos" "54" + "zpos" "3" + "wide" "40" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "labelText" "Y" + "textAlignment" "left" + + if_mvm + { + "xpos" "166" + "ypos" "101" + "wide" "190" + "tall" "22" + } + + if_competitive + { + "xpos" "236" + "ypos" "106" + "wide" "190" + "tall" "22" + } + + if_readymode + { + "xpos" "236" + "ypos" "106" + "wide" "190" + "tall" "22" + } + } + + "CountdownBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "CountdownBG" + "xpos" "230" + "ypos" "r55" + "zpos" "1" + "wide" "40" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "image" "../HUD/color_panel_brown" + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + "proportionaltoparent" "1" + + if_competitive + { + "xpos" "cs-0.5" + "ypos" "150" + } + + if_readymode + { + "xpos" "300" + "ypos" "130" + } + } + + "CountdownLabel" + { + "ControlName" "CExLabel" + "fieldName" "CountdownLabel" + "font" "HudFontGiant" + "xpos" "230" + "ypos" "r55" + "wide" "40" + "tall" "40" + "zpos" "5" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "wrap" "0" + "labelText" "%tournamentstatelabel%" + "textAlignment" "center" + "proportionaltoparent" "1" + + if_competitive + { + "xpos" "cs-0.5" + "ypos" "cs-0.1" + "fgcolor" "TanLight" + "font" "HudFontGiant" + } + + if_readymode + { + "xpos" "300" + "ypos" "130" + } + } + + "CountdownLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "CountdownLabelShadow" + "font" "HudFontGiant" + "xpos" "231" + "ypos" "r54" + "wide" "40" + "tall" "40" + "zpos" "4" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "wrap" "0" + "labelText" "%tournamentstatelabel%" + "textAlignment" "center" + "fgcolor" "Black" + "proportionaltoparent" "1" + + if_competitive + { + "xpos" "cs-0.48" + "ypos" "cs-0.08" + "font" "HudFontGiant" + } + + if_readymode + { + "xpos" "300" + "ypos" "130" + } + } +} diff --git a/biscottihud/resource/ui/hudtournamentsetup.res b/biscottihud/resource/ui/hudtournamentsetup.res new file mode 100644 index 0000000..e59a134 --- /dev/null +++ b/biscottihud/resource/ui/hudtournamentsetup.res @@ -0,0 +1,151 @@ +"Resource/UI/HudTournamentSetup.res" +{ + "HudTournamentSetupBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "HudTournamentSetupBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "180" + "tall" "65" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_brown" + + + "src_corner_height" "23" // pixels inside the image + "src_corner_width" "23" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "TournamentSetupLabel" + { + "ControlName" "Label" + "fieldName" "TournamentLabel" + "font" "HudFontSmallBold" + "xpos" "8" + "ypos" "0" + "zpos" "1" + "wide" "180" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%tournamentstatelabel%" + "textAlignment" "west" + } + + "TournamentTeamNameLabel" + { + "ControlName" "Label" + "fieldName" "TournamentTeamNameLabel" + "font" "HudFontSmallest" + "xpos" "67" + "ypos" "28" + "zpos" "1" + "wide" "74" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "#Tournament_TeamNamePanel" + "textAlignment" "west" + } + + "TournamentNameEdit" + { + "ControlName" "TextEntry" + "fieldName" "TournamentNameEdit" + "xpos" "8" + "ypos" "27" + "wide" "120" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + "wrap" "0" + "fgcolor_override" "235 226 202 255" + "bgcolor_override" "0 0 0 255" + "labelText" "%teamname%" + "textAlignment" "west" + } + + "HudTournamentNameBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "HudTournamentNameBG" + "xpos" "8" + "ypos" "28" + "wide" "50" + "tall" "14" + "zpos" "0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "0 0 0 255" + "scaleImage" "1" + } + + "TournamentNotReadyButton" + { + "ControlName" "CExButton" + "fieldName" "TournamentNotReadyButton" + "xpos" "8" + "ypos" "46" + "wide" "70" + "tall" "14" + "zpos" "0" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "labelText" "Not Ready" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "command" "teamnotready" + "default" "1" + "font" "HudFontSmallestBold" + "fgcolor" "Red" + } + + "TournamentReadyButton" + { + "ControlName" "CExButton" + "fieldName" "TournamentReadyButton" + "xpos" "96" + "ypos" "46" + "wide" "70" + "tall" "14" + "zpos" "0" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "labelText" "Ready" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "command" "teamready" + "default" "1" + "font" "HudFontSmallestBold" + "fgcolor" "FooterBGBlack" + } +} diff --git a/biscottihud/resource/ui/itemdiscardpanel.res b/biscottihud/resource/ui/itemdiscardpanel.res new file mode 100644 index 0000000..ce8dc10 --- /dev/null +++ b/biscottihud/resource/ui/itemdiscardpanel.res @@ -0,0 +1,850 @@ +#base "itemdiscardpanel_colour.res" + +"Resource/UI/ItemDiscardPanel.res" +{ + "item_discard" + { + "ControlName" "Frame" + "fieldName" "item_discard" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + "PaintBackgroundType" "0" + + "title" "#CharInfoAndSetup" + "title_font" "HudFontMediumBold" + "titletextinsetX" "40" + "titletextinsetY" "0" + "titlebarfgcolor_override" "200 187 161 255" + "titlebardisabledfgcolor_override" "200 187 161 255" + "titlebarbgcolor_override" "46 43 42 255" + } + + "modelpanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "modelpanel" + "xpos" "c-75" + "ypos" "30" + "zpos" "1" + "wide" "150" + "tall" "100" + "visible" "1" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "model_ypos" "5" + "model_tall" "80" + "name_only" "1" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + "inventory_image_type" "1" + } + } + "ItemMouseOverItemPanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "ItemMouseOverItemPanel" + "xpos" "c-150" + "ypos" "130" + "zpos" "100" + "wide" "300" + "tall" "100" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "text_ypos" "20" + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "15" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "center" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + } + + "CaratLabel2" + { + "ControlName" "CExLabel" + "fieldName" "CaratLabel2" + "font" "HudFontSmallestBold" + "labelText" ">>" + "textAlignment" "west" + "xpos" "c-105" + "ypos" "40" + "zpos" "10" + "wide" "20" + "tall" "15" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + + "ExplanationLabel" + { + "ControlName" "CExLabel" + "fieldName" "ExplanationLabel" + "font" "HudFontSmallest" + "labelText" "#DiscardExplanation" + "textAlignment" "north" + "xpos" "c-280" + "ypos" "40" + "zpos" "10" + "wide" "175" + "tall" "60" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + } + + "ExplanationLabel2" + { + "ControlName" "CExLabel" + "fieldName" "ExplanationLabel2" + "font" "HudFontSmallest" + "labelText" "#DiscardExplanation2" + "textAlignment" "north" + "xpos" "c90" + "ypos" "40" + "zpos" "10" + "wide" "175" + "tall" "50" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + } + + "DiscardedCaratLabel" + { + "ControlName" "CExLabel" + "fieldName" "DiscardedCaratLabel" + "font" "HudFontSmallBold" + "labelText" "<<" + "textAlignment" "east" + "xpos" "c90" + "ypos" "50" + "zpos" "10" + "wide" "20" + "tall" "25" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "DiscardedLabel" + { + "ControlName" "CExLabel" + "fieldName" "DiscardedLabel" + "font" "HudFontMediumBold" + "labelText" "#Discarded" + "textAlignment" "west" + "xpos" "c115" + "ypos" "50" + "zpos" "10" + "wide" "200" + "tall" "25" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + + "DiscardButton" + { + "ControlName" "CExButton" + "fieldName" "DiscardButton" + "xpos" "c125" + "ypos" "90" + "zpos" "20" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#X_DiscardItem" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "discarditem" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "backpack_panel" + { + "ControlName" "CBackpackPanel" + "fieldName" "backpack_panel" + "xpos" "0" + "ypos" "100" + "wide" "f0" + "tall" "400" + "zpos" "0" + "visible" "1" + "items_only" "1" + "button_override_delete_xpos" "0" + } + + "CloseButton" + { + "ControlName" "CExButton" + "fieldName" "CloseButton" + "xpos" "c185" + "ypos" "423" + "zpos" "20" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Close" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "vguicancel" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "ShowExplanationsButton" + { + "ControlName" "CExButton" + "fieldName" "ShowExplanationsButton" + "xpos" "c265" + "ypos" "30" + "zpos" "100" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "?" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "Command" "show_explanations" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "StartExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "StartExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "140" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-150" + "end_y" "150" + "end_wide" "300" + "end_tall" "155" + "callout_inparents_x" "c0" + "callout_inparents_y" "200" + "next_explanation" "DiscardButtonExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#DiscardItemsExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#DiscardItemsExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "85" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "125" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "125" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + } + + "DiscardButtonExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "DiscardButtonExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "100" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c-50" + "end_y" "200" + "end_wide" "300" + "end_tall" "125" + "callout_inparents_x" "c175" + "callout_inparents_y" "135" + "next_explanation" "DeleteButtonExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#DiscardButtonExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#DiscardButtonExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "45" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "95" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "95" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "260" + "ypos" "95" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + } + + "DeleteButtonExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "DeleteButtonExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "100" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c0" + "end_y" "200" + "end_wide" "300" + "end_tall" "155" + "callout_inparents_x" "c235" + "callout_inparents_y" "423" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#DiscardDeleteExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#DiscardDeleteExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "85" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "125" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "125" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } +} diff --git a/biscottihud/resource/ui/itemdiscardpanel_colour.res b/biscottihud/resource/ui/itemdiscardpanel_colour.res new file mode 100644 index 0000000..ae9e68b --- /dev/null +++ b/biscottihud/resource/ui/itemdiscardpanel_colour.res @@ -0,0 +1,9 @@ +"Resource/UI/ItemDiscardPanel.res" +{ + "item_discard" + { + "bgcolor_override" "bBlackSolid3" + "infocus_bgcolor_override" "bBlackSolid3" + "outoffocus_bgcolor_override" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/itempickuppanel.res b/biscottihud/resource/ui/itempickuppanel.res new file mode 100644 index 0000000..0c88131 --- /dev/null +++ b/biscottihud/resource/ui/itempickuppanel.res @@ -0,0 +1,372 @@ +#base "itempickuppanel_colour.res" + +"Resource/UI/ItemPickupPanel.res" +{ + "item_pickup" + { + "ControlName" "Frame" + "fieldName" "item_pickup" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + "PaintBackgroundType" "0" + + "modelpanels_spacing" "40" + "modelpanels_width" "500" + "modelpanels_height" "260" + "modelpanels_ypos" "110" + + + "modelpanelskv" + { + "PaintBackgroundType" "2" + "paintborder" "1" + "bgcolor_override" "0 0 0 0" + + "model_xpos" "0" + "model_center_y" "1" + "model_tall" "160" + "model_wide" "240" + + "text_forcesize" "1" + "text_xpos" "250" + "text_wide" "225" + "text_center" "1" + "is_mouseover" "1" + "hide_collection_panel" "1" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "inventory_image_type" "1" + } + } + } + + "classimageoutline" + { + "ControlName" "EditablePanel" + "fieldName" "classimageoutline" + "xpos" "c208" + "ypos" "115" + "zpos" "6" + "wide" "36" + "tall" "36" + "visible" "1" + "bgcolor_override" "0 0 0 255" + } + + "classimage" + { + "ControlName" "ImagePanel" + "fieldName" "classimage" + "xpos" "c211" + "ypos" "118" + "zpos" "7" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "achievements/tf_medic_heal_grind" + "scaleImage" "1" + } + + "ItemsFoundLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemsFoundLabel" + "font" "HudFontMediumBigBold" + "labelText" "#NewItemsAcquired" + "textAlignment" "center" + "xpos" "0" + "ypos" "30" + "zpos" "1" + "wide" "f0" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "SelectedItemFoundMethodLabel" + { + "ControlName" "CExLabel" + "fieldName" "SelectedItemFoundMethodLabel" + "font" "HudFontMediumSmallBold" + "labelText" "" + "textAlignment" "center" + "xpos" "0" + "ypos" "75" + "zpos" "1" + "wide" "f0" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "ItemCountLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemCountLabel" + "font" "HudFontSmallestBold" + "labelText" "#Item" + "textAlignment" "north-west" + "xpos" "c-245" + "ypos" "115" + "zpos" "5" + "wide" "100" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "SelectedItemNumberLabel" + { + "ControlName" "CExLabel" + "fieldName" "SelectedItemNumberLabel" + "font" "HudFontMediumBigBold" + "labelText" "#SelectedItemNumber" + "textAlignment" "north-west" + "xpos" "c-245" + "ypos" "120" + "zpos" "5" + "wide" "120" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "NextButton" + { + "ControlName" "CExButton" + "fieldName" "NextButton" + "xpos" "c195" + "ypos" "350" + "zpos" "1" + "wide" "70" + "tall" "30" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#NextItem" + "font" "HudFontSmallestBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "nextitem" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + "PrevButton" + { + "ControlName" "CExButton" + "fieldName" "PrevButton" + "xpos" "c-265" + "ypos" "350" + "zpos" "1" + "wide" "70" + "tall" "30" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#PreviousItem" + "font" "HudFontSmallestBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "previtem" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "CloseButton" + { + "ControlName" "CExButton" + "fieldName" "CloseButton" + "xpos" "c50" + "ypos" "420" + "zpos" "6" + "wide" "250" + "tall" "30" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#CloseItemPanel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "vguicancel" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + "OpenLoadoutButton" + { + "ControlName" "CExButton" + "fieldName" "OpenLoadoutButton" + "xpos" "c-300" + "ypos" "420" + "zpos" "6" + "wide" "250" + "tall" "30" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%loadouttext%" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "changeloadout" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "DiscardButton" + { + "ControlName" "CExImageButton" + "fieldName" "DiscardButton" + "xpos" "c224" + "ypos" "155" + "zpos" "10" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "discarditem" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "defaultBgColor_override" "117 107 94 255" + "armedBgColor_override" "145 73 59 255" + "depressedBgColor_override" "117 107 94 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "235 226 202 255" + + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "cs-0.5" + "ypos" "cs-0.5" + "zpos" "1" + "wide" "p1" + "tall" "p1" + "visible" "1" + "enabled" "1" + "image" "icon_trash_on" + "scaleImage" "1" + "paintbackgroundtype" "0" + "proportionaltoparent" "1" + } + } + "DiscardButtonTooltip" + { + "ControlName" "EditablePanel" + "fieldName" "DiscardButtonTooltip" + "xpos" "c180" + "ypos" "175" + "zpos" "11" + "wide" "100" + "tall" "50" + "visible" "0" + "PaintBackgroundType" "2" + "border" "MainMenuBGBorder" + + "TipLabel" + { + "ControlName" "CExLabel" + "fieldName" "TipLabel" + "font" "HudFontSmallestBold" + "labelText" "#DiscardItem" + "textAlignment" "center" + "xpos" "12" + "ypos" "0" + "wide" "80" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "235 226 202 255" + "wrap" "1" + "centerwrap" "1" + } + } + "DiscardedLabel" + { + "ControlName" "CExLabel" + "fieldName" "DiscardedLabel" + "font" "HudFontMediumBold" + "labelText" "#Discarded" + "textAlignment" "center" + "xpos" "c-215" + "ypos" "210" + "zpos" "5" + "wide" "420" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + "bgcolor_override" "46 43 42 255" + } + + "ScoreEntry" + { + "ControlName" "TextEntry" + "fieldName" "ScoreEntry" + "xpos" "c-100" + "ypos" "380" + "wide" "200" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + "wrap" "0" + "fgcolor_override" "235 226 202 255" + "bgcolor_override" "0 0 0 255" + "labelText" "Enter Score Here" + "textAlignment" "center" + } +} diff --git a/biscottihud/resource/ui/itempickuppanel_colour.res b/biscottihud/resource/ui/itempickuppanel_colour.res new file mode 100644 index 0000000..7a525ef --- /dev/null +++ b/biscottihud/resource/ui/itempickuppanel_colour.res @@ -0,0 +1,9 @@ +"Resource/UI/ItemPickupPanel.res" +{ + "item_pickup" + { + "bgcolor_override" "bBlackSolid3" + "infocus_bgcolor_override" "bBlackSolid3" + "outoffocus_bgcolor_override" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/itemquickswitch.res b/biscottihud/resource/ui/itemquickswitch.res new file mode 100644 index 0000000..0533566 --- /dev/null +++ b/biscottihud/resource/ui/itemquickswitch.res @@ -0,0 +1,285 @@ +#base "itemquickswitch_colour.res" + +"Resource/UI/ItemQuickSwitch.res" +{ + "ItemQuickSwitchPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ItemQuickSwitchPanel" + "xpos" "r300" + "ypos" "160" + "wide" "275" + "tall" "220" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + + "PaintBackgroundType" "0" + "PaintBackground" "0" + + "itempanel_xpos" "25" + "itempanel_ydelta" "0" + + "itemskv" + { + "wide" "220" + "tall" "40" + "bgcolor_override" "59 54 48 255" + "PaintBackgroundType" "2" + "paintborder" "0" + "text_forcesize" "2" + + "model_xpos" "25" + "model_ypos" "3" + "model_wide" "58" + "model_tall" "34" + + "text_center" "1" + "text_xpos" "60" + "text_wide" "190" + "name_only" "1" + + "noitem_textcolor" "117 107 94 255" + } + } + + "MainBG" + { + "ControlName" "ImagePanel" + "fieldName" "MainBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "275" + "tall" "220" + "visible" "1" + "enabled" "1" + } + + "BGSquare" + { + "ControlName" "ImagePanel" + "fieldName" "BGSquare" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "29" + "tall" "22" + "visible" "1" + "enabled" "1" + } + + "ColoredBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "ColoredBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "29" + "tall" "220" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown_opaque" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown_opaque" + "teambg_2" "../hud/color_panel_red_opaque" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "ColoredLine" + { + "ControlName" "CTFImagePanel" + "fieldName" "ColoredLine" + "xpos" "29" + "ypos" "22" + "zpos" "-1" + "wide" "246" + "tall" "2" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_brown_opaque" + "scaleImage" "1" + "teambg_1" "../hud/color_panel_brown_opaque" + "teambg_2" "../hud/color_panel_red_opaque" + "teambg_3" "../hud/color_panel_blu" + + "src_corner_height" "23" + "src_corner_width" "23" + + "draw_corner_width" "0" + "draw_corner_height" "0" + } + + "BGRectangle" + { + "ControlName" "ImagePanel" + "fieldName" "BGRectangle" + "xpos" "0" + "ypos" "140" + "zpos" "0" + "wide" "29" + "tall" "80" + "visible" "1" + "enabled" "1" + } + + "CaratLabel" + { + "ControlName" "CExLabel" + "fieldName" "CaratLabel" + "font" "HudFontSmallestBold" + "labelText" ">>" + "textAlignment" "west" + "xpos" "32" + "ypos" "5" + "zpos" "1" + "wide" "20" + "tall" "15" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "ClassLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassLabel" + "font" "HudFontSmallestBold" + "labelText" "#ClassBeingEquipped" + "textAlignment" "west" + "xpos" "47" + "ypos" "5" + "zpos" "1" + "wide" "60" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "ItemSlotLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemSlotLabel" + "font" "HudFontSmallestBold" + "labelText" "#PrimaryWeapon" + "textAlignment" "west" + "xpos" "107" + "ypos" "5" + "zpos" "1" + "wide" "140" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "TopLine" + { + "ControlName" "ImagePanel" + "fieldName" "TopLine" + "xpos" "5" + "ypos" "17" + "zpos" "2" + "wide" "265" + "tall" "10" + "visible" "0" + "enabled" "1" + "image" "loadout_dotted_line" + "tileImage" "1" + "tileVertically" "0" + } + + "itemcontainerscroller" + { + "ControlName" "EditablePanel" + "fieldName" "itemcontainerscroller" + "xpos" "5" + "ypos" "30" + "wide" "265" + "tall" "185" + "PaintBackgroundType" "2" + "fgcolor_override" "59 54 48 255" + "bgcolor_override" "200 187 161 0" + "autohide_buttons" "1" + } + + "itemcontainer" + { + "ControlName" "EditablePanel" + "fieldName" "itemcontainer" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "125" + "PaintBackgroundType" "2" + "bgcolor_override" "200 187 161 0" + + "CurrentlyEquippedBackground" + { + "ControlName" "CExLabel" + "fieldName" "CurrentlyEquippedBackground" + "font" "ItemFontNameSmallest" + "labelText" "#QuickSwitchEquipped" + "textAlignment" "north-west" + "xpos" "0" + "ypos" "2" + "zpos" "100" + "wide" "200" + "tall" "40" + "visible" "1" + "PaintBackgroundType" "2" + "fgcolor_override" "200 80 60 255" + "bgcolor_override" "0 0 0 0" + } + } + + "NoItemsLabel" + { + "ControlName" "CExLabel" + "fieldName" "NoItemsLabel" + "font" "ItemFontNameSmallest" + "labelText" "#NoItemsToEquip" + "textAlignment" "center" + "xpos" "30" + "ypos" "0" + "zpos" "10" + "wide" "220" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + + "loadout_preset_panel" + { + "ControlName" "CLoadoutPresetPanel" + "FieldName" "loadout_preset_panel" + "xpos" "2" + "ypos" "28" + "zpos" "20" + "wide" "25" + "tall" "120" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } +} diff --git a/biscottihud/resource/ui/itemquickswitch_colour.res b/biscottihud/resource/ui/itemquickswitch_colour.res new file mode 100644 index 0000000..bc01a47 --- /dev/null +++ b/biscottihud/resource/ui/itemquickswitch_colour.res @@ -0,0 +1,22 @@ +"Resource/UI/ItemQuickSwitch.res" +{ + "ItemQuickSwitchPanel" + { + "bgcolor_override" "bBlackSolid3" + } + + "MainBG" + { + "fillcolor" "bBlackSolid3" + } + + "BGSquare" + { + "fillcolor" "bBlackSolid3" + } + + "BGRectangle" + { + "fillcolor" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/itemselectionpanel.res b/biscottihud/resource/ui/itemselectionpanel.res new file mode 100644 index 0000000..5b387ee --- /dev/null +++ b/biscottihud/resource/ui/itemselectionpanel.res @@ -0,0 +1,437 @@ +#base "itemselectionpanel_colour.res" + +"Resource/UI/ItemSelectionPanel.res" +{ + "ItemSelectionPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ItemSelectionPanel" + "xpos" "0" + "ypos" "0" + "zpos" "500" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + + "item_ypos" "60" + "item_ydelta" "80" + "item_backpack_offcenter_x" "-288" + "item_backpack_xdelta" "4" + "item_backpack_ydelta" "3" + + "modelpanels_selection_kv" + { + "wide" "94" + "tall" "70" + "model_xpos" "2" + "model_wide" "75" + "model_tall" "50" + "model_center_x" "1" + "text_ypos" "0" + "text_forcesize" "2" + "text_center" "0" + "text_yoffset" "2" + "inset_eq_y" "55" + + "deferred_description" "1" + "deferred_icon" "1" + } + "modelpanels_kv" + { + "ControlName" "CItemModelPanel" + "xpos" "c-70" + "ypos" "270" + "wide" "54" + "tall" "42" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "model_xpos" "2" + "model_ypos" "5" + "model_wide" "50" + "model_tall" "35" + "text_ypos" "60" + "text_center" "1" + "name_only" "1" + + "inset_eq_x" "4" + "inset_eq_y" "2" + + "deferred_description" "1" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + + "use_item_sounds" "1" + } + "duplicatelabels_kv" + { + "font" "ItemFontNameSmallest" + "textAlignment" "center" + "wide" "20" + "tall" "15" + "zpos" "1" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "fgcolor" "153 204 255 255" + } + } + + "CaratLabel" + { + "ControlName" "CExLabel" + "fieldName" "CaratLabel" + "font" "HudFontSmallestBold" + "labelText" ">>" + "textAlignment" "west" + "xpos" "c-300" + "ypos" "20" + "zpos" "1" + "wide" "20" + "tall" "15" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + "ClassLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassLabel" + "font" "HudFontMediumBold" + "labelText" "#ClassBeingEquipped" + "textAlignment" "west" + "xpos" "c-280" + "ypos" "15" + "zpos" "1" + "wide" "480" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "NameFilterLabel" + { + "ControlName" "CExLabel" + "fieldName" "NameFilterLabel" + "font" "HudFontSmallestBold" + "labelText" "#Store_NameFilterLabel" + "textAlignment" "west" + "xpos" "c+205" + "ypos" "0" + "zpos" "1" + "wide" "90" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "StoreDarkTan" + } + + "NameFilterTextEntry" + { + "ControlName" "TextEntry" + "fieldName" "NameFilterTextEntry" + "xpos" "c+205" + "ypos" "15" + "zpos" "2" + "wide" "90" + "tall" "19" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "unicode" "1" + "fgcolor_override" "117 107 94 255" + "bgcolor_override" "251 235 202 255" + "paintbackgroundtype" "2" + "font" "HudFontSmallest" + } + + "TopLine" + { + "ControlName" "ImagePanel" + "fieldName" "TopLine" + "xpos" "c-305" + "ypos" "40" + "zpos" "2" + "wide" "610" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "loadout_dotted_line" + "tileImage" "1" + "tileVertically" "0" + } + "BottomLine" + { + "ControlName" "ImagePanel" + "fieldName" "BottomLine" + "xpos" "c-305" + "ypos" "330" + "zpos" "2" + "wide" "610" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "loadout_dotted_line" + "tileImage" "1" + "tileVertically" "0" + } + + "ItemSlotLabel" + { + "ControlName" "CExLabel" + "fieldName" "ItemSlotLabel" + "font" "HudFontMediumBold" + "labelText" "#PrimaryWeapon" + "textAlignment" "west" + "xpos" "c-55" + "ypos" "15" + "zpos" "1" + "wide" "375" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "NoItemsLabel" + { + "ControlName" "CExLabel" + "fieldName" "NoItemsLabel" + "font" "HudFontSmallBold" + "labelText" "#NoItemsToEquip" + "textAlignment" "center" + "xpos" "c-300" + "ypos" "120" + "zpos" "10" + "wide" "600" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + + "CancelButton" + { + "ControlName" "CExButton" + "fieldName" "CancelButton" + "xpos" "c-200" + "ypos" "400" + "zpos" "2" + "wide" "200" + "tall" "25" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Cancel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "vguicancel" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "OnlyAllowUniqueQuality" + { + "ControlName" "CheckButton" + "fieldName" "OnlyAllowUniqueQuality" + "labelText" "#OnlyAllowUniqueQuality" + "Font" "HudFontSmallestBold" + "textAlignment" "east" + "xpos" "c-306" + "ypos" "340" + "zpos" "1" + "wide" "290" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "dulltext" "0" + "brighttext" "0" + } + + "ShowBackpack" + { + "ControlName" "CExButton" + "fieldName" "ShowBackpack" + "xpos" "c100" + "ypos" "340" + "zpos" "20" + "wide" "200" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Selection_ShowBackpack" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "show_backpack" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + "ShowSelection" + { + "ControlName" "CExButton" + "fieldName" "ShowSelection" + "xpos" "c100" + "ypos" "340" + "zpos" "20" + "wide" "200" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Selection_ShowSelection" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "show_selection" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "PrevPageButton" + { + "ControlName" "CExButton" + "fieldName" "PrevPageButton" + "xpos" "c195" + "ypos" "290" + "zpos" "1" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "&A" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "prevpage" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "CurPageLabel" + { + "ControlName" "CExLabel" + "fieldName" "CurPageLabel" + "font" "HudFontSmallBold" + "labelText" "%backpackpage%" + "textAlignment" "center" + "xpos" "c220" + "ypos" "290" + "zpos" "1" + "wide" "40" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + + "NextPageButton" + { + "ControlName" "CExButton" + "fieldName" "NextPageButton" + "xpos" "c265" + "ypos" "290" + "zpos" "1" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "&D" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "nextpage" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "mouseoveritempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mouseoveritempanel" + "xpos" "c-70" + "ypos" "270" + "zpos" "100" + "wide" "300" + "tall" "300" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "text_ypos" "20" + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "15" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "center" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + } +} diff --git a/biscottihud/resource/ui/itemselectionpanel_colour.res b/biscottihud/resource/ui/itemselectionpanel_colour.res new file mode 100644 index 0000000..c1eb91e --- /dev/null +++ b/biscottihud/resource/ui/itemselectionpanel_colour.res @@ -0,0 +1,7 @@ +"Resource/UI/ItemSelectionPanel.res" +{ + "ItemSelectionPanel" + { + "bgcolor_override" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/itemslotpanel.res b/biscottihud/resource/ui/itemslotpanel.res new file mode 100644 index 0000000..6d4644b --- /dev/null +++ b/biscottihud/resource/ui/itemslotpanel.res @@ -0,0 +1,153 @@ +#base "itemslotpanel_colour.res" + +"Resource/UI/ItemSlotPanel.res" +{ + "item_slot_panel" + { + "ControlName" "Frame" + "fieldName" "item_slot_panel" + "xpos" "0" + "ypos" "0" + "zpos" "501" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + "PaintBackgroundType" "0" + + "item_xpos_offcenter_a" "-270" + "item_xpos_offcenter_b" "165" + "item_ypos" "60" + "item_ydelta" "60" + "item_mod_wide" "40" + + "item_backpack_offcenter_x" "-288" + "item_backpack_xdelta" "4" + "item_backpack_ydelta" "3" + + "button_xpos_offcenter" "175" + "button_ypos" "85" + "button_ydelta" "80" + "button_override_delete_xpos" "0" + + "modelpanels_kv" + { + "ControlName" "CItemModelPanel" + "xpos" "c-70" + "ypos" "270" + "wide" "100" + "tall" "55" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "model_ypos" "3" + "model_tall" "49" + "text_ypos" "46" + "text_center" "1" + "name_only" "1" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "visible" "0" + } + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "allow_rot" "0" + } + } + } + + "mouseoveritempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mouseoveritempanel" + "xpos" "c-70" + "ypos" "270" + "zpos" "100" + "wide" "250" + "tall" "300" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "text_ypos" "0" + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "30" + } + + "CaratLabel" + { + "ControlName" "CExLabel" + "fieldName" "CaratLabel" + "font" "HudFontSmallestBold" + "labelText" ">>" + "textAlignment" "west" + "xpos" "c-300" + "ypos" "20" + "zpos" "1" + "wide" "20" + "tall" "15" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + + "ClassLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassLabel" + "font" "HudFontMediumSmallBold" + "labelText" "#EditSlots" + "textAlignment" "west" + "xpos" "c-280" + "ypos" "15" + "zpos" "1" + "wide" "210" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "OKButton" + { + "ControlName" "CExButton" + "fieldName" "OKButton" + "xpos" "c-50" + "ypos" "323" + "zpos" "20" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_OK" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "ok" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } +} diff --git a/biscottihud/resource/ui/itemslotpanel_colour.res b/biscottihud/resource/ui/itemslotpanel_colour.res new file mode 100644 index 0000000..c1bfeab --- /dev/null +++ b/biscottihud/resource/ui/itemslotpanel_colour.res @@ -0,0 +1,9 @@ +"Resource/UI/ItemSlotPanel.res" +{ + "item_slot_panel" + { + "bgcolor_override" "bBlackSolid3" + "infocus_bgcolor_override" "bBlackSolid3" + "outoffocus_bgcolor_override" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/lobbycontainerframe.res b/biscottihud/resource/ui/lobbycontainerframe.res new file mode 100644 index 0000000..cff1157 --- /dev/null +++ b/biscottihud/resource/ui/lobbycontainerframe.res @@ -0,0 +1,288 @@ +#base "lobbycontainerframe_colour.res" + +"Resource/UI/LobbyContainerFrame.res" +{ + "LobbyContainerFrame" + { + "ControlName" "EditablePanel" + "fieldName" "LobbyContainerFrame" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "PaintBackgroundType" "0" + "bgcolor_override" "46 43 42 0" + "infocus_bgcolor_override" "46 43 42 0" + "outoffocus_bgcolor_override" "46 43 42 0" + + "title" "#CharInfoAndSetup" + "title_font" "HudFontMediumBold" + "titletextinsetX" "40" + "titletextinsetY" "0" + "titlebarfgcolor_override" "200 187 161 255" + "titlebardisabledfgcolor_override" "200 187 161 255" + "titlebarbgcolor_override" "46 43 42 255" + + "clientinsetx_override" "0" + "sheetinset_bottom" "40" + + "NavToRelay" "BackButton" + } + + "BackgroundHeader" + { + "ControlName" "ImagePanel" + "fieldName" "BackgroundHeader" + "xpos" "0" + "ypos" "0" + "zpos" "-2" + "wide" "f0" + "tall" "120" + "visible" "1" + "enabled" "1" + "border" "NoBorder" + } + "BackgroundFooter" + { + "ControlName" "ImagePanel" + "fieldName" "BackgroundFooter" + "xpos" "0" + "ypos" "420" + "zpos" "1" + "wide" "f0" + "tall" "60" + "visible" "1" + "enabled" "1" + } + "FooterLine" + { + "ControlName" "ImagePanel" + "fieldName" "FooterLine" + "xpos" "0" + "ypos" "420" + "zpos" "2" + "wide" "f0" + "tall" "2" + "visible" "1" + "enabled" "1" + "fillcolor" "bSchemePrime" + "scaleImage" "1" + } + + "Sheet" + { + "ControlName" "EditablePanel" + "fieldName" "Sheet" + "tabxindent" "80" + "tabxdelta" "10" + "tabwidth" "240" + "tabheight" "32" + "transition_time" "0" + + "HeaderLine" + { + "ControlName" "ImagePanel" + "fieldName" "HeaderLine" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "32" + "visible" "1" + "enabled" "1" + "fillcolor" "Blank" + "border" "bBorderBottom3" + } + + "tabskv" + { + "textinsetx" "40" + "font" "HudFontMediumBold" + "selectedcolor" "200 187 161 255" + "unselectedcolor" "130 120 104 255" + "paintbackground" "1" + "activeborder_override" "bTabActive" + "normalborder_override" "bBorderBottom4" + } + } + + "OptionsButton" + { + "ControlName" "CExImageButton" + "fieldName" "OptionsButton" + "xpos" "c275" + "ypos" "10" + "zpos" "100" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "Command" "options" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "235 226 202 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "2" + "ypos" "2" + "zpos" "1" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "image" "glyph_options" + "scaleImage" "1" + } + } + + "BackButton" + { + "ControlName" "CExButton" + "fieldName" "BackButton" + "xpos" "c-305" + "ypos" "437" + "zpos" "2" + "wide" "180" + "tall" "25" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "back" + + "NavUp" "PlayNowButton" + "NavRight" "LearnMoreButton" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "NotificationsPresentPanel" + { + "ControlName" "CNotificationsPresentPanel" + "fieldName" "NotificationsPresentPanel" + "xpos" "r200" + "ypos" "10" + "zpos" "10000" + "wide" "190" + "tall" "50" + "visible" "0" + "enabled" "1" + } + + "MatchmakingBanPanel" + { + "ControlName" "EditablePanel" + "fieldName" "MatchmakingBanPanel" + "xpos" "c-113" + "ypos" "428" + "zpos" "2" + "wide" "220" + "tall" "40" + "visible" "0" + "enabled" "1" + "mouseinputenabled" "0" + "bgcolor_override" "Black" + + "MatchmakingBanDurationLabel" + { + "ControlName" "CExLabel" + "fieldName" "MatchmakingBanDurationLabel" + "font" "HudFontSmallest" + "fgcolor_override" "RedSolid" + "labelText" "#TF_Matchmaking_Ban_Duration_Remaining" + "textalignment" "center" + "xpos" "5" + "ypos" "0" + "zpos" "2" + "wide" "200" + "tall" "40" + "visible" "1" + "enabled" "1" + "autoResize" "1" + "pinCorner" "0" + } + } + + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "c+120" + "ypos" "437" + "zpos" "2" + "wide" "180" + "tall" "25" + "autoResize" "0" + //"pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "next" + + "NavUp" "StartPartyButton" + "NavDown" "LearnMoreButton" + "NavLeft" "LearnMoreButton" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "StartPartyButton" + { + "ControlName" "CExButton" + "fieldName" "StartPartyButton" + "xpos" "c+110" + "ypos" "310" + "zpos" "10" + "wide" "180" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Matchmaking_StartParty" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "start_party" + + "NavUp" "Sheet" + "NavDown" "NextButton" + "NavLeft" "PracticeButton" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } +} diff --git a/biscottihud/resource/ui/lobbycontainerframe_casual.res b/biscottihud/resource/ui/lobbycontainerframe_casual.res new file mode 100644 index 0000000..fe943e2 --- /dev/null +++ b/biscottihud/resource/ui/lobbycontainerframe_casual.res @@ -0,0 +1,1064 @@ +#base "lobbycontainerframe_casual_colour.res" +#base "LobbyContainerFrame.res" + +"Resource/UI/LobbyContainerFrame_Casual.res" +{ + "StartPartyButton" + { + // "xpos" "c+120" + "ypos" "380" + } + + "RankPanel" + { + "ControlName" "CPvPRankPanel" + "fieldName" "RankPanel" + "xpos" "cs-0.5" + "ypos" "-147" + "zpos" "100" + "wide" "f0" + "tall" "480" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "matchgroup" "MatchGroup_Casual_12v12" + } + + "SearchStatus" + { + "ControlName" "CTFMatchMakingSearchStatusPanel" + "FieldName" "SearchStatus" + "xpos" "cs-0.5" + "ypos" "-5" + "zpos" "10000" + "wide" "150" + "tall" "65" + "visible" "1" + "enabled" "1" + "mouseinputenabled" "1" + } + + "StartExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "StartExplanation" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + + "force_close" "1" + "end_x" "c-150" + "end_y" "150" + "end_wide" "250" + "end_tall" "160" + "callout_inparents_x" "c0" + "callout_inparents_y" "c0" + "next_explanation" "ModesExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Casual_Explanation_Intro_Title" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "10" + "wide" "f20" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Casual_Explanation_Intro_Body" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "45" + "wide" "f20" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1-5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "rs1-5" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "rs1" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + "proportionaltoparent" "1" + } + } + + "ModesExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "ModesExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "210" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + "next_explanation" "RankExplanation" + + "force_close" "1" + "end_x" "c-30" + "end_y" "140" + "end_wide" "250" + "end_tall" "210" + "callout_inparents_x" "c-140" + "callout_inparents_y" "c-100" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Casual_Explanation_Modes_Title" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "10" + "wide" "f20" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Casual_Explanation_Modes_Body" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "45" + "wide" "f20" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1-5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "rs1-5" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "rs1" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + "proportionaltoparent" "1" + } + } + + "RankExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "RankExplanation" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + + "next_explanation" "PartyExplanation" + "force_close" "1" + "end_x" "c-150" + "end_y" "150" + "end_wide" "250" + "end_tall" "160" + "callout_inparents_x" "c30" + "callout_inparents_y" "115" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Casual_Explanation_Rank_Title" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "10" + "wide" "f20" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Casual_Explanation_Rank_Body" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "45" + "wide" "f20" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1-5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "rs1-5" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "rs1" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + "proportionaltoparent" "1" + } + } + + "PartyExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "PartyExplanation" + "zpos" "10000" + "wide" "250" + "tall" "130" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + + "force_close" "1" + "end_x" "c-250" + "end_y" "250" + "end_wide" "250" + "end_tall" "130" + "callout_inparents_x" "c130" + "callout_inparents_y" "395" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Casual_Explanation_Party_Title" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "10" + "wide" "f20" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Casual_Explanation_Party_Body" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "45" + "wide" "f20" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1-5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "rs1" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + "proportionaltoparent" "1" + } + } + + "PlayWithFriendsExplanation" + { + "ControlName" "EditablePanel" + "fieldName" "PlayWithFriendsExplanation" + "xpos" "c-20" + "ypos" "130" + "zpos" "8" + "wide" "321" + "tall" "285" + "PaintBackgroundType" "0" + "paintbackground" "1" + "bgcolor_override" "0 0 0 200" + "border" "bSchemePrimeBorder1" + + "PlayWithFriendsExplanationTitle" + { + "ControlName" "CExLabel" + "fieldName" "PlayWithFriendsExplanationTitle" + "font" "HudFontSmallBold" + "labelText" "#TF_Matchmaking_PlayWithFriends" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "0" + "zpos" "10" + "wide" "p0.8" + "tall" "32" + "proportionaltoparent" "1" + } + + "FriendsImage" + { + "ControlName" "ImagePanel" + "fieldName" "FriendsImage" + "xpos" "cs-0.5" + "ypos" "32" + "zpos" "0" + "wide" "180" + "tall" "90" + "visible" "1" + "enabled" "1" + "image" "pve/mvm_friends_image" + "scaleImage" "1" + "proportionaltoparent" "1" + } + + "PlayWithFriendsExplanationLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayWithFriendsExplanationLabel" + "font" "HudFontSmall" + "labelText" "#TF_Casual_PlayWithFriendsExplanation" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "130" + "zpos" "10" + "wide" "p0.8" + "tall" "150" + "wrap" "1" + "proportionaltoparent" "1" + } + } + + "MapSelectionDetailsExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "MapSelectionDetailsExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "260" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + "next_explanation" "RankExplanation" + + "force_close" "1" + "end_x" "c-30" + "end_y" "140" + "end_wide" "250" + "end_tall" "240" + "callout_inparents_x" "c100" + "callout_inparents_y" "c-000" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Casual_Explanation_MapsDetails_Title" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "10" + "wide" "f20" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Casual_Explanation_MapsDetails_Body" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "45" + "wide" "f20" + "tall" "240" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1-5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + } + + "Tooltip_CasualLobby" + { + "ControlName" "EditablePanel" + "fieldName" "Tooltip_CasualLobby" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "300" + "tall" "0" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + + "TipLabel" + { + "ControlName" "CExLabel" + "fieldName" "TipLabel" + "font" "HudFontSmallestBold" + "labelText" "%tiptext%" + "textAlignment" "west" + "xpos" "20" + "ypos" "10" + "zpos" "2" + "wide" "100" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "TanLight" + "auto_wide_tocontents" "1" + } + } +} diff --git a/biscottihud/resource/ui/lobbycontainerframe_casual_colour.res b/biscottihud/resource/ui/lobbycontainerframe_casual_colour.res new file mode 100644 index 0000000..0370588 --- /dev/null +++ b/biscottihud/resource/ui/lobbycontainerframe_casual_colour.res @@ -0,0 +1,8 @@ +"Resource/UI/LobbyContainerFrame_Casual.res" +{ + "Tooltip_CasualLobby" + { + "border" "bSchemePrimeBorder1" + "bgcolor_override" "bBlackSolid2" + } +} diff --git a/biscottihud/resource/ui/lobbycontainerframe_colour.res b/biscottihud/resource/ui/lobbycontainerframe_colour.res new file mode 100644 index 0000000..f2177f6 --- /dev/null +++ b/biscottihud/resource/ui/lobbycontainerframe_colour.res @@ -0,0 +1,21 @@ +"Resource/UI/LobbyContainerFrame.res" +{ + "BackgroundHeader" + { + "fillcolor" "bBlackSolid2" + } + "BackgroundFooter" + { + "fillcolor" "bBlackSolid2" + } + + "Sheet" + { + "tabskv" + { + "defaultBgColor_override" "bBlackSolid4" + "armedBgColor_override" "bBlackSolid4" + "selectedBgColor_override" "bBlackSolid4" + } + } +} diff --git a/biscottihud/resource/ui/lobbycontainerframe_comp.res b/biscottihud/resource/ui/lobbycontainerframe_comp.res new file mode 100644 index 0000000..327b3f9 --- /dev/null +++ b/biscottihud/resource/ui/lobbycontainerframe_comp.res @@ -0,0 +1,1029 @@ +#base "LobbyContainerFrame.res" + +"Resource/UI/LobbyContainerFrame_Comp.res" +{ + "StartPartyButton" + { + //"xpos" "c+120" + "ypos" "380" + } + + "RankPanel" + { + "ControlName" "CPvPRankPanel" + "fieldName" "RankPanel" + "xpos" "cs-0.5" + "ypos" "-147" + "zpos" "100" + "wide" "f0" + "tall" "480" + "visible" "1" + "proportionaltoparent" "1" + "mouseinputenabled" "0" + + "matchgroup" "MatchGroup_Ladder_6v6" + } + + "StartExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "StartExplanation" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + + "force_close" "1" + "end_x" "c-150" + "end_y" "150" + "end_wide" "250" + "end_tall" "160" + "callout_inparents_x" "c0" + "callout_inparents_y" "c0" + "next_explanation" "ModesExplanation" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Competitive_Explanation_Intro_Title" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "10" + "wide" "f20" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Competitive_Explanation_Intro_Body" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "45" + "wide" "f20" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1-5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "rs1-5" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "rs1" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + "proportionaltoparent" "1" + } + } + + "ModesExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "ModesExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + "next_explanation" "RankExplanation" + + "force_close" "1" + "end_x" "c-30" + "end_y" "140" + "end_wide" "250" + "end_tall" "160" + "callout_inparents_x" "c-140" + "callout_inparents_y" "c-100" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Competitive_Explanation_History_Title" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "10" + "wide" "f20" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Competitive_Explanation_History_Body" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "45" + "wide" "f20" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1-5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "rs1-5" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "rs1" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + "proportionaltoparent" "1" + } + } + + "RankExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "RankExplanation" + "zpos" "10000" + "wide" "250" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + + "next_explanation" "PartyExplanation" + "force_close" "1" + "end_x" "c-150" + "end_y" "150" + "end_wide" "250" + "end_tall" "160" + "callout_inparents_x" "c30" + "callout_inparents_y" "115" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Competitive_Explanation_Rank_Title" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "10" + "wide" "f20" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Competitive_Explanation_Rank_Body" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "45" + "wide" "f20" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1-5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "NextButton" + { + "ControlName" "CExImageButton" + "fieldName" "NextButton" + "xpos" "rs1-5" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "nextexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_forward" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "rs1" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + "proportionaltoparent" "1" + } + } + + "PartyExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "PartyExplanation" + "zpos" "10000" + "wide" "250" + "tall" "130" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + + "force_close" "1" + "end_x" "c-250" + "end_y" "250" + "end_wide" "250" + "end_tall" "130" + "callout_inparents_x" "c130" + "callout_inparents_y" "395" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Competitive_Explanation_Party_Title" + "textAlignment" "north" + "xpos" "cs-0.5" + "ypos" "10" + "wide" "f20" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Competitive_Explanation_Party_Body" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "45" + "wide" "f20" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "proportionaltoparent" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "rs1-5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PrevButton" + { + "ControlName" "CExImageButton" + "fieldName" "PrevButton" + "xpos" "10" + "ypos" "rs1" + "zpos" "10" + "wide" "30" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "prevexplanation" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "235 226 202 255" + "image_armedcolor" "255 255 255 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "30" + "tall" "30" + "visible" "1" + "enabled" "1" + "image" "blog_back" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "rs1" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + "proportionaltoparent" "1" + } + } + + "PlayWithFriendsExplanation" + { + "ControlName" "EditablePanel" + "fieldName" "PlayWithFriendsExplanation" + "xpos" "c-20" + "ypos" "130" + "zpos" "8" + "wide" "321" + "tall" "285" + "PaintBackgroundType" "0" + "paintbackground" "1" + "bgcolor_override" "0 0 0 200" + "border" "bSchemePrimeBorder1" + + "PlayWithFriendsExplanationTitle" + { + "ControlName" "CExLabel" + "fieldName" "PlayWithFriendsExplanationTitle" + "font" "HudFontSmallBold" + "labelText" "#TF_Matchmaking_PlayWithFriends" + "textAlignment" "center" + "xpos" "cs-0.5" + "ypos" "0" + "zpos" "10" + "wide" "p0.8" + "tall" "32" + "proportionaltoparent" "1" + } + + "FriendsImage" + { + "ControlName" "ImagePanel" + "fieldName" "FriendsImage" + "xpos" "cs-0.5" + "ypos" "32" + "zpos" "0" + "wide" "180" + "tall" "90" + "visible" "1" + "enabled" "1" + "image" "pve/mvm_friends_image" + "scaleImage" "1" + "proportionaltoparent" "1" + } + + "PlayWithFriendsExplanationLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayWithFriendsExplanationLabel" + "font" "HudFontSmall" + "labelText" "#TF_Comp_PlayWithFriendsExplanation" + "textAlignment" "north-west" + "xpos" "cs-0.5" + "ypos" "130" + "zpos" "10" + "wide" "p0.8" + "tall" "150" + "wrap" "1" + "proportionaltoparent" "1" + } + } + + "MedalsHelp" + { + "ControlName" "CExplanationPopup" + "fieldName" "MedalsHelp" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "250" + "tall" "100" + "visible" "0" + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" + + "force_close" "1" + "end_x" "c+10" + "end_y" "60" + "end_wide" "300" + "end_tall" "175" + "callout_inparents_x" "c-35" + "callout_inparents_y" "230" + "next_explanation" "" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Competitive_MedalsHelp_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "260" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#TF_Competitive_MedalsHelp_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "45" + "wide" "260" + "tall" "105" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "280" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "200 80 60 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + "PositionLabel" + { + "ControlName" "CExLabel" + "fieldName" "PositionLabel" + "font" "HudFontSmallBold" + "labelText" "%explanationnumber%" + "textAlignment" "center" + "xpos" "0" + "ypos" "145" + "zpos" "-1" + "wide" "300" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "200 80 60 255" + } + } +} diff --git a/biscottihud/resource/ui/lobbycontainerframe_mvm.res b/biscottihud/resource/ui/lobbycontainerframe_mvm.res new file mode 100644 index 0000000..7454245 --- /dev/null +++ b/biscottihud/resource/ui/lobbycontainerframe_mvm.res @@ -0,0 +1,177 @@ +#base "LobbyContainerFrame.res" + +"Resource/UI/LobbyContainerFrame_MvM.res" +{ + "OptionsButton" + { + "ControlName" "CExImageButton" + "fieldName" "OptionsButton" + "visible" "0" + } + + "LearnMoreButton" + { + "ControlName" "CExImageButton" + "fieldName" "LearnMoreButton" + "xpos" "c106" + "ypos" "385" + "zpos" "2" + "wide" "195" + "tall" "25" + "autoResize" "0" + //"pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_MvM_LearnMore" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "learn_more" + + "NavUp" "PracticeButton" + "NavLeft" "BackButton" + "NavRight" "NextButton" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "PlayNowButton" + { + "ControlName" "CExButton" + "fieldName" "PlayNowButton" + "xpos" "c-295" + "ypos" "303" + "zpos" "20" + "wide" "180" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_MvM_MannUp" + "font" "HudFontMediumBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "mannup" + + "NavUp" "Sheet" + "NavDown" "BackButton" + "NavLeft" "Sheet" + "NavRight" "PracticeButton" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "border_default" "MainMenuButtonDefault" + "border_armed" "MainMenuButtonArmed" + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + } + + "PracticeButton" + { + "ControlName" "CExButton" + "fieldName" "PracticeButton" + "xpos" "c-95" + "ypos" "303" + "zpos" "20" + "wide" "180" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_MvM_BootCamp" + "font" "HudFontMediumBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "practice" + + "NavUp" "Sheet" + "NavDown" "LearnMoreButton" + "NavLeft" "PlayNowButton" + "NavRight" "StartPartyButton" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "border_default" "MainMenuButtonDefault" + "border_armed" "MainMenuButtonArmed" + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + } + + "PlayWithFriendsExplanation" + { + "ControlName" "EditablePanel" + "fieldName" "PlayWithFriendsExplanation" + "xpos" "c+100" + "ypos" "62" + "zpos" "8" + "wide" "200" + "tall" "285" + "PaintBackgroundType" "0" + "paintbackground" "1" + "bgcolor_override" "0 0 0 200" + "border" "bSchemePrimeBorder1" + + "PlayWithFriendsExplanationTitle" + { + "ControlName" "CExLabel" + "fieldName" "PlayWithFriendsExplanationTitle" + "font" "HudFontSmallBold" + "labelText" "#TF_Matchmaking_PlayWithFriends" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "200" + "tall" "32" + } + + "FriendsImage" + { + "ControlName" "ImagePanel" + "fieldName" "FriendsImage" + "xpos" "10" + "ypos" "32" + "zpos" "0" + "wide" "180" + "tall" "90" + "visible" "1" + "enabled" "1" + "image" "pve/mvm_friends_image" + "scaleImage" "1" + } + + "PlayWithFriendsExplanationLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayWithFriendsExplanationLabel" + "font" "HudFontSmall" + "labelText" "#TF_MvM_PlayWithFriendsExplanation" + "textAlignment" "north-west" + "xpos" "10" + "ypos" "130" + "zpos" "10" + "wide" "180" + "tall" "150" + "wrap" "1" + } + } +} diff --git a/biscottihud/resource/ui/lobbypanel.res b/biscottihud/resource/ui/lobbypanel.res new file mode 100644 index 0000000..0603790 --- /dev/null +++ b/biscottihud/resource/ui/lobbypanel.res @@ -0,0 +1,742 @@ +#base "lobbypanel_colour.res" + +"Resource/UI/LobbyPanel.res" +{ + "LobbyPanel" + { + "ControlName" "Frame" + "fieldName" "LobbyPanel" + "xpos" "0" + "ypos" "50" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "0" + "PaintBackgroundType" "0" + "proportionaltoparent" "1" + + "NavToRelay" "MvMTourOfDutyGroupBox" + "NavDown" "MvMEconItemsGroupBox" + } + + "TooltipPanel" + { + "ControlName" "EditablePanel" + "fieldName" "TooltipPanel" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "300" + "tall" "0" + "visible" "0" + "PaintBackgroundType" "2" + "border" "MainMenuBGBorder" + + "TipLabel" + { + "ControlName" "CExLabel" + "fieldName" "TipLabel" + "font" "HudFontSmallestBold" + "labelText" "%tiptext%" + "textAlignment" "west" + "xpos" "20" + "ypos" "10" + "zpos" "2" + "wide" "100" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "TanLight" + "auto_wide_tocontents" "1" + } + } + + "NoGCGroupBox" + { + "ControlName" "EditablePanel" + "fieldName" "NoGCGroupBox" + "xpos" "0" + "ypos" "0" + "zpos" "1000" + "wide" "f0" + "tall" "f0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "bgcolor_override" "0 0 0 250" + "proportionaltoparent" "1" + + "NoGCTitle" + { + "ControlName" "Label" + "fieldName" "NoGCTitle" + "font" "HudFontMediumBold" + "labelText" "#TF_Matchmaking_PleaseWait" + "xpos" "cs-0.5" + "ypos" "120" + "zpos" "2" + "wide" "340" + "tall" "40" + "textAlignment" "center" + "visible" "1" + "enabled" "1" + "proportionaltoparent" "1" + } + + "NoGCSubTitle" + { + "ControlName" "Label" + "fieldName" "NoGCSubTitle" + "font" "HudFontSmall" + "labelText" "#TF_Matchmaking_RestoringConnection" + "xpos" "cs-0.5" + "ypos" "140" + "zpos" "2" + "wide" "340" + "tall" "40" + "textAlignment" "center" + "visible" "1" + "enabled" "1" + "proportionaltoparent" "1" + } + + "SpinnerImage" + { + "ControlName" "ScalableImagePanel" + "fieldName" "SpinnerImage" + "xpos" "cs-0.5" + "ypos" "160" + "zpos" "0" + "wide" "o1" + "tall" "80" + "visible" "1" + "enabled" "1" + "image" "animated/tf2_logo_hourglass" + + "proportionaltoparent" "1" + } + } + + "MatchInProgressGroupBox" + { + "ControlName" "EditablePanel" + "fieldName" "MatchInProgressGroupBox" + "xpos" "0" + "ypos" "0" + "zpos" "1000" + "wide" "f0" + "tall" "f0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "bgcolor_override" "0 0 0 250" + "proportionaltoparent" "1" + + "MatchInProgressTitle" + { + "ControlName" "Label" + "fieldName" "MatchInProgressTitle" + "font" "HudFontMediumBold" + "labelText" "#TF_Matchmaking_MatchInProgress" + "xpos" "cs-0.5" + "ypos" "120" + "zpos" "2" + "wide" "340" + "tall" "40" + "textAlignment" "center" + "visible" "1" + "enabled" "1" + "proportionaltoparent" "1" + } + + "MatchInProgressSubTitle" + { + "ControlName" "Label" + "fieldName" "MatchInProgressSubTitle" + "font" "HudFontSmall" + "labelText" "#TF_Matchmaking_MatchInProgress_RestoringConnection" + "xpos" "cs-0.5" + "ypos" "140" + "zpos" "2" + "wide" "340" + "tall" "40" + "textAlignment" "center" + "visible" "1" + "enabled" "1" + "proportionaltoparent" "1" + } + + "SpinnerImage" + { + "ControlName" "ScalableImagePanel" + "fieldName" "SpinnerImage" + "xpos" "cs-0.5" + "ypos" "160" + "zpos" "0" + "wide" "o1" + "tall" "80" + "visible" "1" + "enabled" "1" + "image" "animated/tf2_logo_hourglass" + + "proportionaltoparent" "1" + } + } + + "SearchActiveGroupBox" + { + "ControlName" "EditablePanel" + "fieldName" "SearchActiveGroupBox" + "xpos" "c-305" + "ypos" "10" + "zpos" "-1" + "wide" "400" + "tall" "330" + "PaintBackgroundType" "0" + "paintbackground" "1" + "bgcolor_override" "0 0 0 200" + "border" "bSchemePrimeBorder1" + + "SearchActiveTitle" + { + "ControlName" "Label" + "fieldName" "SearchActiveTitle" + "font" "HudFontMediumBold" + "labelText" "#TF_Matchmaking_Searching" + "xpos" "30" + "ypos" "20" + "zpos" "2" + "wide" "340" + "tall" "40" + "textAlignment" "north-west" + "visible" "1" + "enabled" "1" + } + + "NearbyColumnHead" + { + "ControlName" "Label" + "fieldName" "NearbyColumnHead" + "font" "HudFontSmall" + "labelText" "#TF_Matchmaking_Nearby" + "xpos" "190" + "ypos" "50" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "south-east" + "visible" "1" + "enabled" "1" + } + + "WorldwideColumnHead" + { + "ControlName" "Label" + "fieldName" "WorldwideColumnHead" + "font" "HudFontSmall" + "labelText" "#TF_Matchmaking_Worldwide" + "xpos" "280" + "ypos" "50" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "south-east" + "visible" "1" + "enabled" "1" + } + + "PlayersInGameLabel" + { + "ControlName" "Label" + "fieldName" "PlayersInGameLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Matchmaking_ActivePlayers" + "xpos" "30" + "ypos" "70" + "zpos" "2" + "wide" "300" + "tall" "20" + "textAlignment" "north-west" + "visible" "1" + "enabled" "1" + } + + "PlayersInGameTotalLabel" + { + "ControlName" "Label" + "fieldName" "PlayersInGameTotalLabel" + "font" "HudFontSmall" + "labelText" "#TF_Matchmaking_Total" + "xpos" "60" + "ypos" "90" + "zpos" "2" + "wide" "130" + "tall" "20" + "textAlignment" "north-west" + "visible" "1" + "enabled" "1" + } + + "PlayersInGameTotalNearbyValue" + { + "ControlName" "Label" + "fieldName" "PlayersInGameTotalNearbyValue" + "font" "HudFontSmall" + "xpos" "190" + "ypos" "90" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "PlayersInGameTotalWorldwideValue" + { + "ControlName" "Label" + "fieldName" "PlayersInGameTotalWorldwideValue" + "font" "HudFontSmall" + "xpos" "280" + "ypos" "90" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "PlayersInGameMatchingLabel" + { + "ControlName" "Label" + "fieldName" "PlayersInGameMatchingLabel" + "font" "HudFontSmall" + "labelText" "#TF_Matchmaking_Compatible" + "xpos" "60" + "ypos" "110" + "zpos" "2" + "wide" "130" + "tall" "20" + "textAlignment" "north-west" + "visible" "1" + "enabled" "1" + } + + "PlayersInGameMatchingNearbyValue" + { + "ControlName" "Label" + "fieldName" "PlayersInGameMatchingNearbyValue" + "font" "HudFontSmall" + "xpos" "190" + "ypos" "110" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "PlayersInGameMatchingWorldwideValue" + { + "ControlName" "Label" + "fieldName" "PlayersInGameMatchingWorldwideValue" + "font" "HudFontSmall" + "xpos" "280" + "ypos" "110" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "PlayersSearchingLabel" + { + "ControlName" "Label" + "fieldName" "PlayersSearchingLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Matchmaking_SearchingPlayers" + "xpos" "30" + "ypos" "140" + "zpos" "2" + "wide" "300" + "tall" "20" + "textAlignment" "north-west" + "visible" "1" + "enabled" "1" + } + + "PlayersSearchingTotalLabel" + { + "ControlName" "Label" + "fieldName" "PlayersSearchingTotalLabel" + "font" "HudFontSmall" + "labelText" "#TF_Matchmaking_Total" + "xpos" "60" + "ypos" "160" + "zpos" "2" + "wide" "130" + "tall" "20" + "textAlignment" "north-west" + "visible" "1" + "enabled" "1" + } + + "PlayersSearchingTotalNearbyValue" + { + "ControlName" "Label" + "fieldName" "PlayersSearchingTotalNearbyValue" + "font" "HudFontSmall" + "xpos" "190" + "ypos" "160" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "PlayersSearchingTotalWorldwideValue" + { + "ControlName" "Label" + "fieldName" "PlayersSearchingTotalWorldwideValue" + "font" "HudFontSmall" + "xpos" "280" + "ypos" "160" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "PlayersSearchingMatchingLabel" + { + "ControlName" "Label" + "fieldName" "PlayersSearchingMatchingLabel" + "font" "HudFontSmall" + "labelText" "#TF_Matchmaking_Compatible" + "xpos" "60" + "ypos" "180" + "zpos" "2" + "wide" "130" + "tall" "20" + "textAlignment" "north-west" + "visible" "1" + "enabled" "1" + } + + "PlayersSearchingMatchingNearbyValue" + { + "ControlName" "Label" + "fieldName" "PlayersSearchingMatchingNearbyValue" + "font" "HudFontSmall" + "xpos" "190" + "ypos" "180" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "PlayersSearchingMatchingWorldwideValue" + { + "ControlName" "Label" + "fieldName" "PlayersSearchingMatchingWorldwideValue" + "font" "HudFontSmall" + "xpos" "280" + "ypos" "180" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "EmptyGameserversLabel" + { + "ControlName" "Label" + "fieldName" "EmptyGameserversLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Matchmaking_EmptyGameservers" + "xpos" "30" + "ypos" "210" + "zpos" "2" + "wide" "300" + "tall" "20" + "textAlignment" "north-west" + "visible" "1" + "enabled" "1" + } + + "EmptyGameserversMatchingNearbyValue" + { + "ControlName" "Label" + "fieldName" "EmptyGameserversMatchingNearbyValue" + "font" "HudFontSmall" + "xpos" "190" + "ypos" "210" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "EmptyGameserversMatchingWorldwideValue" + { + "ControlName" "Label" + "fieldName" "EmptyGameserversMatchingWorldwideValue" + "font" "HudFontSmall" + "xpos" "280" + "ypos" "210" + "zpos" "2" + "wide" "90" + "tall" "20" + "textAlignment" "north-east" + "visible" "1" + "enabled" "1" + "labelText" "?" + } + + "PartyHasLowPriorityGroupBox" + { + "ControlName" "EditablePanel" + "fieldName" "PartyHasLowPriorityGroupBox" + "xpos" "30" + "ypos" "250" + "zpos" "2" + "wide" "340" + "tall" "100" + "visible" "0" + "enabled" "1" + + "PartyLowPriorityImage" + { + "ControlName" "ImagePanel" + "fieldName" "PartyLowPriorityImage" + "xpos" "0" + "ypos" "5" + "zpos" "0" + "wide" "50" + "tall" "50" + "visible" "1" + "enabled" "1" + "mouseinputenabled" "0" + "image" "pve/mvm_timeout_active_large" + "scaleImage" "1" + } + "PartyHasLowPriorityLabel" + { + "ControlName" "Label" + "fieldName" "PartyHasLowPriorityLabel" + "font" "HudFontSmall" + "labelText" "#TF_Matchmaking_PartyPenalty" + "xpos" "60" + "ypos" "0" + "zpos" "2" + "wide" "275" + "tall" "60" + "textAlignment" "west" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "250 114 45 255" + } + "PartyLowPriorityPenaltyTimer" + { + "ControlName" "Label" + "fieldName" "PartyLowPriorityPenaltyTimer" + "font" "HudFontSmall" + "labelText" "%penaltytimer%" + "xpos" "60" + "ypos" "50" + "zpos" "3" + "wide" "175" + "tall" "30" + "textAlignment" "west" + "visible" "1" + "enabled" "1" + "wrap" "1" + } + } + } + + "PartyActiveGroupBox" + { + "ControlName" "EditablePanel" + "fieldName" "PartyActiveGroupBox" + "xpos" "c+100" + "ypos" "10" + "zpos" "1" + "wide" "200" + "tall" "310" + "visible" "0" + + "NavToRelay" "PartyGroupBox" + "NavDown" "<" + + if_left + { + "xpos" "0" + "labelText" "<" + } + + "ypos" "0" + "zpos" "10000" + "wide" "15" + "tall" "f0" + "visible" "1" + "proportionaltoparent" "1" + "command" "nav_close" + + "textAlignment" "east" + "font" "HudFontSmallBold" + + "armedBgColor_override" "0 0 0 0" + "defaultBgColor_override" "0 0 0 0" + + "armedFgColor_override" "Orange" + } + + "ReturnButton" + { + "ControlName" "CExButton" + "fieldName" "ReturnButton" + "xpos" "3" + "labelText" "<" + + if_left + { + "xpos" "rs1-3" + "labelText" ">" + } + + "ypos" "0" + "zpos" "10000" + "wide" "20" + "tall" "f0" + "visible" "1" + "proportionaltoparent" "1" + "command" "nav_to" + "labelText" "<" + + "textAlignment" "west" + "font" "HudFontSmallBold" + + "armedBgColor_override" "0 0 0 0" + "defaultBgColor_override" "0 0 0 0" + + "armedFgColor_override" "Orange" + } + + "BGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BGPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "f0" + "tall" "f-20" + "visible" "1" + "proportionaltoparent" "1" + + "PaintBackgroundType" "0" + } +} diff --git a/biscottihud/resource/ui/matchmakingdashboardsidepanel_colour.res b/biscottihud/resource/ui/matchmakingdashboardsidepanel_colour.res new file mode 100644 index 0000000..5a62358 --- /dev/null +++ b/biscottihud/resource/ui/matchmakingdashboardsidepanel_colour.res @@ -0,0 +1,8 @@ +"Resource/UI/MatchMakingDashboardSidePanel.res" +{ + "BGPanel" + { + "border" "bSchemePrimeBorder1" + "bgcolor_override" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/matchmakingpingpanel.res b/biscottihud/resource/ui/matchmakingpingpanel.res new file mode 100644 index 0000000..27efb00 --- /dev/null +++ b/biscottihud/resource/ui/matchmakingpingpanel.res @@ -0,0 +1,366 @@ +#base "matchmakingpingpanel_colour.res" +#base "MatchMakingDashboardSidePanel.res" + +"Resource/UI/MatchMakingPingPanel.res" +{ + "PingPanel" + { + "fieldName" "PingPanel" + "xpos" "-300" + "ypos" "10" + "zpos" "1001" + "wide" "300" + "tall" "f70" + "visible" "1" + "proportionaltoparent" "1" + + "datacenter_y" "3" + "datacenter_y_space" "1" + } + + "BGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BGPanel" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "f-50" + "visible" "1" + "PaintBackgroundType" "0" + "proportionaltoparent" "1" + } + + "Title" + { + "ControlName" "Label" + "fieldName" "Title" + "xpos" "13" + "ypos" "20" + "zpos" "99" + "wide" "f0" + "tall" "20" + "proportionaltoparent" "1" + "labeltext" "#TF_MM_OpenSettings" + "textAlignment" "west" + "font" "HudFontMediumBold" + "fgcolor_override" "TanDark" + + "mouseinputenabled" "0" + } + + "InviteModeLabel" + { + "ControlName" "Label" + "fieldName" "InviteModeLabel" + "xpos" "26" + "ypos" "50" + "zpos" "3" + "wide" "208" + "tall" "20" + "proportionaltoparent" "1" + "labeltext" "#TF_MM_InviteMode" + "textAlignment" "west" + "font" "HudFontSmallestBold" + "smallcheckimage" "1" + "fgcolor_override" "TanDark" + + "sound_depressed" "UI/buttonclickrelease.wav" + "button_activation_type" "1" + } + + "InviteModeComboBox" + { + // "ControlName" "ComboBox" + "fieldName" "InviteModeComboBox" + "xpos" "26" + "ypos" "66" + "zpos" "1" + "wide" "200" + "tall" "15" + "textAlignment" "west" + "font" "HudFontSmallestBold" + "keyboardinputenabled" "0" + + "editable" "0" + "bgcolor_override" "0 0 0 255" + "fgcolor_override" "235 226 202 255" + "disabledFgColor_override" "235 226 202 255" + "disabledBgColor_override" "0 0 0 0" + "selectionColor_override" "0 0 0 0" + "selectionTextColor_override" "235 226 202 255" + "defaultSelectionBG2Color_override" "0 0 0 0" + } + + "IgnorePartyInvites" + { + "ControlName" "CvarToggleCheckButton" + "fieldName" "IgnorePartyInvites" + "xpos" "23" + "ypos" "80" + "zpos" "3" + "wide" "208" + "tall" "20" + "proportionaltoparent" "1" + "labeltext" "#TF_MM_IgnoreInvites" + "textAlignment" "west" + "font" "HudFontSmallestBold" + "smallcheckimage" "1" + + "sound_depressed" "UI/buttonclickrelease.wav" + "button_activation_type" "1" + + "cvar_name" "tf_party_ignore_invites" + } + + "KeepPartyOnSameTeam" + { + "ControlName" "CvarToggleCheckButton" + "fieldName" "KeepPartyOnSameTeam" + "xpos" "23" + "ypos" "95" + "zpos" "3" + "wide" "250" + "tall" "20" + "proportionaltoparent" "1" + "labeltext" "" + "textAlignment" "west" + "font" "HudFontSmallestBold" + "smallcheckimage" "1" + "enabled" "0" + + "sound_depressed" "UI/buttonclickrelease.wav" + "button_activation_type" "1" + } + + "KeepPartyOnSameTeamLabel" + { + "ControlName" "Label" + "fieldName" "KeepPartyOnSameTeamLabel" + "xpos" "42" + "ypos" "95" + "zpos" "3" + "wide" "250`" + "tall" "20" + "proportionaltoparent" "1" + "labeltext" "#TF_MM_PartySameTeam" + "textAlignment" "west" + "font" "HudFontSmallestBold" + "smallcheckimage" "1" + + "sound_depressed" "UI/buttonclickrelease.wav" + "button_activation_type" "1" + "fgcolor_override" "TanDark" + } + + "CustomPingCheckButton" + { + "ControlName" "CvarToggleCheckButton" + "fieldName" "CustomPingCheckButton" + "xpos" "23" + "ypos" "110" + "zpos" "3" + "wide" "208" + "tall" "20" + "proportionaltoparent" "1" + "labeltext" "" + "textAlignment" "west" + "font" "HudFontSmallBold" + "smallcheckimage" "1" + "actionsignallevel" "1" + + "sound_depressed" "UI/buttonclickrelease.wav" + "button_activation_type" "1" + + "cvar_name" "tf_mm_custom_ping_enabled" + } + + // VGUI is weird and makes some checkboxes have their text lower than it's supposed to be + // and the above checkbox has that behavior. To get around it, make another label + "CheckLabel" + { + "ControlName" "Label" + "fieldName" "CheckLabel" + "xpos" "42" + "ypos" "110" + "zpos" "3" + "wide" "208" + "tall" "20" + "proportionaltoparent" "1" + "labeltext" "#TF_LobbyContainer_CustomPingButton" + "textAlignment" "west" + "font" "HudFontSmallestBold" + "smallcheckimage" "1" + + "sound_depressed" "UI/buttonclickrelease.wav" + "button_activation_type" "1" + } + + "DescLabel" + { + "ControlName" "CExLabel" + "fieldName" "DescLabel" + "xpos" "43" + "ypos" "127" + "zpos" "3" + "wide" "p0.81" + "tall" "45" + "proportionaltoparent" "1" + "labeltext" "#TF_LobbyContainer_CustomPingDesc" + "textAlignment" "north-west" + "font" "HudFontSmallest" + "wrap" "1" + "fgcolor" "117 107 94 255" + + "sound_depressed" "UI/buttonclickrelease.wav" + "button_activation_type" "1" + } + + "CurrentPingLabel" + { + "ControlName" "Label" + "fieldName" "CurrentPingLabel" + "xpos" "27" + "ypos" "156" + "zpos" "0" + "wide" "f0" + "tall" "20" + "proportionaltoparent" "1" + "labeltext" "" + "textAlignment" "west" + "font" "HudFontSmallestBold" + + "mouseinputenabled" "0" + } + + "PingSlider" + { + "ControlName" "CCvarSlider" + "fieldName" "PingSlider" + "xpos" "rs1-10" + "ypos" "175" + "wide" "f40" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "RoundedCorners" "15" + "pin_corner_to_sibling" "0" + "pin_to_sibling_corner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "proportionaltoparent" "1" + + "cvar_name" "tf_mm_custom_ping" + "use_convar_minmax" "1" + } + + "Gradient" + { + "Controlname" "EditablePanel" + "fieldName" "Gradient" + "xpos" "rs1-10" + "ypos" "175" + "wide" "f40" + "tall" "24" + "zpos" "5" + "proportionaltoparent" "1" + "border" "InnerShadowBorder" + "mouseinputenabled" "0" + } + + "DataCenterContainer" + { + "ControlName" "EditablePanel" + "fieldName" "DataCenterContainer" + "xpos" "rs1-10" + "ypos" "200" + "zpos" "100" + "wide" "f37" + "tall" "f220" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "proportionaltoparent" "1" + + "DataCenterList" + { + "ControlName" "CScrollableList" + "fieldName" "DataCenterList" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "f0" + "tall" "f0" + "visible" "1" + "proportionaltoparent" "1" + "restrict_width" "0" + + "ScrollBar" + { + "ControlName" "ScrollBar" + "FieldName" "ScrollBar" + "xpos" "rs1-1" + "ypos" "0" + "tall" "f0" + "wide" "5" // This gets slammed from client schme. GG. + "zpos" "1000" + "nobuttons" "1" + "proportionaltoparent" "1" + + "Slider" + { + "fgcolor_override" "TanDark" + } + + "UpButton" + { + "ControlName" "Button" + "FieldName" "UpButton" + "visible" "0" + } + + "DownButton" + { + "ControlName" "Button" + "FieldName" "DownButton" + "visible" "0" + } + } + } + + "Frame" + { + "Controlname" "EditablePanel" + "fieldName" "Frame" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "f0" + "zpos" "5" + "proportionaltoparent" "1" + "border" "InnerShadowBorder" + "mouseinputenabled" "0" + } + + "Background" + { + "ControlName" "EditablePanel" + "fieldname" "Background" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "f0" + "visible" "1" + "PaintBackgroundType" "0" + "proportionaltoparent" "1" + + "paintborder" "0" + "border" "bSchemePrimeBorder1" + } + } +} diff --git a/biscottihud/resource/ui/matchmakingpingpanel_colour.res b/biscottihud/resource/ui/matchmakingpingpanel_colour.res new file mode 100644 index 0000000..c0ac341 --- /dev/null +++ b/biscottihud/resource/ui/matchmakingpingpanel_colour.res @@ -0,0 +1,19 @@ +"Resource/UI/MatchMakingPingPanel.res" +{ + "BGPanel" + { + "border" "bSchemePrimeBorder1" + "bgcolor_override" "bBlackSolid3" // slider doesn't seem to have a bg anymore :( + } + + "PingSlider" + { + "bgcolor_override" "bBlackSolid1" + "fgcolor_override" "255 0 0 255" // controls the colour of the slider's selector. left it in. looks kinda cool. + } + + "Gradient" + { + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/mvmcreditspendpanel.res b/biscottihud/resource/ui/mvmcreditspendpanel.res new file mode 100644 index 0000000..69877cb --- /dev/null +++ b/biscottihud/resource/ui/mvmcreditspendpanel.res @@ -0,0 +1,113 @@ +"Resource/UI/MvMCreditSpendPanel.res" +{ + "HeaderLabel" + { + "ControlName" "CExLabel" + "fieldName" "HeaderLabel" + "font" "HudFontSmallBold" + "labelText" "%header%" + "textAlignment" "north-west" + "xpos" "0" + "ypos" "0" + "wide" "300" + "tall" "15" + "fgcolor" "tanlight" + } + + "TableBackground" + { + "ControlName" "EditablePanel" + "fieldName" "TableBackground" + "xpos" "0" + "ypos" "14" + "zpos" "-1" + "wide" "190" + "tall" "42" + "visible" "1" + "bgcolor_override" "20 20 20 50" + } + + "UpgradesLabel" + { + "ControlName" "CExLabel" + "fieldName" "UpgradesLabel" + "font" "HudFontSmall" + "labelText" "#TF_PVE_Upgrades" + "textAlignment" "north-west" + "xpos" "10" + "ypos" "15" + "wide" "90" + "tall" "20" + "fgcolor" "tanlight" + } + + "UpgradesCountLabel" + { + "ControlName" "CExLabel" + "fieldName" "UpgradesCountLabel" + "font" "HudFontSmall" + "labelText" "%upgrades%" + "textAlignment" "north-east" + "xpos" "100" + "ypos" "15" + "wide" "30" + "tall" "20" + "fgcolor" "tanlight" + } + + "BuyBackLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuyBackLabel" + "font" "HudFontSmall" + "labelText" "#TF_PVE_Buybacks" + "textAlignment" "north-west" + "xpos" "10" + "ypos" "27" + "wide" "90" + "tall" "20" + "fgcolor" "tanlight" + } + + "BuyBackCountLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuyBackCountLabel" + "font" "HudFontSmall" + "labelText" "%buybacks%" + "textAlignment" "north-east" + "xpos" "100" + "ypos" "27" + "wide" "30" + "tall" "20" + "fgcolor" "tanlight" + } + + "BottleLabel" + { + "ControlName" "CExLabel" + "fieldName" "BottleLabel" + "font" "HudFontSmall" + "labelText" "#TF_PVE_Bottles" + "textAlignment" "north-west" + "xpos" "10" + "ypos" "39" + "wide" "90" + "tall" "20" + "fgcolor" "tanlight" + } + + "BottleCountLabel" + { + "ControlName" "CExLabel" + "fieldName" "BottleCountLabel" + "font" "HudFontSmall" + "labelText" "%bottles%" + "textAlignment" "north-east" + "xpos" "100" + "ypos" "39" + "wide" "30" + "tall" "20" + "fgcolor" "tanlight" + } +} diff --git a/biscottihud/resource/ui/mvmcreditsubpanel.res b/biscottihud/resource/ui/mvmcreditsubpanel.res new file mode 100644 index 0000000..b187e4b --- /dev/null +++ b/biscottihud/resource/ui/mvmcreditsubpanel.res @@ -0,0 +1,141 @@ +"Resource/UI/MvMCreditSubPanel.res" +{ + "HeaderLabel" + { + "ControlName" "CExLabel" + "fieldName" "HeaderLabel" + "font" "HudFontSmallBold" + "labelText" "%header%" + "textAlignment" "north-west" + "xpos" "0" + "ypos" "0" + "wide" "300" + "tall" "15" + "fgcolor" "tanlight" + } + + "TableBackground" + { + "ControlName" "EditablePanel" + "fieldName" "TableBackground" + "xpos" "0" + "ypos" "14" + "zpos" "-1" + "wide" "190" + "tall" "42" + "visible" "1" + "bgcolor_override" "20 20 20 50" + } + + "CreditCollectedTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "CreditCollectedTextLabel" + "font" "HudFontSmall" + "labelText" "#TF_PVE_Collected" + "textAlignment" "north-west" + "xpos" "10" + "ypos" "15" + "wide" "90" + "tall" "20" + "fgcolor" "tanlight" + } + + "CreditCollectedCountLabel" + { + "ControlName" "CExLabel" + "fieldName" "CreditCollectedCountLabel" + "font" "HudFontSmall" + "labelText" "%creditscollected%" + "textAlignment" "north-east" + "xpos" "100" + "ypos" "15" + "wide" "30" + "tall" "20" + "fgcolor" "CreditsGreen" + } + + "CreditMissedTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "CreditMissedTextLabel" + "font" "HudFontSmall" + "labelText" "#TF_PVE_Missed" + "textAlignment" "north-west" + "xpos" "10" + "ypos" "27" + "wide" "90" + "tall" "20" + "fgcolor" "tanlight" + } + + "CreditMissedCountLabel" + { + "ControlName" "CExLabel" + "fieldName" "CreditMissedCountLabel" + "font" "HudFontSmall" + "labelText" "%creditsmissed%" + "textAlignment" "north-east" + "xpos" "100" + "ypos" "27" + "wide" "30" + "tall" "20" + "fgcolor" "RedSolid" + } + + "CreditBonusTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "CreditBonusTextLabel" + "font" "HudFontSmall" + "labelText" "#TF_PVE_Bonus" + "textAlignment" "north-west" + "xpos" "10" + "ypos" "39" + "wide" "90" + "tall" "20" + "fgcolor" "tanlight" + } + + "CreditBonusCountLabel" + { + "ControlName" "CExLabel" + "fieldName" "CreditBonusCountLabel" + "font" "HudFontSmall" + "labelText" "%creditbonus%" + "textAlignment" "north-east" + "xpos" "100" + "ypos" "39" + "wide" "30" + "tall" "20" + "fgcolor" "CreditsGreen" + } + + "CreditRatingLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "CreditRatingLabelShadow" + "font" "HudFontMediumBold" + "labelText" "%ratingshadow%" + "textAlignment" "center" + "xpos" "126" + "ypos" "26" + "wide" "70" + "tall" "20" + "fgcolor" "Black" + } + + "CreditRatingLabel" + { + "ControlName" "CExLabel" + "fieldName" "CreditRatingLabel" + "font" "HudFontMediumBold" + "labelText" "%rating%" + "textAlignment" "center" + "xpos" "125" + "ypos" "25" + "wide" "70" + "tall" "20" + "fgcolor" "tanlight" + } +} diff --git a/biscottihud/resource/ui/mvminworldcurrency.res b/biscottihud/resource/ui/mvminworldcurrency.res new file mode 100644 index 0000000..7278bb6 --- /dev/null +++ b/biscottihud/resource/ui/mvminworldcurrency.res @@ -0,0 +1,81 @@ +"Resource/UI/MvMInWorldCurrency.res" +{ + "BorderBG" + { + "ControlName" "EditablePanel" + "fieldName" "BorderBG" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "46" + "tall" "14" + "visible" "0" + "enabled" "1" + "PaintBackgroundType" "0" + "bgcolor_override" "TanLight" + } + + "BackgroundGood" + { + "ControlName" "EditablePanel" + "fieldName" "BackgroundGood" + "xpos" "1" + "ypos" "1" + "zpos" "2" + "wide" "44" + "tall" "12" + "visible" "1" + "enabled" "1" + "PaintBackgroundType" "0" + "bgcolor_override" "221 182 72 250" + } + + "MoneyImagePanel" + { + "ControlName" "ImagePanel" + "fieldName" "MoneyImagePanel" + "xpos" "0" + "ypos" "0" + "zpos" "4" + "wide" "14" + "tall" "14" + "image" "../HUD/mvm_cash" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + + "CurrencyGood" + { + "ControlName" "CExLabel" + "fieldName" "CurrencyGood" + "font" "HudFontSmallestBold" + "fgcolor" "CreditsGreen" + "xpos" "9" + "ypos" "1" + "zpos" "4" + "wide" "40" + "tall" "12" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%currency%" + } + + "CurrencyBad" + { + "ControlName" "CExLabel" + "fieldName" "CurrencyBad" + "font" "HudFontSmallestBold" + "fgcolor" "TanDarker" + "xpos" "9" + "ypos" "1" + "zpos" "4" + "wide" "40" + "tall" "12" + "visible" "1" + "enabled" "1" + "textAlignment" "center" + "labelText" "%currency%" + } +} \ No newline at end of file diff --git a/biscottihud/resource/ui/mvmscoreboard.res b/biscottihud/resource/ui/mvmscoreboard.res new file mode 100644 index 0000000..c1855a6 --- /dev/null +++ b/biscottihud/resource/ui/mvmscoreboard.res @@ -0,0 +1,218 @@ +"Resource/UI/MvMScoreboard.res" +{ + "WaveStatusPanel" + { + "ControlName" "CWaveStatusPanel" + "fieldName" "WaveStatusPanel" + "xpos" "0" + "ypos" "8" + "zpos" "0" + "wide" "600" + "tall" "67" + "visible" "1" + "enabled" "1" + + "verbose" "1" + } + + "PopFileLabel" + { + "ControlName" "CExLabel" + "fieldName" "PopFileLabel" + "font" "ScoreboardMedium" + "labelText" "%popfile%" + "textAlignment" "east" + "xpos" "290" + "ypos" "375" + "wide" "290" + "tall" "20" + "fgcolor" "tanlight" + } + + "DifficultyContainer" + { + "ControlName" "EditablePanel" + "fieldName" "DifficultyContainer" + "xpos" "425" + "ypos" "30" + "wide" "150" + "tall" "20" + "visible" "1" + + "DifficultyLabel" + { + "ControlName" "CExLabel" + "fieldName" "DifficultyLabel" + "font" "HudFontSmallest" + "labelText" "#TF_MvM_Difficulty" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "wide" "150" + "tall" "10" + "fgcolor" "tanlight" + } + + "DifficultyValue" + { + "ControlName" "CExLabel" + "fieldName" "DifficultyValue" + "font" "HudFontSmallBold" + "labelText" "%difficultyvalue%" + "textAlignment" "center" + "xpos" "0" + "ypos" "9" + "wide" "150" + "tall" "10" + "fgcolor" "tanlight" + } + } + + "PlayerListBackground" + { + "ControlName" "ScalableImagePanel" + "fieldName" "PlayerListBackground" + "xpos" "25" + "ypos" "75" + "zpos" "-1" + "wide" "550" + "tall" "150" + "visible" "1" + "enabled" "1" + "image" "../hud/tournament_panel_brown" + + "scaleImage" "1" + + "src_corner_height" "16" // pixels inside the image + "src_corner_width" "16" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "MvMPlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "MvMPlayerList" + "xpos" "35" + "ypos" "79" + "wide" "530" + "tall" "150" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "22" + "textcolor" "White" + } + + "CreditStatsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "CreditStatsContainer" + "xpos" "100" + "ypos" "230" + "wide" "400" + "tall" "205" + "visible" "1" + + "CreditStatsBackground" + { + "ControlName" "ScalableImagePanel" + "fieldName" "CreditStatsBackground" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "400" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_brown" + + "src_corner_height" "16" // pixels inside the image + "src_corner_width" "16" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "CreditsLabel" + { + "ControlName" "CExLabel" + "fieldName" "CreditsLabel" + "font" "HudFontMediumSmall" + "labelText" "#TF_PVE_Currency" + "textAlignment" "north-west" + "xpos" "8" + "ypos" "8" + "wide" "100" + "tall" "25" + "fgcolor" "tanlight" + } + + "PreviousWaveCreditInfoPanel" + { + "ControlName" "CCreditDisplayPanel" + "fieldName" "PreviousWaveCreditInfoPanel" + "xpos" "8" + "ypos" "30" + "wide" "184" + "tall" "60" + "wide" "200" + "visible" "1" + } + + "TotalGameCreditInfoPanel" + { + "ControlName" "CCreditDisplayPanel" + "fieldName" "TotalGameCreditInfoPanel" + "xpos" "208" + "ypos" "30" + "wide" "184" + "tall" "60" + "wide" "200" + "visible" "1" + } + + "PreviousWaveCreditSpendPanel" + { + "ControlName" "CCreditSpendPanel" + "fieldName" "PreviousWaveCreditSpendPanel" + "xpos" "8" + "ypos" "75" + "wide" "184" + "tall" "60" + "wide" "200" + "visible" "1" + } + + "TotalGameCreditSpendPanel" + { + "ControlName" "CCreditSpendPanel" + "fieldName" "TotalGameCreditSpendPanel" + "xpos" "208" + "ypos" "75" + "wide" "184" + "tall" "60" + "wide" "200" + "visible" "1" + } + + "RespecStatusLabel" + { + "ControlName" "CExLabel" + "fieldName" "RespecStatusLabel" + "font" "HudFontSmall" + "labelText" "%respecstatus%" + "textAlignment" "north-east" + "xpos" "115" + "ypos" "8" + "wide" "275" + "tall" "20" + "fgcolor" "tanlight" + } + } +} diff --git a/biscottihud/resource/ui/mvmscoreboardenemyinfo.res b/biscottihud/resource/ui/mvmscoreboardenemyinfo.res new file mode 100644 index 0000000..0059344 --- /dev/null +++ b/biscottihud/resource/ui/mvmscoreboardenemyinfo.res @@ -0,0 +1,46 @@ +"Resource/UI/MvMScoreboardEnemyInfo.res" +{ + "Background" + { + "ControlName" "Panel" + "fieldName" "Background" + "xpos" "1" + "ypos" "1" + "zpos" "2" + "wide" "16" + "tall" "16" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "TanLight" + } + + "EnemyIcon" + { + "ControlName" "CTFImagePanel" + "fieldName" "EnemyIcon" + "xpos" "2" + "ypos" "2" + "zpos" "3" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + + "DescriptionLabel" + { + "ControlName" "CExLabel" + "fieldName" "DescriptionLabel" + "font" "HudFontSmallest" + "labelText" "%description%" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "3" + "wide" "250" + "tall" "32" + "fgcolor" "tanlight" + } +} diff --git a/biscottihud/resource/ui/mvmvictorycontainer.res b/biscottihud/resource/ui/mvmvictorycontainer.res new file mode 100644 index 0000000..152bff0 --- /dev/null +++ b/biscottihud/resource/ui/mvmvictorycontainer.res @@ -0,0 +1,101 @@ +"Resource/UI/MvMVictoryContainer.res" +{ + "Background" + { + "ControlName" "EditablePanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "zpos" "-2" + "wide" "f0" + "tall" "480" + "visible" "1" + "bgcolor_override" "20 20 20 245" + } + + + "BannerContainer" + { + "ControlName" "EditablePanel" + "fieldName" "BannerContainer" + "xpos" "c-300" + "ypos" "20" + "wide" "600" + "tall" "50" + "visible" "1" + "enabled" "1" + + "BannerImage" + { + "ControlName" "ScalableImagePanel" + "fieldName" "BannerImage" + "xpos" "0" + "ypos" "0" + "wide" "600" + "tall" "50" + "visible" "1" + "enabled" "1" + "image" "mvm/smallbanner" + "scaleImage" "1" + + "src_corner_height" "40" // pixels inside the image + "src_corner_width" "40" + + "draw_corner_width" "10" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "10" + } + + "BannerTextDropShadow" + { + "ControlName" "CExLabel" + "fieldName" "BannerTextDropShadow" + "font" "HudFontBiggerBold" + "labelText" "#TF_MVM_Victory_Complete" + "textAlignment" "center" + "xpos" "2" + "ypos" "2" + "wide" "600" + "tall" "35" + "fgcolor" "0 0 0 255" + } + + "BannerText" + { + "ControlName" "CExLabel" + "fieldName" "BannerTextDropShadow" + "font" "HudFontBiggerBold" + "labelText" "#TF_MVM_Victory_Complete" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "wide" "600" + "tall" "35" + "fgcolor" "tanlight" + } + } + + "VictoryPanelNormal" + { + "ControlName" "CVictoryPanel" + "fieldName" "VictoryPanelNormal" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + } + + "VictoryPanelMannUp" + { + "ControlName" "CMvMVictoryMannUpPanel" + "fieldName" "VictoryPanelMannUp" + "xpos" "0" + "ypos" "20" + "zpos" "50" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + } +} diff --git a/biscottihud/resource/ui/mvmvictorymannuploot.res b/biscottihud/resource/ui/mvmvictorymannuploot.res new file mode 100644 index 0000000..0abfad5 --- /dev/null +++ b/biscottihud/resource/ui/mvmvictorymannuploot.res @@ -0,0 +1,46 @@ +"Resource/UI/MvMVictoryMannUpLoot.res" +{ + "Marker" + { + "ControlName" "Label" + "fieldName" "Marker" + "font" "HudFontSmallestBold" + "labelText" "x" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "wide" "32" + "tall" "32" + "fgcolor_override" "100 50 50 250" + } + + "EconItemModel" + { + "ControlName" "CItemModelPanel" + "fieldName" "EconItemModel" + "xpos" "0" + "ypos" "6" + "wide" "32" + "tall" "20" + + "visible" "1" + "bgcolor_override" "0 0 0 0" + "PaintBackgroundType" "2" + "paintborder" "0" + + "model_ypos" "0" + "model_tall" "20" + "model_wide" "32" + "name_only" "0" + "attrib_only" "0" + "model_only" "1" + "paint_icon_hide" "1" + + "itemmodelpanel" + { + "use_item_rendertarget" "0" + "inventory_image_type" "1" + "allow_rot" "0" + } + } +} diff --git a/biscottihud/resource/ui/mvmvictorymannuppanel.res b/biscottihud/resource/ui/mvmvictorymannuppanel.res new file mode 100644 index 0000000..36f4e2c --- /dev/null +++ b/biscottihud/resource/ui/mvmvictorymannuppanel.res @@ -0,0 +1,317 @@ +"Resource/UI/MvMVictoryMannUpPanel.res" +{ + //Mouse over panel + "mouseoveritempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "mouseoveritempanel" + "xpos" "0" + "ypos" "600" + "zpos" "9999" + "wide" "250" + "tall" "300" + "visible" "0" + "bgcolor_override" "0 0 0 0" + "noitem_textcolor" "117 107 94 255" + "PaintBackgroundType" "2" + "paintborder" "1" + + "text_ypos" "0" + "text_center" "1" + "model_hide" "1" + "resize_to_text" "1" + "padding_height" "15" + + "attriblabel" + { + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "center" + "fgcolor" "117 107 94 255" + "centerwrap" "1" + } + } + + "DoneButton" + { + "ControlName" "CExImageButton" + "fieldName" "DoneButton" + "xpos" "c175" + "ypos" "372" + "zpos" "100" + "wide" "106" + "tall" "25" + "autoResize" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#DoneButton" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "image_drawcolor" "235 226 202 255" + "Command" "done" + } + + "ParticlePanel" + { + "ControlName" "CTFParticlePanel" + "fieldName" "ParticlePanel" + "xpos" "0" + "ypos" "0" + "zpos" "200" + "wide" "f0" + "tall" "f0" + "visible" "1" + } + + + "OutterBackground" + { + "ControlName" "Panel" + "fieldName" "OutterBackground" + "xpos" "0" + "ypos" "90" + "zpos" "-8" + "wide" "f0" + "tall" "320" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "PaintBackgroundType" "2" + "bgcolor_override" "42 39 37 255" + } + + "HeaderLine" + { + "ControlName" "ImagePanel" + "fieldName" "HeaderLine" + "xpos" "0" + "ypos" "-10" + "zpos" "2" + "wide" "f0" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "loadout_solid_line" + "scaleImage" "1" + + "pin_to_sibling" "OutterBackground" + "pin_corner_to_sibling" "2" + "pin_to_sibling_corner" "0" + } + + "FooterLine" + { + "ControlName" "ImagePanel" + "fieldName" "FooterLine" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "f0" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "loadout_solid_line" + "scaleImage" "1" + + "pin_to_sibling" "OutterBackground" + "pin_corner_to_sibling" "0" + "pin_to_sibling_corner" "2" + } + + + "TabContainer" + { + "ControlName" "EditablePanel" + "fieldName" "TabContainer" + "xpos" "c-118" + "ypos" "55" + "zpos" "100" + "wide" "399" + "tall" "40" + "visible" "1" + + "PlayerTab1" + { + "ControlName" "CMvMVictoryMannUpPlayerTab" + "fieldName" "PlayerTab1" + "xpos" "0" + "ypos" "0" + "zpos" "-5" + "wide" "63" + "tall" "f0" + "autoResize" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "42 41 39 255" + "PaintBackgroundType" "2" + "proportionalToParent" "1" + } + + "PlayerTab2" + { + "ControlName" "CMvMVictoryMannUpPlayerTab" + "fieldName" "PlayerTab2" + "xpos" "68" + "ypos" "0" + "zpos" "-5" + "wide" "62" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "77 72 68 255" + "PaintBackgroundType" "2" + "proportionalToParent" "1" + } + + "PlayerTab3" + { + "ControlName" "CMvMVictoryMannUpPlayerTab" + "fieldName" "PlayerTab3" + "xpos" "135" + "ypos" "0" + "zpos" "-5" + "wide" "62" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "77 72 68 255" + "PaintBackgroundType" "2" + "proportionalToParent" "1" + } + + "PlayerTab4" + { + "ControlName" "CMvMVictoryMannUpPlayerTab" + "fieldName" "PlayerTab4" + "xpos" "202" + "ypos" "0" + "zpos" "-5" + "wide" "62" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "77 72 68 255" + "PaintBackgroundType" "2" + "proportionalToParent" "1" + } + + "PlayerTab5" + { + "ControlName" "CMvMVictoryMannUpPlayerTab" + "fieldName" "PlayerTab5" + "xpos" "269" + "ypos" "0" + "zpos" "-5" + "wide" "62" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "77 72 68 255" + "PaintBackgroundType" "2" + "proportionalToParent" "1" + } + + "PlayerTab6" + { + "ControlName" "CMvMVictoryMannUpPlayerTab" + "fieldName" "PlayerTab6" + "xpos" "336" + "ypos" "0" + "zpos" "-5" + "wide" "62" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "77 72 68 255" + "PaintBackgroundType" "2" + "proportionalToParent" "1" + } + } + + "MainPanelContainer" + { + "ControlName" "EditablePanel" + "fieldName" "MainPanelContainer" + "xpos" "c-230" + "ypos" "140" + "zpos" "-10" + "wide" "f0" + "tall" "480" + "visible" "1" + + + + "NoItemServerContainer" + { + "ControlName" "EditablePanel" + "fieldName" "NoItemServerContainer" + "xpos" "0" + "ypos" "0" + "wide" "530" + "tall" "480" + "visible" "1" + + "NoItemServerHeader" + { + "ControlName" "CExLabel" + "fieldName" "NoItemServer" + "font" "HudFontMediumSmallBold" + "labelText" "#TF_PVE_Server_GCDownHeader" + "textAlignment" "center" + "xpos" "0" + "ypos" "100" + "wide" "530" + "fgcolor" "tanlight" + } + + "NoItemServerMessage" + { + "ControlName" "CExLabel" + "fieldName" "NoItemServer" + "font" "HudFontSmall" + "labelText" "#TF_PVE_Server_GCDownMessage" + "textAlignment" "center" + "xpos" "0" + "ypos" "120" + "wide" "530" + "tall" "40" + "centerwrap" "1" + "fgcolor" "tanlight" + } + } + } +} diff --git a/biscottihud/resource/ui/mvmvictorymannuptab.res b/biscottihud/resource/ui/mvmvictorymannuptab.res new file mode 100644 index 0000000..86208f8 --- /dev/null +++ b/biscottihud/resource/ui/mvmvictorymannuptab.res @@ -0,0 +1,130 @@ +"Resource/UI/MvMVictoryMannUpTab.res" +{ + "PlayerAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "PlayerAvatar" + "xpos" "c-12" + "ypos" "c-12" + "zpos" "20" + "wide" "25" + "tall" "25" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + "proportionalToParent" "1" + } + + "HeaderLine" + { + "ControlName" "ImagePanel" + "fieldName" "HeaderLine" + "xpos" "0" + "ypos" "r5" + "zpos" "2" + "wide" "f0" + "tall" "10" + "visible" "1" + "enabled" "1" + "image" "loadout_solid_line" + "scaleImage" "1" + "proportionalToParent" "1" + } + + "MouseOverTabPanel" + { + "ControlName" "EditablePanel" + "fieldName" "MouseOverTabPanel" + "xpos" "c-14" + "ypos" "c-14" + "zpos" "5" + "wide" "29" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "239 128 73 255" + "PaintBackgroundType" "2" + "mouseinputenabled" "0" + "proportionalToParent" "1" + } + + "TabButton" + { + "ControlName" "Button" + "fieldName" "TabButton" + "xpos" "0" + "ypos" "0" + "zpos" "50" + "wide" "f0" + "tall" "f0" + "command" "" + "enabled" "1" + "visible" "1" + "labelText" "" + "paintbackground" "0" + } + + + "TabImage" + { + "ControlName" "EditablePanel" + "fieldName" "TabImage" + "xpos" "0" + "ypos" "0" + "zpos" "-5" + "wide" "f0" + "tall" "f15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "76 70 66 255" + "PaintBackgroundType" "2" + "proportionalToParent" "1" + } + + "TabImage2" + { + "ControlName" "EditablePanel" + "fieldName" "TabImage2" + "xpos" "0" + "ypos" "20" + "zpos" "-5" + "wide" "f0" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "76 70 66 255" + "PaintBackgroundType" "0" + "proportionalToParent" "1" + } + + "ActiveTabPanel" + { + "ControlName" "EditablePanel" + "fieldName" "ActiveTabPanel" + "xpos" "0" + "ypos" "0" + "zpos" "20" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "42 39 37 255" + "PaintBackgroundType" "2" + "mouseinputenabled" "0" + "proportionalToParent" "1" + } +} diff --git a/biscottihud/resource/ui/mvmvictorypanel.res b/biscottihud/resource/ui/mvmvictorypanel.res new file mode 100644 index 0000000..1e85c8a --- /dev/null +++ b/biscottihud/resource/ui/mvmvictorypanel.res @@ -0,0 +1,199 @@ +"Resource/UI/MvMVictoryPanel.res" +{ + "StatsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "StatsContainer" + "xpos" "c-265" + "ypos" "100" + "wide" "536" + "tall" "230" + "visible" "1" + + //"PaintBackgroundType" "0" + //"paintbackground" "0" + //"border" "MainMenuHighlightBorder" + + "StatsBackground" + { + "ControlName" "ScalableImagePanel" + "fieldName" "SplashBackground" + "xpos" "0" + "ypos" "0" + "wide" "530" + "tall" "230" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_black" + + "src_corner_height" "16" // pixels inside the image + "src_corner_width" "16" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + } + + "HeaderContainer" + { + "ControlName" "EditablePanel" + "fieldName" "HeaderContainer" + "xpos" "0" + "ypos" "0" + "wide" "530" + "tall" "100" + "visible" "1" + + "HeaderShadow" + { + "ControlName" "CExLabel" + "fieldName" "HeaderShadow" + "font" "HudFontMediumBold" + "labelText" "%headershadow%" + "textAlignment" "center" + "xpos" "1" + "ypos" "13" + "wide" "530" + "tall" "40" + "fgcolor" "Black" + } + + "HeaderLabel" + { + "ControlName" "CExLabel" + "fieldName" "HeaderLabel" + "font" "HudFontMediumBold" + "labelText" "%header%" + "textAlignment" "center" + "xpos" "0" + "ypos" "12" + "wide" "530" + "tall" "40" + "fgcolor" "Orange" + } + } + + "CreditLabel" + { + "ControlName" "CExLabel" + "fieldName" "CreditLabel" + "font" "HudFontMediumBold" + "labelText" "#TF_PVE_Currency" + "textAlignment" "north-west" + "xpos" "80" + "ypos" "80" + "wide" "300" + "tall" "40" + "fgcolor" "tanlight" + } + + "CreditContainer" + { + "ControlName" "CCreditDisplayPanel" + "fieldName" "CreditContainer" + "xpos" "80" + "ypos" "90" + "wide" "400" + "tall" "70" + "autoResize" "1" + "visible" "1" + } + + "RatingContainer" + { + "ControlName" "EditablePanel" + "fieldName" "RatingContainer" + "xpos" "275" + "ypos" "80" + "wide" "400" + "tall" "400" + "autoResize" "1" + "visible" "1" + + "RatingLabel" + { + "ControlName" "CExLabel" + "fieldName" "RatingLabel" + "font" "HudFontMediumBold" + "labelText" "%ratinglabel%" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "wide" "180" + "tall" "40" + "fgcolor" "tanlight" + } + + "RatingTextShadow" + { + "ControlName" "CExLabel" + "fieldName" "RatingTextShadow" + "font" "HudFontGiantBold" + "labelText" "%ratingscore%" + "textAlignment" "center" + "xpos" "1" + "ypos" "41" + "wide" "180" + "tall" "50" + "fgcolor" "Black" + } + + "RatingText" + { + "ControlName" "CExLabel" + "fieldName" "RatingText" + "font" "HudFontGiantBold" + "labelText" "%ratingscore%" + "textAlignment" "center" + "xpos" "0" + "ypos" "40" + "wide" "180" + "tall" "50" + "fgcolor" "White" + } + } + + "TotalGameCreditSpendPanel" + { + "ControlName" "CCreditSpendPanel" + "fieldName" "TotalGameCreditSpendPanel" + "xpos" "80" + "ypos" "135" + "wide" "400" + "tall" "70" + "autoResize" "1" + "visible" "1" + } + } + + "DoneButton" + { + "ControlName" "CExImageButton" + "fieldName" "DoneButton" + "xpos" "-8" + "ypos" "10" + "zpos" "100" + "wide" "106" + "tall" "25" + "autoResize" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#DoneButton" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "image_drawcolor" "235 226 202 255" + "Command" "done" + + "pin_to_sibling" "StatsContainer" + "pin_corner_to_sibling" "1" + "pin_to_sibling_corner" "3" + } +} diff --git a/biscottihud/resource/ui/mvmvictorysplash.res b/biscottihud/resource/ui/mvmvictorysplash.res new file mode 100644 index 0000000..a9915e9 --- /dev/null +++ b/biscottihud/resource/ui/mvmvictorysplash.res @@ -0,0 +1,56 @@ +"Resource/UI/MvMVictoryPanel.res" +{ + "SplashContainer" + { + "ControlName" "EditablePanel" + "fieldName" "SplashContainer" + "xpos" "c-150" + "ypos" "c-20" + "wide" "300" + "tall" "300" + "visible" "1" + + "SplashBackground" + { + "ControlName" "ScalableImagePanel" + "fieldName" "SplashBackground" + "xpos" "25" + "ypos" "0" + "wide" "250" + "tall" "70" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/ammo_red_bg" + } + + "SplashLabelShadow" + { + "ControlName" "CExLabel" + "fieldName" "SplashLabelShadow" + "font" "HudFontGiantBold" + "labelText" "#TF_MVM_Victory" + "textAlignment" "center" + "xpos" "2" + "ypos" "14" + "wide" "300" + "tall" "50" + "fgcolor" "black" + } + + "SplashLabel" + { + "ControlName" "CExLabel" + "fieldName" "SplashLabel" + "font" "HudFontGiantBold" + "labelText" "#TF_MVM_Victory" + "textAlignment" "center" + "xpos" "0" + "ypos" "12" + "wide" "300" + "tall" "50" + "fgcolor" "tanlight" + } + } +} diff --git a/biscottihud/resource/ui/mvmwavelosspanel.res b/biscottihud/resource/ui/mvmwavelosspanel.res new file mode 100644 index 0000000..b5c5f99 --- /dev/null +++ b/biscottihud/resource/ui/mvmwavelosspanel.res @@ -0,0 +1,553 @@ +"Resource/UI/MvMWaveLossPanel.res" +{ + "DarkMask" + { + "ControlName" "EditablePanel" + "fieldName" "DarkMask" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "f0" + "tall" "480" + "visible" "1" + "bgcolor_override" "20 20 20 200" + } + + "PanelBackground" + { + "ControlName" "EditablePanel" + "fieldName" "PanelBackground" + "xpos" "c-275" + "ypos" "100" + "wide" "550" + "tall" "350" + "visible" "1" + + "PaintBackgroundType" "2" + "paintbackground" "0" + "border" "NoBorder" // MainMenuHighlightBorder + } + + "WaveFailHeaderShadow" + { + "ControlName" "CExLabel" + "fieldName" "WaveFailHeaderShadow" + "font" "HudFontMediumBold" + "labelText" "%waveheader%" + "textAlignment" "center" + "xpos" "c-274" + "ypos" "106" + "wide" "550" + "tall" "30" + "fgcolor" "Black" + } + + "WaveFailHeader" + { + "ControlName" "CExLabel" + "fieldName" "HeaderLabel" + "font" "HudFontMediumBold" + "labelText" "%waveheader%" + "textAlignment" "center" + "xpos" "c-275" + "ypos" "105" + "wide" "550" + "tall" "30" + "fgcolor" "Orange" + } + + "HeaderDivider" + { + "ControlName" "EditablePanel" + "fieldName" "HeaderDivider" + "xpos" "c-250" + "ypos" "128" + "wide" "500" + "tall" "2" + "visible" "1" + "bgcolor_override" "20 20 20 100" + } + + "SummaryHeader" + { + "ControlName" "CExLabel" + "fieldName" "SummaryHeader" + "font" "HudFontMediumSmallBold" + "labelText" "%summaryheader%" + "textAlignment" "west" + "xpos" "c-250" + "ypos" "135" + "wide" "550" + "tall" "30" + "fgcolor" "Black" + } + + "CollectionContainer" + { + "ControlName" "EditablePanel" + "fieldName" "CollectionContainer" + "xpos" "190" + "ypos" "160" + "wide" "300" + "tall" "100" + "visible" "1" + + "Header" + { + "ControlName" "CExLabel" + "fieldName" "Header" + "font" "HudFontSmallBold" + "labelText" "#TF_PVE_Credit_Collection" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "wide" "140" + "fgcolor" "Black" + } + + "CollectedLabel" + { + "ControlName" "CExLabel" + "fieldName" "CollectedLabel" + "font" "HudFontSmallest" + "labelText" "#TF_PVE_Collected" + "textAlignment" "west" + "xpos" "0" + "ypos" "25" + "wide" "120" + "fgcolor" "TanDarker" + } + + "CollectedCount" + { + "ControlName" "CExLabel" + "fieldName" "CollectedCount" + "font" "HudFontSmallestBold" + "labelText" "%creditscollected%" + "textAlignment" "east" + "xpos" "120" + "ypos" "25" + "wide" "30" + "fgcolor" "CreditsGreen" + } + + "MissedLabel" + { + "ControlName" "CExLabel" + "fieldName" "MissedLabel" + "font" "HudFontSmallest" + "labelText" "#TF_PVE_Missed" + "textAlignment" "west" + "xpos" "0" + "ypos" "40" + "wide" "120" + "fgcolor" "TanDarker" + } + + "MissedCount" + { + "ControlName" "CExLabel" + "fieldName" "MissedCount" + "font" "HudFontSmallestBold" + "labelText" "%creditsmissed%" + "textAlignment" "east" + "xpos" "120" + "ypos" "40" + "wide" "30" + "fgcolor" "RedSolid" + } + + "BonusLabel" + { + "ControlName" "CExLabel" + "fieldName" "BonusLabel" + "font" "HudFontSmallest" + "labelText" "#TF_PVE_Bonus" + "textAlignment" "west" + "xpos" "0" + "ypos" "55" + "wide" "120" + "fgcolor" "TanDarker" + } + + "BonusCount" + { + "ControlName" "CExLabel" + "fieldName" "BonusCount" + "font" "HudFontSmallestBold" + "labelText" "%creditbonus%" + "textAlignment" "east" + "xpos" "120" + "ypos" "55" + "wide" "30" + "fgcolor" "CreditsGreen" + } + } + + "UsageContainer" + { + "ControlName" "EditablePanel" + "fieldName" "UsageContainer" + "xpos" "390" + "ypos" "160" + "wide" "300" + "tall" "100" + "visible" "1" + + "Header" + { + "ControlName" "CExLabel" + "fieldName" "Header" + "font" "HudFontSmallBold" + "labelText" "#TF_PVE_Credit_Use" + "textAlignment" "center" + "xpos" "0" + "ypos" "0" + "wide" "195" + "fgcolor" "Black" + } + + "YouLabel" + { + "ControlName" "CExLabel" + "fieldName" "YouLabel" + "font" "FontStorePriceSmall" + "labelText" "#TF_PVE_You" + "textAlignment" "east" + "xpos" "120" + "ypos" "15" + "wide" "35" + "fgcolor" "TanDarker" + } + + "TeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "TeamLabel" + "font" "FontStorePriceSmall" + "labelText" "#Winpanel_Team2" + "textAlignment" "east" + "xpos" "175" + "ypos" "15" + "wide" "35" + "fgcolor" "TanDarker" + } + + "BuybackLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuybackLabel" + "font" "HudFontSmallest" + "labelText" "#TF_PVE_Buybacks" + "textAlignment" "west" + "xpos" "0" + "ypos" "25" + "wide" "120" + "fgcolor" "TanDarker" + } + + "BuybackCountYou" + { + "ControlName" "CExLabel" + "fieldName" "BuybackCountYou" + "font" "HudFontSmallestBold" + "labelText" "%buybacksyou%" + "textAlignment" "east" + "xpos" "120" + "ypos" "25" + "wide" "35" + "fgcolor" "TanDarker" + } + + "BuybackCountTeam" + { + "ControlName" "CExLabel" + "fieldName" "BuybackCountTeam" + "font" "HudFontSmallestBold" + "labelText" "%buybacksteam%" + "textAlignment" "east" + "xpos" "175" + "ypos" "25" + "wide" "35" + "fgcolor" "TanDarker" + } + + "BottleLabel" + { + "ControlName" "CExLabel" + "fieldName" "BottleLabel" + "font" "HudFontSmallest" + "labelText" "#TF_PVE_Bottles" + "textAlignment" "west" + "xpos" "0" + "ypos" "40" + "wide" "120" + "fgcolor" "TanDarker" + } + + "BottleCountYou" + { + "ControlName" "CExLabel" + "fieldName" "BottleCountYou" + "font" "HudFontSmallestBold" + "labelText" "%bottlesyou%" + "textAlignment" "east" + "xpos" "120" + "ypos" "40" + "wide" "35" + "fgcolor" "TanDarker" + } + + "BottleCountTeam" + { + "ControlName" "CExLabel" + "fieldName" "BottleCountTeam" + "font" "HudFontSmallestBold" + "labelText" "%bottlesteam%" + "textAlignment" "east" + "xpos" "175" + "ypos" "40" + "wide" "35" + "fgcolor" "TanDarker" + } + + "InactiveLabel" + { + "ControlName" "CExLabel" + "fieldName" "InactiveLabel" + "font" "HudFontSmallest" + "labelText" "#TF_PVE_Inactive_Upgrades" + "textAlignment" "west" + "xpos" "0" + "ypos" "55" + "wide" "120" + "fgcolor" "TanDarker" + } + + "InactiveCountYou" + { + "ControlName" "CExLabel" + "fieldName" "ActiveCountYou" + "font" "HudFontSmallestBold" + "labelText" "%inactiveupgradesyou%" + "textAlignment" "east" + "xpos" "120" + "ypos" "55" + "wide" "35" + "fgcolor" "RedSolid" + } + + "InactiveCountTeam" + { + "ControlName" "CExLabel" + "fieldName" "ActiveCountTeam" + "font" "HudFontSmallestBold" + "labelText" "%inactiveupgradesteam%" + "textAlignment" "east" + "xpos" "175" + "ypos" "55" + "wide" "35" + "fgcolor" "RedSolid" + } + } + + "HintContainer" + { + "ControlName" "EditablePanel" + "fieldName" "HintContainer" + "xpos" "c-250" + "ypos" "250" + "wide" "500" + "tall" "150" + "visible" "1" + + "Background" + { + "ControlName" "ScalableImagePanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "wide" "500" + "tall" "150" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../HUD/tournament_panel_black" + + "src_corner_height" "22" // pixels inside the image + "src_corner_width" "22" + + "draw_corner_width" "5" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "5" + } + + "Header" + { + "ControlName" "CExLabel" + "fieldName" "Header" + "font" "HudFontSmallBold" + "labelText" "#TF_PVE_Hint_Header" + "textAlignment" "center" + "xpos" "0" + "ypos" "5" + "wide" "500" + "fgcolor" "Gray" + } + + "CptCntnBody" + { + "ControlName" "ImagePanel" + "fieldName" "CptCntnBody" + "xpos" "5" + "ypos" "70" + "zpos" "2" + "wide" "50" + "tall" "50" + "image" "" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + + "CptCntnMisc" + { + "ControlName" "ImagePanel" + "fieldName" "CptCntnMisc" + "xpos" "5" + "ypos" "45" + "zpos" "3" + "wide" "50" + "tall" "50" + "image" "" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + + "CptCntnHat" + { + "ControlName" "ImagePanel" + "fieldName" "CptCntnHat" + "xpos" "5" + "ypos" "20" + "zpos" "1" + "wide" "50" + "tall" "50" + "image" "" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + } + + "HintImage1" + { + "ControlName" "ImagePanel" + "fieldName" "HintImage1" + "xpos" "5" + "ypos" "20" + "wide" "50" + "tall" "100" + "image" "class_sel_sm_engineer_inactive" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + + "Hint1" + { + "ControlName" "CExLabel" + "fieldName" "Hint1" + "font" "HudFontSmallest" + "labelText" "%hint1%" + "textAlignment" "north-west" + "xpos" "55" + "ypos" "60" + "wide" "185" + "tall" "55" + "fgcolor" "Gray" + "wrap" "1" + } + + "HintImage2" + { + "ControlName" "ImagePanel" + "fieldName" "HintImage2" + "xpos" "255" + "ypos" "20" + "wide" "50" + "tall" "100" + "image" "class_sel_sm_engineer_inactive" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + + "Hint2" + { + "ControlName" "CExLabel" + "fieldName" "Hint2" + "font" "HudFontSmallest" + "labelText" "%hint2%" + "textAlignment" "north-west" + "xpos" "305" + "ypos" "60" + "wide" "185" + "tall" "55" + "fgcolor" "Gray" + "wrap" "1" + } + } + + "VoteButton" + { + "ControlName" "CExImageButton" + "fieldName" "VoteButton" + "xpos" "c-250" + "ypos" "410" + "zpos" "999" + "wide" "200" + "tall" "25" + "autoResize" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_PVE_Vote_MissionRestart" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "image_drawcolor" "235 226 202 255" + "Command" "vote_restart" + } + + "ContinueButton" + { + "ControlName" "CExImageButton" + "fieldName" "ContinueButton" + "xpos" "c150" + "ypos" "410" + "zpos" "1000" + "wide" "100" + "tall" "25" + "autoResize" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ConfirmButtonText" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "image_drawcolor" "235 226 202 255" + "Command" "continue" + } +} diff --git a/biscottihud/resource/ui/objectivestatusescort.res b/biscottihud/resource/ui/objectivestatusescort.res new file mode 100644 index 0000000..12bd591 --- /dev/null +++ b/biscottihud/resource/ui/objectivestatusescort.res @@ -0,0 +1,667 @@ +"Resource/UI/ObjectiveStatusEscort.res" +{ + "ObjectiveStatusEscort" + { + "ControlName" "EditablePanel" + "fieldName" "ObjectiveStatusEscort" + "xpos" "c-200" + "ypos" "r150" + "zpos" "1" + "wide" "400" + "tall" "150" + "visible" "1" + "enabled" "1" + "progress_xpos" "79" + "progress_wide" "270" + + "if_multiple_trains" + { + "ypos" "r200" + "tall" "200" + } + } + + "LevelBar" + { + "ControlName" "ImagePanel" + "fieldName" "LevelBar" + "xpos" "73" + "ypos" "123" + "zpos" "0" + "wide" "254" + "tall" "4" + "visible" "1" + "enabled" "1" + "labelText" "" + "image" "../hud/cart_track" + "scaleImage" "1" + + "if_multiple_trains" + { + "ypos" "114" + "zpos" "3" + "tall" "12" + "image" "../hud/cart_track_neutral_opaque" + } + + "if_multiple_trains_red" + { + "visible" "1" + } + + "if_multiple_trains_blue" + { + "visible" "0" + } + + "if_single_with_hills" + { + "ypos" "116" + "ypos_minmode" "120" + "tall" "18" + "tall_minmode" "10" + "image" "../hud/cart_track_neutral_opaque" + } + } + + "ProgressBar" + { + "ControlName" "CTFHudEscortProgressBar" + "fieldName" "ProgressBar" + "xpos" "73" + "ypos" "123" + "zpos" "4" + "wide" "254" + "tall" "4" + "visible" "0" + "enabled" "1" + "scaleImage" "1" + + "if_multiple_trains" + { + "zpos" "6" + "tall" "6" + "visible" "1" + } + + "if_multiple_trains_top" + { + "ypos" "114" + } + + "if_multiple_trains_bottom" + { + "ypos" "120" + } + } + + "HomeCPIcon" + { + "ControlName" "ImagePanel" + "fieldName" "HomeCPIcon" + "xpos" "59" + "xpos_minmode" "64" + "ypos" "111" + "ypos_minmode" "116" + "zpos" "1" + "wide" "28" + "wide_minmode" "18" + "tall" "28" + "tall_minmode" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_home_blue" + "scaleImage" "1" + + "if_team_red" + { + "image" "../hud/cart_home_red" + } + + "if_single_with_hills_blue" + { + "image" "../hud/cart_home_blue_opaque" + } + + "if_single_with_hills_red" + { + "image" "../hud/cart_home_red_opaque" + } + + "if_multiple_trains" + { + "xpos" "59" + "zpos" "5" + "wide" "14" + "tall" "14" + "image" "../hud/cart_track_neutral_opaque" + } + + "if_multiple_trains_top" + { + "ypos" "106" + } + + "if_multiple_trains_bottom" + { + "ypos" "120" + } + + "if_multiple_trains_red" + { + "image" "../hud/cart_home_red_square" + } + + "if_multiple_trains_blue" + { + "image" "../hud/cart_home_blue_square" + } + } + + "SimpleControlPointTemplate" + { + "ControlName" "ImagePanel" + "fieldName" "SimpleControlPointTemplate" + "xpos" "60" + "xpos_minmode" "65" + "ypos" "111" + "ypos_minmode" "116" + "zpos" "1" + "wide" "28" + "wide_minmode" "18" + "tall" "28" + "tall_minmode" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_point_neutral" + "scaleImage" "1" + + "if_multiple_trains" + { + "xpos" "61" + "ypos" "114" + "zpos" "5" + "wide" "12" + "tall" "12" + } + } + + "EscortItemPanel" + { + "ControlName" "EditablePanel" + "fieldName" "EscortItemPanel" + "xpos" "0" + "ypos" "8" + "ypos_minmode" "48" + "zpos" "2" + "wide" "80" + "wide_minmode" "52" + "tall" "115" + "tall_minmode" "75" + "visible" "1" + "enabled" "1" + + "if_multiple_trains" + { + "ypos" "48" + "zpos" "8" + "wide" "52" + "tall" "170" + } + + "RecedeTime" + { + "ControlName" "CExLabel" + "fieldName" "RecedeTime" + "font" "HudFontSmallest" + "font_minmode" "ItemFontAttribSmall" + "xpos" "35" + "xpos_minmode" "22" + "ypos" "82" + "ypos_minmode" "53" + "zpos" "2" + "wide" "10" + "wide_minmode" "9" + "tall" "10" + "tall_minmode" "7" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "%recede%" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + + "if_multiple_trains" + { + "font" "ItemFontAttribSmall" + "xpos" "21" + "wide" "11" + "tall" "10" + } + + "if_multiple_trains_top" + { + "ypos" "46" + } + + "if_multiple_trains_bottom" + { + "ypos" "82" + } + } + + "EscortItemImage" + { + "ControlName" "ImagePanel" + "fieldName" "EscortItemImage" + "xpos" "20" + "xpos_minmode" "13" + "ypos" "77" + "ypos_minmode" "50" + "zpos" "1" + "wide" "40" + "wide_minmode" "26" + "tall" "40" + "tall_minmode" "26" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_neutral" + "scaleImage" "1" + + "if_team_blue" + { + "image" "../hud/cart_blue" + } + + "if_team_red" + { + "image" "../hud/cart_red" + } + + "if_multiple_trains" + { + "xpos" "11" + "ypos" "43" + "wide" "30" + "tall" "30" + } + } + + "EscortItemImageBottom" + { + "ControlName" "ImagePanel" + "fieldName" "EscortItemImageBottom" + "xpos" "20" + "ypos" "117" + "zpos" "1" + "wide" "40" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_neutral_bottom" + "scaleImage" "1" + + "if_team_blue" + { + "image" "../hud/cart_blue_bottom" + } + + "if_team_red" + { + "image" "../hud/cart_red_bottom" + } + + "if_multiple_trains" + { + "xpos" "11" + "ypos" "71" + "wide" "30" + "tall" "30" + } + } + + "EscortItemImageAlert" + { + "ControlName" "ImagePanel" + "fieldName" "EscortItemImageAlert" + "xpos" "-4" + "ypos" "38" + "zpos" "0" + "wide" "60" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_alert" + "scaleImage" "1" + + "if_multiple_trains_bottom" + { + "xpos" "-5" + "ypos" "75" + } + } + + "Speed_Backwards" + { + "ControlName" "ImagePanel" + "fieldName" "Speed_Backwards" + "xpos" "35" + "xpos_minmode" "23" + "ypos" "82" + "ypos_minmode" "53" + "zpos" "2" + "wide" "10" + "wide_minmode" "7" + "tall" "10" + "tall_minmode" "7" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_arrow_left" + "scaleImage" "1" + + "if_multiple_trains" + { + "xpos" "22" + "wide" "8" + "tall" "8" + } + + "if_multiple_trains_top" + { + "ypos" "46" + } + + "if_multiple_trains_bottom" + { + "ypos" "83" + } + } + + "CapPlayerImage" + { + "ControlName" "ImagePanel" + "fieldName" "CapPlayerImage" + "xpos" "33" + "xpos_minmode" "20" + "ypos" "80" + "ypos_minmode" "52" + "zpos" "3" + "wide" "6" + "wide_minmode" "4" + "tall" "12" + "tall_minmode" "8" + "visible" "0" + "enabled" "1" + "image" "capture_icon_white" + "scaleImage" "1" + + "if_multiple_trains" + { + "xpos" "20" + "wide" "5" + "tall" "10" + } + + "if_multiple_trains_top" + { + "ypos" "45" + } + + "if_multiple_trains_bottom" + { + "ypos" "81" + } + } + + "CapNumPlayers" + { + "ControlName" "CExLabel" + "fieldName" "CapNumPlayers" + "font" "HudFontSmallest" + "font_minmode" "ItemFontAttribSmall" + "xpos" "39" + "xpos_minmode" "25" + "ypos" "82" + "ypos_minmode" "53" + "zpos" "4" + "wide" "30" + "wide_minmode" "20" + "tall" "10" + "tall_minmode" "7" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#ControlPointIconCappers" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + + "if_multiple_trains" + { + "font" "ItemFontAttribSmall" + "xpos" "25" + "wide" "30" + "tall" "10" + } + + "if_multiple_trains_top" + { + "ypos" "46" + } + + "if_multiple_trains_bottom" + { + "ypos" "82" + } + } + + "Blocked" + { + "ControlName" "ImagePanel" + "fieldName" "Blocked" + "xpos" "35" + "xpos_minmode" "23" + "ypos" "82" + "ypos_minmode" "53" + "zpos" "2" + "wide" "10" + "wide_minmode" "7" + "tall" "10" + "tall_minmode" "7" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_blocked" + "scaleImage" "1" + + "if_multiple_trains" + { + "xpos" "22" + "wide" "8" + "tall" "8" + } + + "if_multiple_trains_top" + { + "ypos" "46" + } + + "if_multiple_trains_bottom" + { + "ypos" "83" + } + } + + "EscortTeardrop" + { + "ControlName" "EditablePanel" + "fieldName" "EscortTeardrop" + "xpos" "13" + "xpos_minmode" "9" + "ypos" "13" + "ypos_minmode" "8" + "zpos" "20" + "wide" "100" + "wide_minmode" "65" + "tall" "65" + "tall_minmode" "42" + "visible" "0" + "enabled" "1" + + "if_multiple_trains" + { + "xpos" "9" + "ypos" "2" + "wide" "65" + "tall" "42" + } + + "Teardrop" + { + "ControlName" "CIconPanel" + "fieldName" "Teardrop" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "54" + "wide_minmode" "35" + "tall" "65" + "tall_minmode" "42" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "cappoint_progressbar_teardrop" + "iconColor" "255 255 255 255" + + "if_multiple_trains" + { + "xpos" "0" + "ypos" "0" + "wide" "35" + "tall" "42" + } + } + + "ProgressText" + { + "ControlName" "Label" + "fieldName" "ProgressText" + "font" "DefaultSmall" + "font_minmode" "DefaultVerySmall" + "xpos" "0" + "ypos" "8" + "ypos_minmode" "3" + "zpos" "23" + "wide" "54" + "wide_minmode" "35" + "tall" "40" + "tall_minmode" "28" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "progress" + "dulltext" "0" + "brighttext" "0" + "centerwrap" "1" + + "if_multiple_trains" + { + "font" "DefaultVerySmall" + "xpos" "0" + "ypos" "3" + "wide" "35" + "tall" "28" + } + } + + "Blocked" + { + "ControlName" "CIconPanel" + "fieldName" "Blocked" + "xpos" "2" + "ypos" "3" + "ypos_minmode" "2" + "zpos" "1" + "wide" "50" + "wide_minmode" "31" + "tall" "50" + "tall_minmode" "31" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "cappoint_progressbar_blocked" + "iconColor" "255 255 255 255" + + "if_multiple_trains" + { + "xpos" "2" + "ypos" "2" + "wide" "31" + "tall" "31" + } + } + + "Capping" + { + "ControlName" "ImagePanel" + "fieldName" "Capping" + "xpos" "12" + "xpos_minmode" "8" + "ypos" "13" + "ypos_minmode" "8" + "zpos" "1" + "wide" "30" + "wide_minmode" "20" + "tall" "30" + "tall_minmode" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "image" "../hud/cart_arrow_right" + "scaleImage" "1" + + "if_multiple_trains" + { + "xpos" "8" + "ypos" "8" + "wide" "20" + "tall" "20" + } + } + } + } +} diff --git a/biscottihud/resource/ui/objectivestatusmultipleescort.res b/biscottihud/resource/ui/objectivestatusmultipleescort.res new file mode 100644 index 0000000..92c16fe --- /dev/null +++ b/biscottihud/resource/ui/objectivestatusmultipleescort.res @@ -0,0 +1,44 @@ +"Resource/UI/ObjectiveStatusMultipleEscort.res" +{ + "ObjectiveStatusMultipleEscort" + { + "ControlName" "EditablePanel" + "fieldName" "ObjectiveStatusMultipleEscort" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + } + + "BlueEscortPanel" + { + "ControlName" "CTFHudEscort" + "fieldName" "BlueEscortPanel" + "xpos" "c-200" + "ypos" "r160" + "zpos" "1" + "wide" "400" + "tall" "200" + "visible" "1" + "enabled" "1" + "progress_xpos" "79" + "progress_wide" "270" + } + + "RedEscortPanel" + { + "ControlName" "CTFHudEscort" + "fieldName" "RedEscortPanel" + "xpos" "c-200" + "ypos" "r160" + "zpos" "1" + "wide" "400" + "tall" "200" + "visible" "1" + "enabled" "1" + "progress_xpos" "79" + "progress_wide" "270" + } +} diff --git a/biscottihud/resource/ui/pvprankpanel.res b/biscottihud/resource/ui/pvprankpanel.res new file mode 100644 index 0000000..ace0cc4 --- /dev/null +++ b/biscottihud/resource/ui/pvprankpanel.res @@ -0,0 +1,580 @@ +#base "pvprankpanel_colour.res" + +"Resource/UI/PvPRankPanel.res" +{ + "ModelContainer" + { + "ControlName" "EditablePanel" + "fieldName" "ModelContainer" + "xpos" "cs-0.5" + "ypos" "cs-0.5" + "zpos" "3" + "wide" "f0" + "tall" "f0" + "proportionaltoparent" "1" + "actionsignallevel" "2" + + "BelowModelParticlePanel" + { + "ControlName" "CTFParticlePanel" + "fieldName" "BelowModelParticlePanel" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "cs-0.5-228" + } + + "ParticleEffects" + { + "0" + { + "particle_xpos" "c0" + "particle_ypos" "c0" + "particle_scale" "3" + "particleName" "rankup_base" + "start_activated" "0" + "loop" "0" + } + } + + "paintbackground" "0" + } + + "RankModel" + { + "ControlName" "CBaseModelPanel" + "fieldName" "RankModel" + "xpos" "cs-0.5" + "ypos" "cs-0.5" + "zpos" "0" + "wide" "o1" + "tall" "p0.12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fov" "70" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "cs-0.5-228" + "ypos" "cs-0.5" + "wide" "200" + "tall" "200" + } + + "paintbackground" "0" + + "render_texture" "0" + + "model" + { + "force_pos" "1" + "modelname" "" + "skin" "0" + "angles_x" "0" + "angles_y" "180" + "angles_z" "0" + "origin_x" "45" + "origin_y" "0" + "origin_z" "0" + "spotlight" "1" + + if_mini + { + "origin_x" "55" + } + + "animation" + { + "sequence" "idle" + "default" "1" + } + } + + "lights" + { + "default" + { + "name" "directional" + "color" "0.5 0.5 0.5" + "direction" "0.60 0.65 0.2" + } + } + } + + "AboveModelParticlePanel" + { + "ControlName" "CTFParticlePanel" + "fieldName" "AboveModelParticlePanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "proportionaltoparent" "1" + + "paintbackground" "0" + + if_mini + { + "xpos" "cs-0.5-228" + } + + "ParticleEffects" + { + "0" + { + "particle_xpos" "c0" + "particle_ypos" "c0" + "particle_scale" "5" + "particleName" "rankup_glitter" + "start_activated" "0" + "loop" "0" + } + "1" + { + "particle_xpos" "c0" + "particle_ypos" "c0" + "particle_scale" "4" + "particleName" "badgepress_base" + "start_activated" "0" + "loop" "0" + } + "2" + { + "particle_xpos" "c-8" + "particle_ypos" "c0" + "particle_scale" "4" + "particleName" "rankdown_base" + "start_activated" "0" + "loop" "0" + } + } + + "paintbackground" "1" + } + + "MedalButton" + { + "ControlName" "Button" + "fieldName" "MedalButton" + "xpos" "cs-0.5" + "ypos" "cs-0.5+2" + "zpos" "100" + "wide" "o1" + "tall" "42" + "proportionaltoparent" "1" + "command" "medal_clicked" + "actionsignallevel" "2" + "labeltext" "" + + "paintbackground" "0" + "backgroundenabled" "0" + } + } + + "BGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BGPanel" + "xpos" "rs1" + "ypos" "20" + "zpos" "-1" + "wide" "260" + "tall" "f40" + "visible" "0" + "PaintBackgroundType" "0" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "cs-0.5" + "ypos" "cs-0.5" + "tall" "35" + "wide" "505" + } + + "NameLabel" + { + "ControlName" "Label" + "fieldName" "NameLabel" + "xpos" "65" + "ypos" "5" + "wide" "f0" + "zpos" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallishBold" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%name%" + "proportionaltoparent" "1" + + if_mini + { + "visible" "0" + } + } + + "DescLine1" + { + "ControlName" "CAutoFittingLabel" + "fieldName" "DescLine1" + "xpos" "65" + "ypos" "19" + "wide" "195" + "zpos" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallestBold" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%desc1%" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "67" + "ypos" "4" + } + + "fonts" + { + "0" "HudFontSmallestBold" + "1" "StorePromotionsTitle" + "2" "FontStorePrice" + } + } + + "DescLine2" + { + "ControlName" "CAutoFittingLabel" + "fieldName" "DescLine2" + "xpos" "65" + "ypos" "29" + "wide" "195" + "zpos" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallestBold" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%desc2%" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "67" + "ypos" "4" + } + + "fonts" + { + "0" "HudFontSmallestBold" + "1" "StorePromotionsTitle" + "2" "FontStorePrice" + } + + "colors" + { + "1" "CreditsGreen" + "2" "TanLight" + } + } + + "StatsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "StatsContainer" + "xpos" "rs1-5" + "ypos" "0" + "wide" "f70" + "tall" "f0" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "rs1-10" + "ypos" "0" + "wide" "p0.85" + } + + "XPBar" + { + "Controlname" "EditablePanel" + "fieldName" "XPBar" + "xpos" "cs-0.5" + "ypos" "rs1-3" + "wide" "p1" + "tall" "30" + "proportionaltoparent" "1" + + + + "CurrentXPLabel" + { + "ControlName" "Label" + "fieldName" "CurrentXPLabel" + "xpos" "0" + "ypos" "rs1" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "ItemFontAttribSmall" + "fgcolor_override" "TanLight" + "textAlignment" "south-west" + "labelText" "%current_xp%" + "proportionaltoparent" "1" + } + + "NextLevelXPLabel" + { + "ControlName" "Label" + "fieldName" "NextLevelXPLabel" + "xpos" "rs1" + "ypos" "rs1" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "ItemFontAttribSmall" + "fgcolor_override" "TanLight" + "textAlignment" "south-east" + "labelText" "%next_level_xp%" + "proportionaltoparent" "1" + } + + "ProgressBarsContainer" + { + "Controlname" "EditablePanel" + "fieldName" "ProgressBarsContainer" + "xpos" "0" + "ypos" "rs1-10" + "wide" "p1" + "tall" "7" + "proportionaltoparent" "1" + + "ProgressBar" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar" + "xpos" "0" + "ypos" "cs-0.5" + "wide" "f0" + "tall" "f-2" + "zpos" "1" + "proportionaltoparent" "1" + "progress" "1" + + "fgcolor_override" "20 20 20 180" + "bgcolor_override" "0 0 0 0" + } + + "ContinuousProgressBar" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ContinuousProgressBar" + "xpos" "cs-0.5" + "ypos" "cs-0.5" + "wide" "f2" + "tall" "f2" + "proportionaltoparent" "1" + "progress" "0" + + "fgcolor_override" "CreditsGreen" + } + + "Frame" + { + "Controlname" "EditablePanel" + "fieldName" "Frame" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "f0" + "zpos" "5" + "proportionaltoparent" "1" + "border" "InnerShadowBorderThin" + } + } + } + + "Stats" + { + "ControlName" "EditablePanel" + "fieldName" "Stats" + "xpos" "0" + "ypos" "5" + "wide" "f0" + "tall" "p0.45" + "visible" "0" + "proportionaltoparent" "1" + + "if_mini" + { + "visible" "0" + } + + "Frame" + { + "ControlName" "EditablePanel" + "fieldName" "Frame" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "f0" + "proportionaltoparent" "1" + "border" "InnerShadowBorder" + } + + + + // First column + "GamesLabel" + { + "ControlName" "Label" + "fieldName" "GamesLabel" + "xpos" "10" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%stat_games%" + "proportionaltoparent" "1" + } + + "KillsLabel" + { + "ControlName" "Label" + "fieldName" "KillsLabel" + "xpos" "10" + "ypos" "10" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%stat_kills%" + "proportionaltoparent" "1" + } + + "DeathsLabel" + { + "ControlName" "Label" + "fieldName" "DeathsLabel" + "xpos" "10" + "ypos" "20" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%stat_deaths%" + "proportionaltoparent" "1" + } + + // Second column + "DamageLabel" + { + "ControlName" "Label" + "fieldName" "DamageLabel" + "xpos" "c-20" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%stat_damage%" + "proportionaltoparent" "1" + } + + "HealingLabel" + { + "ControlName" "Label" + "fieldName" "HealingLabel" + "xpos" "c-20" + "ypos" "10" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%stat_healing%" + "proportionaltoparent" "1" + } + + "SupportLabel" + { + "ControlName" "Label" + "fieldName" "SupportLabel" + "xpos" "c-20" + "ypos" "20" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%stat_support%" + "proportionaltoparent" "1" + } + + // Third column + "ScoreLabel" + { + "ControlName" "Label" + "fieldName" "ScoreLabel" + "xpos" "rs1" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "TanLight" + "textAlignment" "north-west" + "labelText" "%stat_score%" + "proportionaltoparent" "1" + } + } + } + } +} diff --git a/biscottihud/resource/ui/pvprankpanel_colour.res b/biscottihud/resource/ui/pvprankpanel_colour.res new file mode 100644 index 0000000..41f4483 --- /dev/null +++ b/biscottihud/resource/ui/pvprankpanel_colour.res @@ -0,0 +1,22 @@ +"Resource/UI/PvPRankPanel.res" +{ + "BGPanel" + { +// "border" "bSchemePrimeBorder1" +// "bgcolor_override" "bBlackSolid3" + + if_mini + { + "border" "bSchemePrimeBorder1" + "bgcolor_override" "bBlackSolid3" + } + + "StatsContainer" + { + "Stats" + { + "bgcolor_override" "bBlackSolid2" + } + } + } +} diff --git a/biscottihud/resource/ui/quickplaybusydialog.res b/biscottihud/resource/ui/quickplaybusydialog.res new file mode 100644 index 0000000..f980657 --- /dev/null +++ b/biscottihud/resource/ui/quickplaybusydialog.res @@ -0,0 +1,243 @@ +#base "quickplaybusydialog_colour.res" + +"Resource/UI/QuickPlayBusyDialog.res" +{ + "QuickPlayBusyDialog" + { + "ControlName" "CQuickPlayBusyDialog" + "fieldName" "QuickPlayBusyDialog" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "0 0 0 200" + } + + "BusyContainer" + { + "ControlName" "EditablePanel" + "fieldName" "BusyContainer" + "xpos" "c-225" + "ypos" "c-75" + "zpos" "0" + "wide" "450" + "tall" "150" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + + "Background" + { + "ControlName" "EditablePanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "wide" "450" + "tall" "150" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "xpos" "0" + "ypos" "15" + "zpos" "1" + "wide" "450" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "Progress" + { + "ControlName" "ProgressBar" + "fieldName" "Progress" + "xpos" "20" + "ypos" "40" + "wide" "410" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "NumServers" + { + "ControlName" "CExLabel" + "fieldName" "NumServers" + "font" "HudFontSmallestBold" + "labelText" "%numservers%" + "textAlignment" "center" + "xpos" "0" + "ypos" "75" + "zpos" "1" + "wide" "450" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "CloseButton" + { + "ControlName" "CExButton" + "fieldName" "CloseButton" + "xpos" "175" + "ypos" "115" + "zpos" "20" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Cancel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "user_close" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + } + + "ResultsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "ResultsContainer" + "xpos" "c-250" + "ypos" "c-200" + "zpos" "0" + "wide" "500" + "tall" "400" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + + "Background" + { + "ControlName" "EditablePanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "wide" "500" + "tall" "400" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontMediumBold" + "labelText" "#TF_MM_ResultsDialog_Title" + "textAlignment" "center" + "xpos" "0" + "ypos" "15" + "zpos" "1" + "wide" "500" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "ServerList" + { + "ControlName" "PanelListPanel" + "fieldName" "ServerList" + "xpos" "10" + "ypos" "40" + "zpos" "1" + "wide" "480" + "tall" "300" + "autoResize" "1" + "pinCorner" "0" + } + + "ConnectButton" + { + "ControlName" "CExButton" + "fieldName" "ConnectButton" + "xpos" "180" + "ypos" "365" + "zpos" "20" + "wide" "150" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Quickplay_Connect" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "ConnectToServer" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "CancelButton" + { + "ControlName" "CExButton" + "fieldName" "CancelButton" + "xpos" "340" + "ypos" "365" + "zpos" "20" + "wide" "150" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Cancel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "user_close" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + } +} diff --git a/biscottihud/resource/ui/quickplaybusydialog_colour.res b/biscottihud/resource/ui/quickplaybusydialog_colour.res new file mode 100644 index 0000000..c9b49dd --- /dev/null +++ b/biscottihud/resource/ui/quickplaybusydialog_colour.res @@ -0,0 +1,22 @@ +"Resource/UI/QuickPlayBusyDialog.res" +{ + "BusyContainer" + { + "border" "bSchemePrimeBorder1" + + "Background" + { + "bgcolor_override" "bBlackSolid4" + } + } + + "ResultsContainer" + { + "border" "bSchemePrimeBorder1" + + "Background" + { + "bgcolor_override" "40 37 37 255" + } + } +} diff --git a/biscottihud/resource/ui/quickplaydialog.res b/biscottihud/resource/ui/quickplaydialog.res new file mode 100644 index 0000000..de0a8d8 --- /dev/null +++ b/biscottihud/resource/ui/quickplaydialog.res @@ -0,0 +1,1024 @@ +#base "quickplaydialog_colour.res" + +"Resource/QuickplayDialog.res" +{ + "QuickplayDialog" + { + "ControlName" "CQuickplayDialog" + "fieldName" "QuickplayDialog" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "0 0 0 240" + + "event247_image" "illustrations/gamemode_halloween2015" +// "community_update_image" "illustrations/gamemode_invasion" + } + + "Container" + { + "ControlName" "EditablePanel" + "fieldName" "Container" + "xpos" "c-200" + "ypos" "c-205" + "wide" "400" + "tall" "410" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + + "Background" + { + "ControlName" "EditablePanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "proportionalToParent" "1" + } + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontMediumBold" + "labelText" "#TF_Quickplay_Title" + "textAlignment" "center" + "xpos" "40" + "ypos" "15" + "zpos" "1" + "wide" "320" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "SimplifiedOptionsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "SimplifiedOptionsContainer" + "xpos" "10" + "ypos" "45" + "zpos" "50" + "wide" "380" + "tall" "250" + "visible" "0" + "enabled" "1" + + "CurPageLabel" + { + "ControlName" "CExLabel" + "fieldName" "CurPageLabel" + "font" "HudFontSmallBold" + "labelText" "%page%" + "textAlignment" "north-west" + "xpos" "40" + "ypos" "10" + "zpos" "10" + "wide" "100" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "89 81 71 255" + } + + "MoreInfoButton" + { + "ControlName" "CExButton" + "fieldName" "MoreInfoButton" + "xpos" "325" + "ypos" "10" + "zpos" "10" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "?" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "Command" "more_info" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "ModeInfoContainer" + { + "ControlName" "EditablePanel" + "fieldName" "ModeInfoContainer" + "xpos" "30" + "ypos" "0" + "wide" "320" + "tall" "245" + "visible" "1" + "enabled" "1" +// "border" "MainMenuHighlightBorder" + "paintbackground" "1" + "bgcolor_override" "TanLight" + + "ModeImage" + { + "ControlName" "ImagePanel" + "fieldName" "ModeImage" + "xpos" "45" + "ypos" "10" + "zpos" "0" + "wide" "230" + "tall" "230" + "visible" "1" + "enabled" "1" + "mouseinputenabled" "0" + "image" "maps/menu_screen_ctf_2fort" + "scaleImage" "1" + } + + "Label_GameType" + { + "ControlName" "CExLabel" + "fieldName" "Label_GameType" + "font" "HudFontMediumSmallBold" + "labelText" "%gametype%" + "textAlignment" "center" + "xpos" "0" + "ypos" "7" + "zpos" "2" + "wide" "320" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "mouseinputenabled" "0" + "fgcolor_override" "89 81 71 255" + } + + "DescLabel" + { + "ControlName" "CExLabel" + "fieldName" "DescLabel" + "font" "HudFontSmallest" + "labelText" "%description%" + "textAlignment" "south" + "xpos" "5" + "ypos" "175" + "zpos" "2" + "wide" "310" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "89 81 71 255" + "auto_wide_tocontents" "0" + "wrap" "1" + "centerwrap" "1" + // "border" "QuickplayBorder" + } + + "ComplexityLabel" + { + "ControlName" "CExLabel" + "fieldName" "ComplexityLabel" + "font" "HudFontSmallest" + "labelText" "%complexity%" + "textAlignment" "south" + "xpos" "5" + "ypos" "225" + "zpos" "2" + "wide" "310" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "201 79 57 255" + "auto_wide_tocontents" "0" + "wrap" "1" + "centerwrap" "1" + // "border" "QuickplayBorder" + } + + "MoreInfoContainer" + { + "ControlName" "EditablePanel" + "fieldName" "MoreInfoContainer" + "xpos" "20" + "ypos" "30" + "zpos" "3" + "wide" "280" + "tall" "205" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + "border" "MainMenuBGBorder" + + "Background" + { + "ControlName" "EditablePanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "wide" "400" + "tall" "400" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "bgcolor_override" "40 37 37 255" + } + + "MoreInfoLabel" + { + "ControlName" "CExLabel" + "fieldName" "MoreInfoLabel" + "font" "HudFontSmallest" + "labelText" "%more_info%" + "textAlignment" "center" + "xpos" "10" + "ypos" "15" + "zpos" "1" + "wide" "260" + "tall" "160" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "centerwrap" "1" + } + } + } + + "PrevPageButton" + { + "ControlName" "CExButton" + "fieldName" "PrevPageButton" + "xpos" "2" + "ypos" "100" + "zpos" "1" + "wide" "20" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "<" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "prevpage" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "NextPageButton" + { + "ControlName" "CExButton" + "fieldName" "NextPageButton" + "xpos" "357" + "ypos" "100" + "zpos" "10" + "wide" "20" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" ">" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "nextpage" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + } + + "AdvOptionsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "AdvOptionsContainer" + "xpos" "10" + "ypos" "45" + "zpos" "50" + "wide" "380" + "tall" "240" + "visible" "0" + "enabled" "1" + "border" "QuickplayBorder" + "bgcolor_override" "0 0 0 255" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Quickplay_AdvancedOptions" + "textAlignment" "center" + "xpos" "10" + "ypos" "10" + "zpos" "1" + "wide" "355" + "tall" "15" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "GameModeOptionContainer" + { + "ControlName" "EditablePanel" + "fieldName" "GameModeOptionContainer" + "xpos" "10" + "ypos" "10" + "zpos" "60" + "wide" "355" + "tall" "20" + "visible" "0" + "enabled" "1" + + "OptionNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "OptionNameLabel" + "font" "HudFontSmallBold" + "labelText" "Game mode" + "textAlignment" "left" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "180" + "tall" "15" + } + + "OptionCombo" + { + "ControlName" "ComboBox" + "fieldName" "OptionCombo" + "Font" "HudFontSmallest" + "xpos" "190" + "ypos" "0" + "zpos" "1" + "wide" "165" + "tall" "15" + "editable" "0" + } + } + + "ValveServerOption" + { + "ControlName" "EditablePanel" + "fieldName" "ValveServerOption" + "xpos" "10" + "ypos" "30" + "zpos" "60" + "wide" "175" + "tall" "60" + + "OptionNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "OptionNameLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Quickplay_ServerHost" + "textAlignment" "left" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "175" + "tall" "15" + } + + "RadioButton0" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton0" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "15" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton1" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton1" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "30" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton2" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton2" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "45" + "zpos" "1" + "wide" "165" + "tall" "15" + } + } + + "IncreasedPlayerCountOption" + { + "ControlName" "EditablePanel" + "fieldName" "IncreasedPlayerCountOption" + "xpos" "195" + "ypos" "30" + "zpos" "60" + "wide" "175" + "tall" "60" + + "OptionNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "OptionNameLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Quickplay_MaxPlayers" + "textAlignment" "left" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "180" + "tall" "15" + } + + "RadioButton0" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton0" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "15" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton1" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton1" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "30" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton2" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton2" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "45" + "zpos" "1" + "wide" "165" + "tall" "15" + } + } + + "RandomCritsOption" + { + "ControlName" "EditablePanel" + "fieldName" "RandomCritsOption" + "xpos" "10" + "ypos" "100" + "zpos" "60" + "wide" "175" + "tall" "60" + + "OptionNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "OptionNameLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Quickplay_RandomCrits" + "textAlignment" "left" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "180" + "tall" "15" + } + + "RadioButton0" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton0" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "15" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton1" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton1" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "30" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton2" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton2" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "45" + "zpos" "1" + "wide" "165" + "tall" "15" + } + } + + "RespawnTimesOption" + { + "ControlName" "EditablePanel" + "fieldName" "RespawnTimesOption" + "xpos" "195" + "ypos" "100" + "zpos" "60" + "wide" "175" + "tall" "60" + + "OptionNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "OptionNameLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Quickplay_RespawnTimes" + "textAlignment" "left" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "180" + "tall" "15" + } + + "RadioButton0" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton0" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "15" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton1" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton1" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "30" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton2" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton2" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "45" + "zpos" "1" + "wide" "165" + "tall" "15" + } + } + + "DamageSpreadOption" + { + "ControlName" "EditablePanel" + "fieldName" "DamageSpreadOption" + "xpos" "10" + "ypos" "170" + "zpos" "60" + "wide" "175" + "tall" "60" + + "OptionNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "OptionNameLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Quickplay_DamageSpread" + "textAlignment" "left" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "180" + "tall" "15" + } + + "RadioButton0" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton0" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "15" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton1" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton1" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "30" + "zpos" "1" + "wide" "165" + "tall" "15" + } + + "RadioButton2" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton2" + "Font" "HudFontSmallest" + "xpos" "20" + "ypos" "45" + "zpos" "1" + "wide" "165" + "tall" "15" + } + } + + } + + "PlayNowButton" + { + "ControlName" "CExButton" + "fieldName" "PlayNowButton" + "xpos" "10" + "ypos" "300" + "zpos" "20" + "wide" "185" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Quickplay_PlayNow" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "playnow" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + +// "border_default" "MainMenuButtonDefault" +// "border_armed" "MainMenuButtonArmed" + "paintbackground" "1" + + "fgcolor_override" "235 226 202 255" + } + + "ShowServersButton" + { + "ControlName" "CExButton" + "fieldName" "ShowServersButton" + "xpos" "205" + "ypos" "300" + "zpos" "20" + "wide" "185" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Quickplay_ShowServers" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "show_servers" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + +// "border_default" "MainMenuButtonDefault" +// "border_armed" "MainMenuButtonArmed" + "paintbackground" "1" + + "fgcolor_override" "235 226 202 255" + } + + "OptionsButton" + { + "ControlName" "CExImageButton" + "fieldName" "OptionsButton" + "xpos" "10" + "ypos" "345" + "zpos" "1" + "wide" "25" + "tall" "25" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + //"labelText" "#GameUI_GameMenu_Options" + "font" "HudFontSmallBold" + "textAlignment" "west" + "textinsetx" "35" + "use_proportional_insets" "1" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "Command" "ToggleShowOptions" + + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + + "image_drawcolor" "235 226 202 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "3" + "ypos" "3" + "zpos" "1" + "wide" "19" + "tall" "19" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "image" "glyph_options" + } + } + + "OptionsSummaryLabel" + { + "ControlName" "CExLabel" + "fieldName" "OptionsSummaryLabel" + "font" "HudFontSmallest" + "textAlignment" "left" + "wrap" "1" + "proportionalToParent" "1" + "xpos" "40" + "ypos" "345" + "zpos" "1" + "wide" "240" + "tall" "30" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "ExplainBetaButton" + { + "ControlName" "CExButton" + "fieldName" "ExplainBetaButton" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "15" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "?" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "1" + "Command" "explain_beta" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "proportionaltoparent" "1" + + "pin_to_sibling" "BetaCheckButton" + "pin_corner_to_sibling" "7" + "pin_to_sibling_corner" "5" + } + + "BetaCheckButton" + { + "ControlName" "CheckButton" + "fieldName" "BetaCheckButton" + "labelText" "#TF_Quickplay_BetaMaps" + "Font" "HudFontSmallestBold" + "textAlignment" "west" + "Command" "beta_toggle" + "xpos" "10" + "ypos" "r30" + "zpos" "1" + "wide" "140" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "dulltext" "0" + "brighttext" "0" + "proportionaltoparent" "1" + } + + "CancelButton" + { + "ControlName" "CExButton" + "fieldName" "CancelButton" + "proportionalToParent" "1" + "xpos" "290" + "ypos" "r35" + "zpos" "20" + "wide" "100" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Cancel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "textinsetx" "50" + "dulltext" "0" + "brighttext" "0" + "Command" "cancel" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + } + + "BetaExplanation" + { + "ControlName" "CExplanationPopup" + "fieldName" "BetaExplanation" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "280" + "tall" "160" + "visible" "0" + "PaintBackgroundType" "0" + "paintbackground" "1" + + "force_close" "1" + "end_x" "50" + "end_y" "210" + "end_wide" "300" + "end_tall" "160" + "callout_inparents_x" "25" + "callout_inparents_y" "385" + "next_explanation" "" + + "TitleLabel" + { + "ControlName" "CExLabel" + "fieldName" "TitleLabel" + "font" "HudFontSmallBold" + "labelText" "#QuickplayBetaExplanation_Title" + "textAlignment" "north" + "xpos" "20" + "ypos" "10" + "wide" "210" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + } + + "TextLabel" + { + "ControlName" "CExLabel" + "fieldName" "TextLabel" + "font" "HudFontSmall" + "labelText" "#QuickplayBetaExplanation_Text" + "textAlignment" "north-west" + "xpos" "20" + "ypos" "35" + "wide" "f0" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + "fgcolor_override" "46 43 42 255" + "proportionaltoparent" "1" + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "r5" + "ypos" "5" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + "sound_depressed" "UI/buttonclick.wav" + "sound_released" "UI/buttonclickrelease.wav" + "Command" "close" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "defaultFgColor_override" "46 43 42 255" + "armedFgColor_override" "235 226 202 255" + "depressedFgColor_override" "46 43 42 255" + + "image_drawcolor" "117 107 94 255" + "image_armedcolor" "200 80 60 255" + "SubImage" + { + "ControlName" "ImagePanel" + "fieldName" "SubImage" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "14" + "tall" "14" + "visible" "1" + "enabled" "1" + "image" "close_button" + "scaleImage" "1" + } + } + } + } +} diff --git a/biscottihud/resource/ui/quickplaydialog_colour.res b/biscottihud/resource/ui/quickplaydialog_colour.res new file mode 100644 index 0000000..744f253 --- /dev/null +++ b/biscottihud/resource/ui/quickplaydialog_colour.res @@ -0,0 +1,18 @@ +"Resource/QuickplayDialog.res" +{ + "Container" + { + "border" "bSchemePrimeBorder1" + + "Background" + { + "bgcolor_override" "bBlackSolid4" + } + + "BetaExplanation" + { + "border" "bSchemePrimeBorder1" + "bgcolor_override" "TanLight" + } + } +} diff --git a/biscottihud/resource/ui/scoreboard.res b/biscottihud/resource/ui/scoreboard.res new file mode 100644 index 0000000..afc221a --- /dev/null +++ b/biscottihud/resource/ui/scoreboard.res @@ -0,0 +1 @@ +#base "scoreboard_number.res" diff --git a/biscottihud/resource/ui/scoreboard_12.res b/biscottihud/resource/ui/scoreboard_12.res new file mode 100644 index 0000000..e71aaa1 --- /dev/null +++ b/biscottihud/resource/ui/scoreboard_12.res @@ -0,0 +1,1922 @@ +"Resource/UI/Scoreboard.res" +{ + "scores" + { + "ControlName" "CTFClientScoreBoardDialog" + "fieldName" "scoreinfo" + "xpos" "cs-0.5" + "ypos" "31" + "wide" "640" + "tall" "260" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "medal_width" "20" + "avatar_width" "65" + "spacer" "5" + "name_width" "118" + "nemesis_width" "25" + "class_width" "25" + "score_width" "30" + "ping_width" "25" + "killstreak_width" "15" + "killstreak_image_width" "15" + + if_mvm + { + "tall" "448" + } + } + "BlueScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BlueScoreBG" + "xpos" "-2" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "BlueTeamImage" + "xpos" "62" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_blue" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "BlueLeaderAvatar" + "xpos" "16" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "BlueLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "BlueLeaderAvatarBG" + "xpos" "14" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "RedScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "RedScoreBG" + "xpos" "326" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "RedTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "RedTeamImage" + "fieldName" "BlueTeamImage" + "xpos" "548" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_red" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "RedLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "RedLeaderAvatar" + "xpos" "580" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "RedLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedLeaderAvatarBG" + "xpos" "578" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "MainBG" + { + "ControlName" "ImagePanel" + "fieldName" "MainBG" + "xpos" "0" + "ypos" "9" + "zpos" "-1" + "wide" "640" + "tall" "251" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "30 30 30 125" + + if_mvm + { + "ypos" "0" + "tall" "448" + } + } + "BlueTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%blueteamname%" + "textAlignment" "west" + "xpos" "10" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "190" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "191" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%blueteamplayercount%" + "textAlignment" "west" + "xpos" "135" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%redteamname%" + "textAlignment" "east" + "xpos" "490" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "330" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "331" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%redteamplayercount%" + "textAlignment" "east" + "xpos" "375" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabel" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "west" + "xpos" "11" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "0" + } + } + "TimerBG" + { + "ControlName" "EditablePanel" + "fieldName" "TimerBG" + "xpos" "280" + "ypos" "-3" + "zpos" "-1" + "wide" "80" + "tall" "43" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftInsetBG" + { + "ControlName" "EditablePanel" + "fieldName" "ServerTimeLeftInsetBG" + "xpos" "286" + "ypos" "12" + "zpos" "1" + "wide" "68" + "tall" "23" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFFatLineBorderOpaque" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftLabel" + "font" "ScoreboardVerySmall" + "labelText" "#Scoreboard_TimeLeftLabel" + "textAlignment" "center" + "xpos" "284" + "ypos" "2" + "zpos" "2" + "wide" "72" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftValue" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftValue" + "font" "ScoreboardMediumSmall" + "labelText" "%servertime%" + "textAlignment" "center" + "xpos" "284" + "ypos" "14" + "zpos" "2" + "wide" "72" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "fgcolor" "BrightYellow" + "centerwrap" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeft" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeft" + "font" "ScoreboardVerySmall" + "labelText" "%servertimeleft%" + "textAlignment" "east" + "xpos" "305" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "0" + "visible" "1" + } + } + "BluePlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "BluePlayerList" + "xpos" "5" + "ypos" "54" + "zpos" "20" + "wide" "310" + "tall" "116" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "blue" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "RedPlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "RedPlayerList" + "xpos" "325" + "ypos" "54" + "zpos" "20" + "wide" "310" + "tall" "116" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "red" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "VerticalLine" + { + "ControlName" "ImagePanel" + "fieldName" "VerticalLine" + "xpos" "319" + "ypos" "52" + "zpos" "2" + "wide" "2" + "tall" "122" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "0" + } + } + "Spectators" + { + "ControlName" "CExLabel" + "fieldName" "Spectators" + "font" "ScoreboardVerySmall" + "labelText" "%spectators%" + "textAlignment" "west" + "xpos" "115" + "ypos" "169" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "428" + } + } + "SpectatorsInQueue" + { + "ControlName" "CExLabel" + "fieldName" "SpectatorsInQueue" + "font" "ScoreboardVerySmall" + "labelText" "%waitingtoplay%" + "textAlignment" "west" + "xpos" "115" + "ypos" "160" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ShadedBar" + { + "ControlName" "ImagePanel" + "fieldName" "ShadedBar" + "xpos" "30" + "ypos" "184" + "zpos" "2" + "wide" "580" + "tall" "70" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "372" + } + } + "ClassImage" + { + "ControlName" "ImagePanel" + "fieldName" "ClassImage" + "xpos" "22" + "xpos_lodef" "12" + "ypos" "172" + "zpos" "3" + "wide" "82" + "tall" "82" + "visible" "1" + "enabled" "1" + "image" "../hud/class_scoutred" + "scaleImage" "1" + + if_mvm + { + "visible" "1" + "ypos" "360" + } + } + "classmodelpanel" + { + "ControlName" "CTFPlayerModelPanel" + "fieldName" "classmodelpanel" + + "xpos" "-10" + "ypos" "164" + "zpos" "10" + "wide" "130" + "tall" "90" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + "render_texture" "0" + "fov" "18" + "allow_rot" "1" + + "disable_speak_event" "1" + + if_mvm + { + "visible" "0" + } + + "model" + { + "force_pos" "1" + + "angles_x" "0" + "angles_y" "172" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + "frame_origin_x" "0" + "frame_origin_y" "0" + "frame_origin_z" "0" + "spotlight" "1" + + "modelname" "" + } + + "customclassdata" + { + "undefined" + { + } + "Scout" + { + "fov" "25" + "angles_x" "-17" + "angles_y" "145" + "angles_z" "0" + "origin_x" "105" + "origin_y" "4" + "origin_z" "-60" + } + "Sniper" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "172" + "angles_z" "0" + "origin_x" "130" + "origin_y" "-3" + "origin_z" "-60" + } + "Soldier" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "170" + "angles_z" "0" + "origin_x" "145" + "origin_y" "-5" + "origin_z" "-60" + } + "Demoman" + { + "fov" "25" + "angles_x" "-13" + "angles_y" "200" + "angles_z" "0" + "origin_x" "138" + "origin_y" "-4" + "origin_z" "-60" + } + "Medic" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "178" + "angles_z" "0" + "origin_x" "150" + "origin_y" "-5" + "origin_z" "-60" + } + "Heavy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "200" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + } + "Pyro" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "172" + "angles_z" "0" + "origin_x" "175" + "origin_y" "-5" + "origin_z" "-60" + } + "Spy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "160" + "angles_z" "0" + "origin_x" "160" + "origin_y" "0" + "origin_z" "-60" + } + "Engineer" + { + "fov" "20" + "angles_x" "-10" + "angles_y" "168" + "angles_z" "0" + "origin_x" "140" + "origin_y" "-2" + "origin_z" "-60" + } + } + } + "PlayerNameBG" + { + "ControlName" "EditablePanel" + "fieldName" "PlayerNameBG" + "xpos" "105" + "ypos" "182" + "zpos" "-1" + "wide" "485" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "PlayerNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerNameLabel" + "font" "ScoreboardMedium" + "labelText" "%playername%" + "textAlignment" "west" + "xpos" "115" + "ypos" "187" + "zpos" "3" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "1" + "wide" "175" + "ypos" "375" + } + } + "ServerLabelNew" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabelNew" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "east" + "xpos" "415" + "ypos" "172" + "zpos" "3" + "wide" "165" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "MapName" + { + "ControlName" "CExLabel" + "fieldName" "mapname" + "font" "ScoreboardMedium" + "labelText" "%mapname%" + "textAlignment" "east" + "xpos" "415" + "ypos" "187" + "zpos" "3" + "wide" "165" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "236 227 203 255" + + if_mvm + { + "visible" "0" + } + } + "HorizontalLine" + { + "ControlName" "ImagePanel" + "fieldName" "HorizontalLine" + "xpos" "115" + "ypos" "209" + "zpos" "3" + "wide" "465" + "tall" "1" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "127 127 127 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "397" + } + } + "PlayerScoreLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerScoreLabel" + "font" "ScoreboardMedium" + "labelText" "%playerscore%" + "textAlignment" "east" + "xpos" "440" + "ypos" "189" + "zpos" "3" + "wide" "140" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + + if_mvm + { + "visible" "0" + } + } + + "LocalPlayerDuelStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerDuelStatsPanel" + "xpos" "0" + "ypos" "207" + "zpos" "3" + "wide" "600" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + + "DuelingLabel" + { + "ControlName" "CExLabel" + "fieldName" "DuelingLabel" + "font" "ScoreboardSmall" + "labelText" "#TF_ScoreBoard_Dueling" + "textAlignment" "center" + "xpos" "250" + "ypos" "2 " + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "DuelingIcon" + { + "ControlName" "ImagePanel" + "fieldName" "DuelingIcon" + "xpos" "284" + "ypos" "15" + "zpos" "2" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "../backpack/player/items/crafting/icon_dueling" + "scaleImage" "1" + } + + "LocalPlayerData" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerData" + "xpos" "75" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "157" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "159" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "east" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "east" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + + "OpponentData" + { + "ControlName" "EditablePanel" + "fieldName" "OpponentData" + "xpos" "325" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "7" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "9" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "west" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "west" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + } + + "LocalPlayerStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerStatsPanel" + "xpos" "0" + "ypos" "207" + "zpos" "3" + "wide" "600" + "tall" "448" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "1" + "ypos" "395" + } + + "KillsLabel" + { + "ControlName" "CExLabel" + "fieldName" "KillsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_KillsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "DeathsLabel" + { + "ControlName" "CExLabel" + "fieldName" "DeathsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DeathsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "AssistsLabel" + { + "ControlName" "CExLabel" + "fieldName" "AssistsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_AssistsLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "7" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DestructionLabel" + { + "ControlName" "CExLabel" + "fieldName" "DestructionLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DestructionLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "23" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Kills1" + { + "ControlName" "CExLabel" + "fieldName" "Kills1" + "font" "HudFontMediumBigBold" + "labelText" "%kills%" + "textAlignment" "east" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bGreen" + } + "Divider" + { + "ControlName" "Label" + "fieldName" "Divider" + "font" "HudFontMediumBigBold" + "labelText" "/" + "textAlignment" "center" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "180" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "TanLight" + } + "Deaths1" + { + "ControlName" "CExLabel" + "fieldName" "Deaths1" + "font" "HudFontMediumBigBold" + "labelText" "%deaths%" + "textAlignment" "west" + "xpos" "190" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bRed" + } + "GameType" + { + "ControlName" "CExLabel" + "fieldName" "gametype" + "font" "ScoreboardVerySmall" + "labelText" "%gametype%" + "textAlignment" "east" + "xpos" "435" + "ypos" "32" + "zpos" "3" + "wide" "145" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "fgcolor" "185 177 153 255" + } + "Assists" + { + "ControlName" "CExLabel" + "fieldName" "Assists" + "font" "ScoreboardVerySmall" + "labelText" "%assists%" + "textAlignment" "west" + "xpos" "285" + "ypos" "7" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Destruction" + { + "ControlName" "CExLabel" + "fieldName" "Destruction" + "font" "ScoreboardVerySmall" + "labelText" "%destruction%" + "textAlignment" "west" + "xpos" "285" + "ypos" "23" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "CapturesLabel" + { + "ControlName" "CExLabel" + "fieldName" "CapturesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_CapturesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DefensesLabel" + { + "ControlName" "CExLabel" + "fieldName" "DefensesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DefensesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DominationLabel" + { + "ControlName" "CExLabel" + "fieldName" "DominationLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DominationLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RevengeLabel" + { + "ControlName" "CExLabel" + "fieldName" "RevengeLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_RevengeLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Captures" + { + "ControlName" "CExLabel" + "fieldName" "Captures" + "font" "ScoreboardVerySmall" + "labelText" "%captures%" + "textAlignment" "west" + "xpos" "371" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Defenses" + { + "ControlName" "CExLabel" + "fieldName" "Defenses" + "font" "ScoreboardVerySmall" + "labelText" "%defenses%" + "textAlignment" "west" + "xpos" "371" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Domination" + { + "ControlName" "CExLabel" + "fieldName" "Domination" + "font" "ScoreboardVerySmall" + "labelText" "%dominations%" + "textAlignment" "west" + "xpos" "371" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Revenge" + { + "ControlName" "CExLabel" + "fieldName" "Revenge" + "font" "ScoreboardVerySmall" + "labelText" "%Revenge%" + "textAlignment" "west" + "xpos" "371" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HealingLabel" + { + "ControlName" "CExLabel" + "fieldName" "HealingLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HealingLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "InvulnLabel" + { + "ControlName" "CExLabel" + "fieldName" "InvulnLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_InvulnLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "TeleportsLabel" + { + "ControlName" "CExLabel" + "fieldName" "TeleportsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_TeleportsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HeadshotsLabel" + { + "ControlName" "CExLabel" + "fieldName" "HeadshotsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HeadshotsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Healing" + { + "ControlName" "CExLabel" + "fieldName" "Healing" + "font" "ScoreboardVerySmall" + "labelText" "%healing%" + "textAlignment" "west" + "xpos" "457" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Invuln" + { + "ControlName" "CExLabel" + "fieldName" "Invuln" + "font" "ScoreboardVerySmall" + "labelText" "%invulns%" + "textAlignment" "west" + "xpos" "457" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Teleports" + { + "ControlName" "CExLabel" + "fieldName" "Teleports" + "font" "ScoreboardVerySmall" + "labelText" "%teleports%" + "textAlignment" "west" + "xpos" "457" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Headshots" + { + "ControlName" "CExLabel" + "fieldName" "Headshots" + "font" "ScoreboardVerySmall" + "labelText" "%headshots%" + "textAlignment" "west" + "xpos" "457" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BackstabsLabel" + { + "ControlName" "CExLabel" + "fieldName" "BackstabsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BackstabsLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Backstabs" + { + "ControlName" "CExLabel" + "fieldName" "Backstabs" + "font" "ScoreboardVerySmall" + "labelText" "%backstabs%" + "textAlignment" "west" + "xpos" "543" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BonusLabel" + { + "ControlName" "CExLabel" + "fieldName" "BonusLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BonusLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "10" + "zpos" "3" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Bonus" + { + "ControlName" "CExLabel" + "fieldName" "Bonus" + "font" "ScoreboardVerySmall" + "labelText" "%bonus%" + "textAlignment" "west" + "xpos" "543" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "SupportLabel" + { + "ControlName" "CExLabel" + "fieldName" "SupportLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Support" + "textAlignment" "east" + "xpos" "443" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Support" + { + "ControlName" "CExLabel" + "fieldName" "Support" + "font" "ScoreboardVerySmall" + "labelText" "%support%" + "textAlignment" "west" + "xpos" "543" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DamageLabel" + { + "ControlName" "CExLabel" + "fieldName" "DamageLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Damage" + "textAlignment" "east" + "xpos" "443" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Damage" + { + "ControlName" "CExLabel" + "fieldName" "Damage" + "font" "ScoreboardVerySmall" + "labelText" "%damage%" + "textAlignment" "west" + "xpos" "543" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + + "ButtonLegendBG" [$X360] + { + "ControlName" "ImagePanel" + "fieldName" "ButtonLegendBG" + "xpos" "10" + "ypos" "373" + "zpos" "0" + "wide" "539" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + } + + "ButtonLegend" [$X360] + { + "ControlName" "EditablePanel" + "fieldName" "ButtonLegend" + "xpos" "10" + "ypos" "373" + "zpos" "1" + "wide" "539" + "tall" "150" + "visible" "1" + + "SelectHintIcon" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintIcon" + "font" "GameUIButtons" + "xpos" "10" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "C" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "SelectHintLabel" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintLabel" + "font" "ScoreboardMedium" + "xpos" "25" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_Select" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardIcon" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardIcon" + "font" "GameUIButtons" + "xpos" "150" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "A" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardLabel" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardLabel" + "font" "ScoreboardMedium" + "xpos" "170" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_ViewGamercard" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationIcon" + { + "ControlName" "CExLabel" + "fieldName" "ReputationIcon" + "font" "GameUIButtons" + "xpos" "350" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "X" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationLabel" + { + "ControlName" "CExLabel" + "fieldName" "ReputationLabel" + "font" "ScoreboardMedium" + "xpos" "403" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_PlayerReview" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "MvMScoreboard" + { + "ControlName" "CTFHudMannVsMachineScoreboard" + "fieldName" "MvMScoreboard" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + + "verbose" "1" + + if_mvm + { + "visible" "1" + } + } +} diff --git a/biscottihud/resource/ui/scoreboard_18.res b/biscottihud/resource/ui/scoreboard_18.res new file mode 100644 index 0000000..da6afb7 --- /dev/null +++ b/biscottihud/resource/ui/scoreboard_18.res @@ -0,0 +1,1922 @@ +"Resource/UI/Scoreboard.res" +{ + "scores" + { + "ControlName" "CTFClientScoreBoardDialog" + "fieldName" "scoreinfo" + "xpos" "cs-0.5" + "ypos" "31" + "wide" "640" + "tall" "311" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "medal_width" "20" + "avatar_width" "65" + "spacer" "5" + "name_width" "118" + "nemesis_width" "25" + "class_width" "25" + "score_width" "30" + "ping_width" "25" + "killstreak_width" "15" + "killstreak_image_width" "15" + + if_mvm + { + "tall" "448" + } + } + "BlueScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BlueScoreBG" + "xpos" "-2" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "BlueTeamImage" + "xpos" "62" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_blue" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "BlueLeaderAvatar" + "xpos" "16" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "BlueLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "BlueLeaderAvatarBG" + "xpos" "14" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "RedScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "RedScoreBG" + "xpos" "326" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "RedTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "RedTeamImage" + "fieldName" "BlueTeamImage" + "xpos" "548" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_red" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "RedLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "RedLeaderAvatar" + "xpos" "580" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "RedLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedLeaderAvatarBG" + "xpos" "578" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "MainBG" + { + "ControlName" "ImagePanel" + "fieldName" "MainBG" + "xpos" "0" + "ypos" "9" + "zpos" "-1" + "wide" "640" + "tall" "302" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "30 30 30 125" + + if_mvm + { + "ypos" "0" + "tall" "448" + } + } + "BlueTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%blueteamname%" + "textAlignment" "west" + "xpos" "10" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "190" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "191" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%blueteamplayercount%" + "textAlignment" "west" + "xpos" "135" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%redteamname%" + "textAlignment" "east" + "xpos" "490" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "330" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "331" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%redteamplayercount%" + "textAlignment" "east" + "xpos" "375" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabel" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "west" + "xpos" "11" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "0" + } + } + "TimerBG" + { + "ControlName" "EditablePanel" + "fieldName" "TimerBG" + "xpos" "280" + "ypos" "-3" + "zpos" "-1" + "wide" "80" + "tall" "43" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftInsetBG" + { + "ControlName" "EditablePanel" + "fieldName" "ServerTimeLeftInsetBG" + "xpos" "286" + "ypos" "12" + "zpos" "1" + "wide" "68" + "tall" "23" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFFatLineBorderOpaque" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftLabel" + "font" "ScoreboardVerySmall" + "labelText" "#Scoreboard_TimeLeftLabel" + "textAlignment" "center" + "xpos" "284" + "ypos" "2" + "zpos" "2" + "wide" "72" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftValue" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftValue" + "font" "ScoreboardMediumSmall" + "labelText" "%servertime%" + "textAlignment" "center" + "xpos" "284" + "ypos" "14" + "zpos" "2" + "wide" "72" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "fgcolor" "BrightYellow" + "centerwrap" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeft" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeft" + "font" "ScoreboardVerySmall" + "labelText" "%servertimeleft%" + "textAlignment" "east" + "xpos" "305" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "0" + "visible" "1" + } + } + "BluePlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "BluePlayerList" + "xpos" "5" + "ypos" "54" + "zpos" "20" + "wide" "310" + "tall" "167" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "blue" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "RedPlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "RedPlayerList" + "xpos" "325" + "ypos" "54" + "zpos" "20" + "wide" "310" + "tall" "167" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "red" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "VerticalLine" + { + "ControlName" "ImagePanel" + "fieldName" "VerticalLine" + "xpos" "319" + "ypos" "52" + "zpos" "2" + "wide" "2" + "tall" "173" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "0" + } + } + "Spectators" + { + "ControlName" "CExLabel" + "fieldName" "Spectators" + "font" "ScoreboardVerySmall" + "labelText" "%spectators%" + "textAlignment" "west" + "xpos" "115" + "ypos" "220" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "428" + } + } + "SpectatorsInQueue" + { + "ControlName" "CExLabel" + "fieldName" "SpectatorsInQueue" + "font" "ScoreboardVerySmall" + "labelText" "%waitingtoplay%" + "textAlignment" "west" + "xpos" "115" + "ypos" "211" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ShadedBar" + { + "ControlName" "ImagePanel" + "fieldName" "ShadedBar" + "xpos" "30" + "ypos" "235" + "zpos" "2" + "wide" "580" + "tall" "70" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "372" + } + } + "ClassImage" + { + "ControlName" "ImagePanel" + "fieldName" "ClassImage" + "xpos" "22" + "xpos_lodef" "12" + "ypos" "223" + "zpos" "3" + "wide" "82" + "tall" "82" + "visible" "1" + "enabled" "1" + "image" "../hud/class_scoutred" + "scaleImage" "1" + + if_mvm + { + "visible" "1" + "ypos" "360" + } + } + "classmodelpanel" + { + "ControlName" "CTFPlayerModelPanel" + "fieldName" "classmodelpanel" + + "xpos" "-10" + "ypos" "215" + "zpos" "10" + "wide" "130" + "tall" "90" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + "render_texture" "0" + "fov" "18" + "allow_rot" "1" + + "disable_speak_event" "1" + + if_mvm + { + "visible" "0" + } + + "model" + { + "force_pos" "1" + + "angles_x" "0" + "angles_y" "172" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + "frame_origin_x" "0" + "frame_origin_y" "0" + "frame_origin_z" "0" + "spotlight" "1" + + "modelname" "" + } + + "customclassdata" + { + "undefined" + { + } + "Scout" + { + "fov" "25" + "angles_x" "-17" + "angles_y" "145" + "angles_z" "0" + "origin_x" "105" + "origin_y" "4" + "origin_z" "-60" + } + "Sniper" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "172" + "angles_z" "0" + "origin_x" "130" + "origin_y" "-3" + "origin_z" "-60" + } + "Soldier" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "170" + "angles_z" "0" + "origin_x" "145" + "origin_y" "-5" + "origin_z" "-60" + } + "Demoman" + { + "fov" "25" + "angles_x" "-13" + "angles_y" "200" + "angles_z" "0" + "origin_x" "138" + "origin_y" "-4" + "origin_z" "-60" + } + "Medic" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "178" + "angles_z" "0" + "origin_x" "150" + "origin_y" "-5" + "origin_z" "-60" + } + "Heavy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "200" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + } + "Pyro" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "172" + "angles_z" "0" + "origin_x" "175" + "origin_y" "-5" + "origin_z" "-60" + } + "Spy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "160" + "angles_z" "0" + "origin_x" "160" + "origin_y" "0" + "origin_z" "-60" + } + "Engineer" + { + "fov" "20" + "angles_x" "-10" + "angles_y" "168" + "angles_z" "0" + "origin_x" "140" + "origin_y" "-2" + "origin_z" "-60" + } + } + } + "PlayerNameBG" + { + "ControlName" "EditablePanel" + "fieldName" "PlayerNameBG" + "xpos" "105" + "ypos" "233" + "zpos" "-1" + "wide" "485" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "PlayerNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerNameLabel" + "font" "ScoreboardMedium" + "labelText" "%playername%" + "textAlignment" "west" + "xpos" "115" + "ypos" "238" + "zpos" "3" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "1" + "wide" "175" + "ypos" "375" + } + } + "ServerLabelNew" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabelNew" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "east" + "xpos" "415" + "ypos" "223" + "zpos" "3" + "wide" "165" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "MapName" + { + "ControlName" "CExLabel" + "fieldName" "mapname" + "font" "ScoreboardMedium" + "labelText" "%mapname%" + "textAlignment" "east" + "xpos" "415" + "ypos" "238" + "zpos" "3" + "wide" "165" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "236 227 203 255" + + if_mvm + { + "visible" "0" + } + } + "HorizontalLine" + { + "ControlName" "ImagePanel" + "fieldName" "HorizontalLine" + "xpos" "115" + "ypos" "260" + "zpos" "3" + "wide" "465" + "tall" "1" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "127 127 127 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "397" + } + } + "PlayerScoreLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerScoreLabel" + "font" "ScoreboardMedium" + "labelText" "%playerscore%" + "textAlignment" "east" + "xpos" "440" + "ypos" "240" + "zpos" "3" + "wide" "140" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + + if_mvm + { + "visible" "0" + } + } + + "LocalPlayerDuelStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerDuelStatsPanel" + "xpos" "0" + "ypos" "258" + "zpos" "3" + "wide" "600" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + + "DuelingLabel" + { + "ControlName" "CExLabel" + "fieldName" "DuelingLabel" + "font" "ScoreboardSmall" + "labelText" "#TF_ScoreBoard_Dueling" + "textAlignment" "center" + "xpos" "250" + "ypos" "2 " + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "DuelingIcon" + { + "ControlName" "ImagePanel" + "fieldName" "DuelingIcon" + "xpos" "284" + "ypos" "15" + "zpos" "2" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "../backpack/player/items/crafting/icon_dueling" + "scaleImage" "1" + } + + "LocalPlayerData" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerData" + "xpos" "75" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "157" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "159" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "east" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "east" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + + "OpponentData" + { + "ControlName" "EditablePanel" + "fieldName" "OpponentData" + "xpos" "325" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "7" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "9" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "west" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "west" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + } + + "LocalPlayerStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerStatsPanel" + "xpos" "0" + "ypos" "258" + "zpos" "3" + "wide" "600" + "tall" "448" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "1" + "ypos" "395" + } + + "KillsLabel" + { + "ControlName" "CExLabel" + "fieldName" "KillsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_KillsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "DeathsLabel" + { + "ControlName" "CExLabel" + "fieldName" "DeathsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DeathsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "AssistsLabel" + { + "ControlName" "CExLabel" + "fieldName" "AssistsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_AssistsLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "7" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DestructionLabel" + { + "ControlName" "CExLabel" + "fieldName" "DestructionLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DestructionLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "23" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Kills1" + { + "ControlName" "CExLabel" + "fieldName" "Kills1" + "font" "HudFontMediumBigBold" + "labelText" "%kills%" + "textAlignment" "east" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bGreen" + } + "Divider" + { + "ControlName" "Label" + "fieldName" "Divider" + "font" "HudFontMediumBigBold" + "labelText" "/" + "textAlignment" "center" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "180" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "TanLight" + } + "Deaths1" + { + "ControlName" "CExLabel" + "fieldName" "Deaths1" + "font" "HudFontMediumBigBold" + "labelText" "%deaths%" + "textAlignment" "west" + "xpos" "190" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bRed" + } + "GameType" + { + "ControlName" "CExLabel" + "fieldName" "gametype" + "font" "ScoreboardVerySmall" + "labelText" "%gametype%" + "textAlignment" "east" + "xpos" "435" + "ypos" "32" + "zpos" "3" + "wide" "145" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "fgcolor" "185 177 153 255" + } + "Assists" + { + "ControlName" "CExLabel" + "fieldName" "Assists" + "font" "ScoreboardVerySmall" + "labelText" "%assists%" + "textAlignment" "west" + "xpos" "285" + "ypos" "7" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Destruction" + { + "ControlName" "CExLabel" + "fieldName" "Destruction" + "font" "ScoreboardVerySmall" + "labelText" "%destruction%" + "textAlignment" "west" + "xpos" "285" + "ypos" "23" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "CapturesLabel" + { + "ControlName" "CExLabel" + "fieldName" "CapturesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_CapturesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DefensesLabel" + { + "ControlName" "CExLabel" + "fieldName" "DefensesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DefensesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DominationLabel" + { + "ControlName" "CExLabel" + "fieldName" "DominationLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DominationLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RevengeLabel" + { + "ControlName" "CExLabel" + "fieldName" "RevengeLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_RevengeLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Captures" + { + "ControlName" "CExLabel" + "fieldName" "Captures" + "font" "ScoreboardVerySmall" + "labelText" "%captures%" + "textAlignment" "west" + "xpos" "371" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Defenses" + { + "ControlName" "CExLabel" + "fieldName" "Defenses" + "font" "ScoreboardVerySmall" + "labelText" "%defenses%" + "textAlignment" "west" + "xpos" "371" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Domination" + { + "ControlName" "CExLabel" + "fieldName" "Domination" + "font" "ScoreboardVerySmall" + "labelText" "%dominations%" + "textAlignment" "west" + "xpos" "371" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Revenge" + { + "ControlName" "CExLabel" + "fieldName" "Revenge" + "font" "ScoreboardVerySmall" + "labelText" "%Revenge%" + "textAlignment" "west" + "xpos" "371" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HealingLabel" + { + "ControlName" "CExLabel" + "fieldName" "HealingLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HealingLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "InvulnLabel" + { + "ControlName" "CExLabel" + "fieldName" "InvulnLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_InvulnLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "TeleportsLabel" + { + "ControlName" "CExLabel" + "fieldName" "TeleportsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_TeleportsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HeadshotsLabel" + { + "ControlName" "CExLabel" + "fieldName" "HeadshotsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HeadshotsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Healing" + { + "ControlName" "CExLabel" + "fieldName" "Healing" + "font" "ScoreboardVerySmall" + "labelText" "%healing%" + "textAlignment" "west" + "xpos" "457" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Invuln" + { + "ControlName" "CExLabel" + "fieldName" "Invuln" + "font" "ScoreboardVerySmall" + "labelText" "%invulns%" + "textAlignment" "west" + "xpos" "457" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Teleports" + { + "ControlName" "CExLabel" + "fieldName" "Teleports" + "font" "ScoreboardVerySmall" + "labelText" "%teleports%" + "textAlignment" "west" + "xpos" "457" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Headshots" + { + "ControlName" "CExLabel" + "fieldName" "Headshots" + "font" "ScoreboardVerySmall" + "labelText" "%headshots%" + "textAlignment" "west" + "xpos" "457" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BackstabsLabel" + { + "ControlName" "CExLabel" + "fieldName" "BackstabsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BackstabsLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Backstabs" + { + "ControlName" "CExLabel" + "fieldName" "Backstabs" + "font" "ScoreboardVerySmall" + "labelText" "%backstabs%" + "textAlignment" "west" + "xpos" "543" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BonusLabel" + { + "ControlName" "CExLabel" + "fieldName" "BonusLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BonusLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "10" + "zpos" "3" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Bonus" + { + "ControlName" "CExLabel" + "fieldName" "Bonus" + "font" "ScoreboardVerySmall" + "labelText" "%bonus%" + "textAlignment" "west" + "xpos" "543" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "SupportLabel" + { + "ControlName" "CExLabel" + "fieldName" "SupportLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Support" + "textAlignment" "east" + "xpos" "443" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Support" + { + "ControlName" "CExLabel" + "fieldName" "Support" + "font" "ScoreboardVerySmall" + "labelText" "%support%" + "textAlignment" "west" + "xpos" "543" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DamageLabel" + { + "ControlName" "CExLabel" + "fieldName" "DamageLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Damage" + "textAlignment" "east" + "xpos" "443" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Damage" + { + "ControlName" "CExLabel" + "fieldName" "Damage" + "font" "ScoreboardVerySmall" + "labelText" "%damage%" + "textAlignment" "west" + "xpos" "543" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + + "ButtonLegendBG" [$X360] + { + "ControlName" "ImagePanel" + "fieldName" "ButtonLegendBG" + "xpos" "10" + "ypos" "373" + "zpos" "0" + "wide" "539" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + } + + "ButtonLegend" [$X360] + { + "ControlName" "EditablePanel" + "fieldName" "ButtonLegend" + "xpos" "10" + "ypos" "373" + "zpos" "1" + "wide" "539" + "tall" "150" + "visible" "1" + + "SelectHintIcon" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintIcon" + "font" "GameUIButtons" + "xpos" "10" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "C" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "SelectHintLabel" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintLabel" + "font" "ScoreboardMedium" + "xpos" "25" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_Select" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardIcon" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardIcon" + "font" "GameUIButtons" + "xpos" "150" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "A" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardLabel" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardLabel" + "font" "ScoreboardMedium" + "xpos" "170" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_ViewGamercard" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationIcon" + { + "ControlName" "CExLabel" + "fieldName" "ReputationIcon" + "font" "GameUIButtons" + "xpos" "350" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "X" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationLabel" + { + "ControlName" "CExLabel" + "fieldName" "ReputationLabel" + "font" "ScoreboardMedium" + "xpos" "403" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_PlayerReview" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "MvMScoreboard" + { + "ControlName" "CTFHudMannVsMachineScoreboard" + "fieldName" "MvMScoreboard" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + + "verbose" "1" + + if_mvm + { + "visible" "1" + } + } +} diff --git a/biscottihud/resource/ui/scoreboard_24.res b/biscottihud/resource/ui/scoreboard_24.res new file mode 100644 index 0000000..910418c --- /dev/null +++ b/biscottihud/resource/ui/scoreboard_24.res @@ -0,0 +1,1922 @@ +"Resource/UI/Scoreboard.res" +{ + "scores" + { + "ControlName" "CTFClientScoreBoardDialog" + "fieldName" "scoreinfo" + "xpos" "cs-0.5" + "ypos" "31" + "wide" "640" + "tall" "362" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "medal_width" "20" + "avatar_width" "65" + "spacer" "5" + "name_width" "118" + "nemesis_width" "25" + "class_width" "25" + "score_width" "30" + "ping_width" "25" + "killstreak_width" "15" + "killstreak_image_width" "15" + + if_mvm + { + "tall" "448" + } + } + "BlueScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BlueScoreBG" + "xpos" "-2" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "BlueTeamImage" + "xpos" "62" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_blue" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "BlueLeaderAvatar" + "xpos" "16" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "BlueLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "BlueLeaderAvatarBG" + "xpos" "14" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "RedScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "RedScoreBG" + "xpos" "326" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "RedTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "RedTeamImage" + "fieldName" "BlueTeamImage" + "xpos" "548" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_red" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "RedLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "RedLeaderAvatar" + "xpos" "580" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "RedLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedLeaderAvatarBG" + "xpos" "578" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "MainBG" + { + "ControlName" "ImagePanel" + "fieldName" "MainBG" + "xpos" "0" + "ypos" "9" + "zpos" "-1" + "wide" "640" + "tall" "353" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "30 30 30 125" + + if_mvm + { + "ypos" "0" + "tall" "448" + } + } + "BlueTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%blueteamname%" + "textAlignment" "west" + "xpos" "10" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "190" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "191" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%blueteamplayercount%" + "textAlignment" "west" + "xpos" "135" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%redteamname%" + "textAlignment" "east" + "xpos" "490" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "330" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "331" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%redteamplayercount%" + "textAlignment" "east" + "xpos" "375" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabel" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "west" + "xpos" "11" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "0" + } + } + "TimerBG" + { + "ControlName" "EditablePanel" + "fieldName" "TimerBG" + "xpos" "280" + "ypos" "-3" + "zpos" "-1" + "wide" "80" + "tall" "43" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftInsetBG" + { + "ControlName" "EditablePanel" + "fieldName" "ServerTimeLeftInsetBG" + "xpos" "286" + "ypos" "12" + "zpos" "1" + "wide" "68" + "tall" "23" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFFatLineBorderOpaque" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftLabel" + "font" "ScoreboardVerySmall" + "labelText" "#Scoreboard_TimeLeftLabel" + "textAlignment" "center" + "xpos" "284" + "ypos" "2" + "zpos" "2" + "wide" "72" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftValue" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftValue" + "font" "ScoreboardMediumSmall" + "labelText" "%servertime%" + "textAlignment" "center" + "xpos" "284" + "ypos" "14" + "zpos" "2" + "wide" "72" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "fgcolor" "BrightYellow" + "centerwrap" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeft" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeft" + "font" "ScoreboardVerySmall" + "labelText" "%servertimeleft%" + "textAlignment" "east" + "xpos" "305" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "0" + "visible" "1" + } + } + "BluePlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "BluePlayerList" + "xpos" "5" + "ypos" "54" + "zpos" "20" + "wide" "310" + "tall" "218" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "blue" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "RedPlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "RedPlayerList" + "xpos" "325" + "ypos" "54" + "zpos" "20" + "wide" "310" + "tall" "218" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "red" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "VerticalLine" + { + "ControlName" "ImagePanel" + "fieldName" "VerticalLine" + "xpos" "319" + "ypos" "52" + "zpos" "2" + "wide" "2" + "tall" "224" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "0" + } + } + "Spectators" + { + "ControlName" "CExLabel" + "fieldName" "Spectators" + "font" "ScoreboardVerySmall" + "labelText" "%spectators%" + "textAlignment" "west" + "xpos" "115" + "ypos" "271" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "428" + } + } + "SpectatorsInQueue" + { + "ControlName" "CExLabel" + "fieldName" "SpectatorsInQueue" + "font" "ScoreboardVerySmall" + "labelText" "%waitingtoplay%" + "textAlignment" "west" + "xpos" "115" + "ypos" "262" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ShadedBar" + { + "ControlName" "ImagePanel" + "fieldName" "ShadedBar" + "xpos" "30" + "ypos" "286" + "zpos" "2" + "wide" "580" + "tall" "70" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "372" + } + } + "ClassImage" + { + "ControlName" "ImagePanel" + "fieldName" "ClassImage" + "xpos" "22" + "xpos_lodef" "12" + "ypos" "274" + "zpos" "3" + "wide" "82" + "tall" "82" + "visible" "1" + "enabled" "1" + "image" "../hud/class_scoutred" + "scaleImage" "1" + + if_mvm + { + "visible" "1" + "ypos" "360" + } + } + "classmodelpanel" + { + "ControlName" "CTFPlayerModelPanel" + "fieldName" "classmodelpanel" + + "xpos" "-10" + "ypos" "266" + "zpos" "10" + "wide" "130" + "tall" "90" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + "render_texture" "0" + "fov" "18" + "allow_rot" "1" + + "disable_speak_event" "1" + + if_mvm + { + "visible" "0" + } + + "model" + { + "force_pos" "1" + + "angles_x" "0" + "angles_y" "172" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + "frame_origin_x" "0" + "frame_origin_y" "0" + "frame_origin_z" "0" + "spotlight" "1" + + "modelname" "" + } + + "customclassdata" + { + "undefined" + { + } + "Scout" + { + "fov" "25" + "angles_x" "-17" + "angles_y" "145" + "angles_z" "0" + "origin_x" "105" + "origin_y" "4" + "origin_z" "-60" + } + "Sniper" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "172" + "angles_z" "0" + "origin_x" "130" + "origin_y" "-3" + "origin_z" "-60" + } + "Soldier" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "170" + "angles_z" "0" + "origin_x" "145" + "origin_y" "-5" + "origin_z" "-60" + } + "Demoman" + { + "fov" "25" + "angles_x" "-13" + "angles_y" "200" + "angles_z" "0" + "origin_x" "138" + "origin_y" "-4" + "origin_z" "-60" + } + "Medic" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "178" + "angles_z" "0" + "origin_x" "150" + "origin_y" "-5" + "origin_z" "-60" + } + "Heavy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "200" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + } + "Pyro" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "172" + "angles_z" "0" + "origin_x" "175" + "origin_y" "-5" + "origin_z" "-60" + } + "Spy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "160" + "angles_z" "0" + "origin_x" "160" + "origin_y" "0" + "origin_z" "-60" + } + "Engineer" + { + "fov" "20" + "angles_x" "-10" + "angles_y" "168" + "angles_z" "0" + "origin_x" "140" + "origin_y" "-2" + "origin_z" "-60" + } + } + } + "PlayerNameBG" + { + "ControlName" "EditablePanel" + "fieldName" "PlayerNameBG" + "xpos" "105" + "ypos" "284" + "zpos" "-1" + "wide" "485" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "PlayerNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerNameLabel" + "font" "ScoreboardMedium" + "labelText" "%playername%" + "textAlignment" "west" + "xpos" "115" + "ypos" "289" + "zpos" "3" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "1" + "wide" "175" + "ypos" "375" + } + } + "ServerLabelNew" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabelNew" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "east" + "xpos" "415" + "ypos" "274" + "zpos" "3" + "wide" "165" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "MapName" + { + "ControlName" "CExLabel" + "fieldName" "mapname" + "font" "ScoreboardMedium" + "labelText" "%mapname%" + "textAlignment" "east" + "xpos" "415" + "ypos" "289" + "zpos" "3" + "wide" "165" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "236 227 203 255" + + if_mvm + { + "visible" "0" + } + } + "HorizontalLine" + { + "ControlName" "ImagePanel" + "fieldName" "HorizontalLine" + "xpos" "115" + "ypos" "311" + "zpos" "3" + "wide" "465" + "tall" "1" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "127 127 127 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "397" + } + } + "PlayerScoreLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerScoreLabel" + "font" "ScoreboardMedium" + "labelText" "%playerscore%" + "textAlignment" "east" + "xpos" "440" + "ypos" "291" + "zpos" "3" + "wide" "140" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + + if_mvm + { + "visible" "0" + } + } + + "LocalPlayerDuelStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerDuelStatsPanel" + "xpos" "0" + "ypos" "309" + "zpos" "3" + "wide" "600" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + + "DuelingLabel" + { + "ControlName" "CExLabel" + "fieldName" "DuelingLabel" + "font" "ScoreboardSmall" + "labelText" "#TF_ScoreBoard_Dueling" + "textAlignment" "center" + "xpos" "250" + "ypos" "2 " + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "DuelingIcon" + { + "ControlName" "ImagePanel" + "fieldName" "DuelingIcon" + "xpos" "284" + "ypos" "15" + "zpos" "2" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "../backpack/player/items/crafting/icon_dueling" + "scaleImage" "1" + } + + "LocalPlayerData" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerData" + "xpos" "75" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "157" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "159" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "east" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "east" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + + "OpponentData" + { + "ControlName" "EditablePanel" + "fieldName" "OpponentData" + "xpos" "325" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "7" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "9" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "west" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "west" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + } + + "LocalPlayerStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerStatsPanel" + "xpos" "0" + "ypos" "309" + "zpos" "3" + "wide" "600" + "tall" "448" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "1" + "ypos" "395" + } + + "KillsLabel" + { + "ControlName" "CExLabel" + "fieldName" "KillsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_KillsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "DeathsLabel" + { + "ControlName" "CExLabel" + "fieldName" "DeathsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DeathsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "AssistsLabel" + { + "ControlName" "CExLabel" + "fieldName" "AssistsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_AssistsLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "7" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DestructionLabel" + { + "ControlName" "CExLabel" + "fieldName" "DestructionLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DestructionLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "23" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Kills1" + { + "ControlName" "CExLabel" + "fieldName" "Kills1" + "font" "HudFontMediumBigBold" + "labelText" "%kills%" + "textAlignment" "east" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bGreen" + } + "Divider" + { + "ControlName" "Label" + "fieldName" "Divider" + "font" "HudFontMediumBigBold" + "labelText" "/" + "textAlignment" "center" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "180" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "TanLight" + } + "Deaths1" + { + "ControlName" "CExLabel" + "fieldName" "Deaths1" + "font" "HudFontMediumBigBold" + "labelText" "%deaths%" + "textAlignment" "west" + "xpos" "190" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bRed" + } + "GameType" + { + "ControlName" "CExLabel" + "fieldName" "gametype" + "font" "ScoreboardVerySmall" + "labelText" "%gametype%" + "textAlignment" "east" + "xpos" "435" + "ypos" "32" + "zpos" "3" + "wide" "145" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "fgcolor" "185 177 153 255" + } + "Assists" + { + "ControlName" "CExLabel" + "fieldName" "Assists" + "font" "ScoreboardVerySmall" + "labelText" "%assists%" + "textAlignment" "west" + "xpos" "285" + "ypos" "7" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Destruction" + { + "ControlName" "CExLabel" + "fieldName" "Destruction" + "font" "ScoreboardVerySmall" + "labelText" "%destruction%" + "textAlignment" "west" + "xpos" "285" + "ypos" "23" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "CapturesLabel" + { + "ControlName" "CExLabel" + "fieldName" "CapturesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_CapturesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DefensesLabel" + { + "ControlName" "CExLabel" + "fieldName" "DefensesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DefensesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DominationLabel" + { + "ControlName" "CExLabel" + "fieldName" "DominationLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DominationLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RevengeLabel" + { + "ControlName" "CExLabel" + "fieldName" "RevengeLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_RevengeLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Captures" + { + "ControlName" "CExLabel" + "fieldName" "Captures" + "font" "ScoreboardVerySmall" + "labelText" "%captures%" + "textAlignment" "west" + "xpos" "371" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Defenses" + { + "ControlName" "CExLabel" + "fieldName" "Defenses" + "font" "ScoreboardVerySmall" + "labelText" "%defenses%" + "textAlignment" "west" + "xpos" "371" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Domination" + { + "ControlName" "CExLabel" + "fieldName" "Domination" + "font" "ScoreboardVerySmall" + "labelText" "%dominations%" + "textAlignment" "west" + "xpos" "371" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Revenge" + { + "ControlName" "CExLabel" + "fieldName" "Revenge" + "font" "ScoreboardVerySmall" + "labelText" "%Revenge%" + "textAlignment" "west" + "xpos" "371" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HealingLabel" + { + "ControlName" "CExLabel" + "fieldName" "HealingLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HealingLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "InvulnLabel" + { + "ControlName" "CExLabel" + "fieldName" "InvulnLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_InvulnLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "TeleportsLabel" + { + "ControlName" "CExLabel" + "fieldName" "TeleportsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_TeleportsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HeadshotsLabel" + { + "ControlName" "CExLabel" + "fieldName" "HeadshotsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HeadshotsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Healing" + { + "ControlName" "CExLabel" + "fieldName" "Healing" + "font" "ScoreboardVerySmall" + "labelText" "%healing%" + "textAlignment" "west" + "xpos" "457" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Invuln" + { + "ControlName" "CExLabel" + "fieldName" "Invuln" + "font" "ScoreboardVerySmall" + "labelText" "%invulns%" + "textAlignment" "west" + "xpos" "457" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Teleports" + { + "ControlName" "CExLabel" + "fieldName" "Teleports" + "font" "ScoreboardVerySmall" + "labelText" "%teleports%" + "textAlignment" "west" + "xpos" "457" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Headshots" + { + "ControlName" "CExLabel" + "fieldName" "Headshots" + "font" "ScoreboardVerySmall" + "labelText" "%headshots%" + "textAlignment" "west" + "xpos" "457" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BackstabsLabel" + { + "ControlName" "CExLabel" + "fieldName" "BackstabsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BackstabsLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Backstabs" + { + "ControlName" "CExLabel" + "fieldName" "Backstabs" + "font" "ScoreboardVerySmall" + "labelText" "%backstabs%" + "textAlignment" "west" + "xpos" "543" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BonusLabel" + { + "ControlName" "CExLabel" + "fieldName" "BonusLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BonusLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "10" + "zpos" "3" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Bonus" + { + "ControlName" "CExLabel" + "fieldName" "Bonus" + "font" "ScoreboardVerySmall" + "labelText" "%bonus%" + "textAlignment" "west" + "xpos" "543" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "SupportLabel" + { + "ControlName" "CExLabel" + "fieldName" "SupportLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Support" + "textAlignment" "east" + "xpos" "443" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Support" + { + "ControlName" "CExLabel" + "fieldName" "Support" + "font" "ScoreboardVerySmall" + "labelText" "%support%" + "textAlignment" "west" + "xpos" "543" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DamageLabel" + { + "ControlName" "CExLabel" + "fieldName" "DamageLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Damage" + "textAlignment" "east" + "xpos" "443" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Damage" + { + "ControlName" "CExLabel" + "fieldName" "Damage" + "font" "ScoreboardVerySmall" + "labelText" "%damage%" + "textAlignment" "west" + "xpos" "543" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + + "ButtonLegendBG" [$X360] + { + "ControlName" "ImagePanel" + "fieldName" "ButtonLegendBG" + "xpos" "10" + "ypos" "373" + "zpos" "0" + "wide" "539" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + } + + "ButtonLegend" [$X360] + { + "ControlName" "EditablePanel" + "fieldName" "ButtonLegend" + "xpos" "10" + "ypos" "373" + "zpos" "1" + "wide" "539" + "tall" "150" + "visible" "1" + + "SelectHintIcon" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintIcon" + "font" "GameUIButtons" + "xpos" "10" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "C" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "SelectHintLabel" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintLabel" + "font" "ScoreboardMedium" + "xpos" "25" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_Select" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardIcon" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardIcon" + "font" "GameUIButtons" + "xpos" "150" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "A" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardLabel" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardLabel" + "font" "ScoreboardMedium" + "xpos" "170" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_ViewGamercard" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationIcon" + { + "ControlName" "CExLabel" + "fieldName" "ReputationIcon" + "font" "GameUIButtons" + "xpos" "350" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "X" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationLabel" + { + "ControlName" "CExLabel" + "fieldName" "ReputationLabel" + "font" "ScoreboardMedium" + "xpos" "403" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_PlayerReview" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "MvMScoreboard" + { + "ControlName" "CTFHudMannVsMachineScoreboard" + "fieldName" "MvMScoreboard" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + + "verbose" "1" + + if_mvm + { + "visible" "1" + } + } +} diff --git a/biscottihud/resource/ui/scoreboard_32.res b/biscottihud/resource/ui/scoreboard_32.res new file mode 100644 index 0000000..770c520 --- /dev/null +++ b/biscottihud/resource/ui/scoreboard_32.res @@ -0,0 +1,1922 @@ +"Resource/UI/Scoreboard.res" +{ + "scores" + { + "ControlName" "CTFClientScoreBoardDialog" + "fieldName" "scoreinfo" + "xpos" "cs-0.5" + "ypos" "31" + "wide" "640" + "tall" "430" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "medal_width" "20" + "avatar_width" "65" + "spacer" "5" + "name_width" "118" + "nemesis_width" "25" + "class_width" "25" + "score_width" "30" + "ping_width" "25" + "killstreak_width" "15" + "killstreak_image_width" "15" + + if_mvm + { + "tall" "448" + } + } + "BlueScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BlueScoreBG" + "xpos" "-2" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "BlueTeamImage" + "xpos" "62" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_blue" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "BlueLeaderAvatar" + "xpos" "16" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "BlueLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "BlueLeaderAvatarBG" + "xpos" "14" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "RedScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "RedScoreBG" + "xpos" "326" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "RedTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "RedTeamImage" + "fieldName" "BlueTeamImage" + "xpos" "548" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_red" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "RedLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "RedLeaderAvatar" + "xpos" "580" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "RedLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedLeaderAvatarBG" + "xpos" "578" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "MainBG" + { + "ControlName" "ImagePanel" + "fieldName" "MainBG" + "xpos" "0" + "ypos" "9" + "zpos" "-1" + "wide" "640" + "tall" "421" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "30 30 30 125" + + if_mvm + { + "ypos" "0" + "tall" "448" + } + } + "BlueTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%blueteamname%" + "textAlignment" "west" + "xpos" "10" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "190" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "191" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%blueteamplayercount%" + "textAlignment" "west" + "xpos" "135" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%redteamname%" + "textAlignment" "east" + "xpos" "490" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "330" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "331" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%redteamplayercount%" + "textAlignment" "east" + "xpos" "375" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabel" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "west" + "xpos" "11" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "0" + } + } + "TimerBG" + { + "ControlName" "EditablePanel" + "fieldName" "TimerBG" + "xpos" "280" + "ypos" "-3" + "zpos" "-1" + "wide" "80" + "tall" "43" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftInsetBG" + { + "ControlName" "EditablePanel" + "fieldName" "ServerTimeLeftInsetBG" + "xpos" "286" + "ypos" "12" + "zpos" "1" + "wide" "68" + "tall" "23" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFFatLineBorderOpaque" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftLabel" + "font" "ScoreboardVerySmall" + "labelText" "#Scoreboard_TimeLeftLabel" + "textAlignment" "center" + "xpos" "284" + "ypos" "2" + "zpos" "2" + "wide" "72" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftValue" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftValue" + "font" "ScoreboardMediumSmall" + "labelText" "%servertime%" + "textAlignment" "center" + "xpos" "284" + "ypos" "14" + "zpos" "2" + "wide" "72" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "fgcolor" "BrightYellow" + "centerwrap" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeft" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeft" + "font" "ScoreboardVerySmall" + "labelText" "%servertimeleft%" + "textAlignment" "east" + "xpos" "305" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "0" + "visible" "1" + } + } + "BluePlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "BluePlayerList" + "xpos" "5" + "ypos" "54" + "zpos" "20" + "wide" "310" + "tall" "286" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "blue" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "RedPlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "RedPlayerList" + "xpos" "325" + "ypos" "54" + "zpos" "20" + "wide" "310" + "tall" "286" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "red" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "VerticalLine" + { + "ControlName" "ImagePanel" + "fieldName" "VerticalLine" + "xpos" "319" + "ypos" "52" + "zpos" "2" + "wide" "2" + "tall" "292" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "0" + } + } + "Spectators" + { + "ControlName" "CExLabel" + "fieldName" "Spectators" + "font" "ScoreboardVerySmall" + "labelText" "%spectators%" + "textAlignment" "west" + "xpos" "115" + "ypos" "339" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "428" + } + } + "SpectatorsInQueue" + { + "ControlName" "CExLabel" + "fieldName" "SpectatorsInQueue" + "font" "ScoreboardVerySmall" + "labelText" "%waitingtoplay%" + "textAlignment" "west" + "xpos" "115" + "ypos" "330" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ShadedBar" + { + "ControlName" "ImagePanel" + "fieldName" "ShadedBar" + "xpos" "30" + "ypos" "354" + "zpos" "2" + "wide" "580" + "tall" "70" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "372" + } + } + "ClassImage" + { + "ControlName" "ImagePanel" + "fieldName" "ClassImage" + "xpos" "22" + "xpos_lodef" "12" + "ypos" "342" + "zpos" "3" + "wide" "82" + "tall" "82" + "visible" "1" + "enabled" "1" + "image" "../hud/class_scoutred" + "scaleImage" "1" + + if_mvm + { + "visible" "1" + "ypos" "360" + } + } + "classmodelpanel" + { + "ControlName" "CTFPlayerModelPanel" + "fieldName" "classmodelpanel" + + "xpos" "-10" + "ypos" "334" + "zpos" "10" + "wide" "130" + "tall" "90" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + "render_texture" "0" + "fov" "18" + "allow_rot" "1" + + "disable_speak_event" "1" + + if_mvm + { + "visible" "0" + } + + "model" + { + "force_pos" "1" + + "angles_x" "0" + "angles_y" "172" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + "frame_origin_x" "0" + "frame_origin_y" "0" + "frame_origin_z" "0" + "spotlight" "1" + + "modelname" "" + } + + "customclassdata" + { + "undefined" + { + } + "Scout" + { + "fov" "25" + "angles_x" "-17" + "angles_y" "145" + "angles_z" "0" + "origin_x" "105" + "origin_y" "4" + "origin_z" "-60" + } + "Sniper" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "172" + "angles_z" "0" + "origin_x" "130" + "origin_y" "-3" + "origin_z" "-60" + } + "Soldier" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "170" + "angles_z" "0" + "origin_x" "145" + "origin_y" "-5" + "origin_z" "-60" + } + "Demoman" + { + "fov" "25" + "angles_x" "-13" + "angles_y" "200" + "angles_z" "0" + "origin_x" "138" + "origin_y" "-4" + "origin_z" "-60" + } + "Medic" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "178" + "angles_z" "0" + "origin_x" "150" + "origin_y" "-5" + "origin_z" "-60" + } + "Heavy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "200" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + } + "Pyro" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "172" + "angles_z" "0" + "origin_x" "175" + "origin_y" "-5" + "origin_z" "-60" + } + "Spy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "160" + "angles_z" "0" + "origin_x" "160" + "origin_y" "0" + "origin_z" "-60" + } + "Engineer" + { + "fov" "20" + "angles_x" "-10" + "angles_y" "168" + "angles_z" "0" + "origin_x" "140" + "origin_y" "-2" + "origin_z" "-60" + } + } + } + "PlayerNameBG" + { + "ControlName" "EditablePanel" + "fieldName" "PlayerNameBG" + "xpos" "105" + "ypos" "352" + "zpos" "-1" + "wide" "485" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "PlayerNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerNameLabel" + "font" "ScoreboardMedium" + "labelText" "%playername%" + "textAlignment" "west" + "xpos" "115" + "ypos" "357" + "zpos" "3" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "1" + "wide" "175" + "ypos" "375" + } + } + "ServerLabelNew" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabelNew" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "east" + "xpos" "415" + "ypos" "342" + "zpos" "3" + "wide" "165" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "MapName" + { + "ControlName" "CExLabel" + "fieldName" "mapname" + "font" "ScoreboardMedium" + "labelText" "%mapname%" + "textAlignment" "east" + "xpos" "415" + "ypos" "357" + "zpos" "3" + "wide" "165" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "236 227 203 255" + + if_mvm + { + "visible" "0" + } + } + "HorizontalLine" + { + "ControlName" "ImagePanel" + "fieldName" "HorizontalLine" + "xpos" "115" + "ypos" "379" + "zpos" "3" + "wide" "465" + "tall" "1" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "127 127 127 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "397" + } + } + "PlayerScoreLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerScoreLabel" + "font" "ScoreboardMedium" + "labelText" "%playerscore%" + "textAlignment" "east" + "xpos" "440" + "ypos" "359" + "zpos" "3" + "wide" "140" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + + if_mvm + { + "visible" "0" + } + } + + "LocalPlayerDuelStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerDuelStatsPanel" + "xpos" "0" + "ypos" "377" + "zpos" "3" + "wide" "600" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + + "DuelingLabel" + { + "ControlName" "CExLabel" + "fieldName" "DuelingLabel" + "font" "ScoreboardSmall" + "labelText" "#TF_ScoreBoard_Dueling" + "textAlignment" "center" + "xpos" "250" + "ypos" "2 " + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "DuelingIcon" + { + "ControlName" "ImagePanel" + "fieldName" "DuelingIcon" + "xpos" "284" + "ypos" "15" + "zpos" "2" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "../backpack/player/items/crafting/icon_dueling" + "scaleImage" "1" + } + + "LocalPlayerData" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerData" + "xpos" "75" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "157" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "159" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "east" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "east" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + + "OpponentData" + { + "ControlName" "EditablePanel" + "fieldName" "OpponentData" + "xpos" "325" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "7" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "9" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "west" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "west" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + } + + "LocalPlayerStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerStatsPanel" + "xpos" "0" + "ypos" "377" + "zpos" "3" + "wide" "600" + "tall" "448" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "1" + "ypos" "395" + } + + "KillsLabel" + { + "ControlName" "CExLabel" + "fieldName" "KillsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_KillsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "DeathsLabel" + { + "ControlName" "CExLabel" + "fieldName" "DeathsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DeathsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "AssistsLabel" + { + "ControlName" "CExLabel" + "fieldName" "AssistsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_AssistsLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "7" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DestructionLabel" + { + "ControlName" "CExLabel" + "fieldName" "DestructionLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DestructionLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "23" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Kills1" + { + "ControlName" "CExLabel" + "fieldName" "Kills1" + "font" "HudFontMediumBigBold" + "labelText" "%kills%" + "textAlignment" "east" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bGreen" + } + "Divider" + { + "ControlName" "Label" + "fieldName" "Divider" + "font" "HudFontMediumBigBold" + "labelText" "/" + "textAlignment" "center" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "180" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "TanLight" + } + "Deaths1" + { + "ControlName" "CExLabel" + "fieldName" "Deaths1" + "font" "HudFontMediumBigBold" + "labelText" "%deaths%" + "textAlignment" "west" + "xpos" "190" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bRed" + } + "GameType" + { + "ControlName" "CExLabel" + "fieldName" "gametype" + "font" "ScoreboardVerySmall" + "labelText" "%gametype%" + "textAlignment" "east" + "xpos" "435" + "ypos" "32" + "zpos" "3" + "wide" "145" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "fgcolor" "185 177 153 255" + } + "Assists" + { + "ControlName" "CExLabel" + "fieldName" "Assists" + "font" "ScoreboardVerySmall" + "labelText" "%assists%" + "textAlignment" "west" + "xpos" "285" + "ypos" "7" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Destruction" + { + "ControlName" "CExLabel" + "fieldName" "Destruction" + "font" "ScoreboardVerySmall" + "labelText" "%destruction%" + "textAlignment" "west" + "xpos" "285" + "ypos" "23" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "CapturesLabel" + { + "ControlName" "CExLabel" + "fieldName" "CapturesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_CapturesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DefensesLabel" + { + "ControlName" "CExLabel" + "fieldName" "DefensesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DefensesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DominationLabel" + { + "ControlName" "CExLabel" + "fieldName" "DominationLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DominationLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RevengeLabel" + { + "ControlName" "CExLabel" + "fieldName" "RevengeLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_RevengeLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Captures" + { + "ControlName" "CExLabel" + "fieldName" "Captures" + "font" "ScoreboardVerySmall" + "labelText" "%captures%" + "textAlignment" "west" + "xpos" "371" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Defenses" + { + "ControlName" "CExLabel" + "fieldName" "Defenses" + "font" "ScoreboardVerySmall" + "labelText" "%defenses%" + "textAlignment" "west" + "xpos" "371" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Domination" + { + "ControlName" "CExLabel" + "fieldName" "Domination" + "font" "ScoreboardVerySmall" + "labelText" "%dominations%" + "textAlignment" "west" + "xpos" "371" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Revenge" + { + "ControlName" "CExLabel" + "fieldName" "Revenge" + "font" "ScoreboardVerySmall" + "labelText" "%Revenge%" + "textAlignment" "west" + "xpos" "371" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HealingLabel" + { + "ControlName" "CExLabel" + "fieldName" "HealingLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HealingLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "InvulnLabel" + { + "ControlName" "CExLabel" + "fieldName" "InvulnLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_InvulnLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "TeleportsLabel" + { + "ControlName" "CExLabel" + "fieldName" "TeleportsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_TeleportsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HeadshotsLabel" + { + "ControlName" "CExLabel" + "fieldName" "HeadshotsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HeadshotsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Healing" + { + "ControlName" "CExLabel" + "fieldName" "Healing" + "font" "ScoreboardVerySmall" + "labelText" "%healing%" + "textAlignment" "west" + "xpos" "457" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Invuln" + { + "ControlName" "CExLabel" + "fieldName" "Invuln" + "font" "ScoreboardVerySmall" + "labelText" "%invulns%" + "textAlignment" "west" + "xpos" "457" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Teleports" + { + "ControlName" "CExLabel" + "fieldName" "Teleports" + "font" "ScoreboardVerySmall" + "labelText" "%teleports%" + "textAlignment" "west" + "xpos" "457" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Headshots" + { + "ControlName" "CExLabel" + "fieldName" "Headshots" + "font" "ScoreboardVerySmall" + "labelText" "%headshots%" + "textAlignment" "west" + "xpos" "457" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BackstabsLabel" + { + "ControlName" "CExLabel" + "fieldName" "BackstabsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BackstabsLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Backstabs" + { + "ControlName" "CExLabel" + "fieldName" "Backstabs" + "font" "ScoreboardVerySmall" + "labelText" "%backstabs%" + "textAlignment" "west" + "xpos" "543" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BonusLabel" + { + "ControlName" "CExLabel" + "fieldName" "BonusLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BonusLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "10" + "zpos" "3" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Bonus" + { + "ControlName" "CExLabel" + "fieldName" "Bonus" + "font" "ScoreboardVerySmall" + "labelText" "%bonus%" + "textAlignment" "west" + "xpos" "543" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "SupportLabel" + { + "ControlName" "CExLabel" + "fieldName" "SupportLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Support" + "textAlignment" "east" + "xpos" "443" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Support" + { + "ControlName" "CExLabel" + "fieldName" "Support" + "font" "ScoreboardVerySmall" + "labelText" "%support%" + "textAlignment" "west" + "xpos" "543" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DamageLabel" + { + "ControlName" "CExLabel" + "fieldName" "DamageLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Damage" + "textAlignment" "east" + "xpos" "443" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Damage" + { + "ControlName" "CExLabel" + "fieldName" "Damage" + "font" "ScoreboardVerySmall" + "labelText" "%damage%" + "textAlignment" "west" + "xpos" "543" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + + "ButtonLegendBG" [$X360] + { + "ControlName" "ImagePanel" + "fieldName" "ButtonLegendBG" + "xpos" "10" + "ypos" "373" + "zpos" "0" + "wide" "539" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + } + + "ButtonLegend" [$X360] + { + "ControlName" "EditablePanel" + "fieldName" "ButtonLegend" + "xpos" "10" + "ypos" "373" + "zpos" "1" + "wide" "539" + "tall" "150" + "visible" "1" + + "SelectHintIcon" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintIcon" + "font" "GameUIButtons" + "xpos" "10" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "C" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "SelectHintLabel" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintLabel" + "font" "ScoreboardMedium" + "xpos" "25" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_Select" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardIcon" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardIcon" + "font" "GameUIButtons" + "xpos" "150" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "A" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardLabel" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardLabel" + "font" "ScoreboardMedium" + "xpos" "170" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_ViewGamercard" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationIcon" + { + "ControlName" "CExLabel" + "fieldName" "ReputationIcon" + "font" "GameUIButtons" + "xpos" "350" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "X" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationLabel" + { + "ControlName" "CExLabel" + "fieldName" "ReputationLabel" + "font" "ScoreboardMedium" + "xpos" "403" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_PlayerReview" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "MvMScoreboard" + { + "ControlName" "CTFHudMannVsMachineScoreboard" + "fieldName" "MvMScoreboard" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + + "verbose" "1" + + if_mvm + { + "visible" "1" + } + } +} diff --git a/biscottihud/resource/ui/scoreboard_incognito.res b/biscottihud/resource/ui/scoreboard_incognito.res new file mode 100644 index 0000000..412b40d --- /dev/null +++ b/biscottihud/resource/ui/scoreboard_incognito.res @@ -0,0 +1,1922 @@ +"Resource/UI/Scoreboard.res" +{ + "scores" + { + "ControlName" "CTFClientScoreBoardDialog" + "fieldName" "scoreinfo" + "xpos" "cs-0.5" + "ypos" "31" + "wide" "640" + "tall" "144" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "medal_width" "20" + "avatar_width" "65" + "spacer" "5" + "name_width" "118" + "nemesis_width" "25" + "class_width" "25" + "score_width" "30" + "ping_width" "25" + "killstreak_width" "15" + "killstreak_image_width" "15" + + if_mvm + { + "tall" "448" + } + } + "BlueScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "BlueScoreBG" + "xpos" "-2" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_blu" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "BlueTeamImage" + "xpos" "62" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_blue" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "BlueLeaderAvatar" + "xpos" "16" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "BlueLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "BlueLeaderAvatarBG" + "xpos" "14" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "RedScoreBG" + { + "ControlName" "CTFImagePanel" + "fieldName" "RedScoreBG" + "xpos" "326" + "ypos" "9" + "wide" "314" + "tall" "37" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/color_panel_red" + "scaleImage" "1" + + "src_corner_height" "15" + "src_corner_width" "15" + + "draw_corner_width" "0" + "draw_corner_height" "0" + + if_mvm + { + "visible" "0" + } + } + "RedTeamImage" + { + "ControlName" "ImagePanel" + "fieldName" "RedTeamImage" + "fieldName" "BlueTeamImage" + "xpos" "548" + "ypos" "5" + "zpos" "20" + "wide" "-46" + "tall" "46" + "visible" "1" + "enabled" "1" + "image" "../hud/team_red" + "scaleImage" "1" + + if_mvm + { + "visible" "0" + } + } + "RedLeaderAvatar" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "RedLeaderAvatar" + "xpos" "580" + "ypos" "16" + "zpos" "5" + "wide" "45" + "tall" "45" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "RedLeaderAvatarBG" + { + "ControlName" "EditablePanel" + "fieldName" "RedLeaderAvatarBG" + "xpos" "578" + "ypos" "14" + "zpos" "4" + "wide" "49" + "tall" "49" + "visible" "0" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "MainBG" + { + "ControlName" "ImagePanel" + "fieldName" "MainBG" + "xpos" "0" + "ypos" "9" + "zpos" "-1" + "wide" "640" + "tall" "135" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fillcolor" "30 30 30 125" + + if_mvm + { + "ypos" "0" + "tall" "448" + } + } + "BlueTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%blueteamname%" + "textAlignment" "west" + "xpos" "10" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "190" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%blueteamscore%" + "textAlignment" "east" + "xpos" "191" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "BlueTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "BlueTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%blueteamplayercount%" + "textAlignment" "west" + "xpos" "135" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamLabel" + "font" "ScoreboardTeamNameMedium" + "labelText" "%redteamname%" + "textAlignment" "east" + "xpos" "490" + "ypos" "14" + "zpos" "20" + "wide" "140" + "tall" "34" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScore" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScore" + "font" "ScoreboardTeamScoreMedium" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "330" + "ypos" "2" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamScoreDropshadow" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamScoreDropshadow" + "font" "ScoreboardTeamScoreMedium" + "fgcolor" "Black" + "labelText" "%redteamscore%" + "textAlignment" "west" + "xpos" "331" + "ypos" "3" + "zpos" "4" + "wide" "120" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "RedTeamPlayerCount" + { + "ControlName" "CExLabel" + "fieldName" "RedTeamPlayerCount" + "font" "ScoreboardMediumSmallish" + "labelText" "%redteamplayercount%" + "textAlignment" "east" + "xpos" "375" + "ypos" "20" + "wide" "130" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabel" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "west" + "xpos" "11" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "ypos" "0" + } + } + "TimerBG" + { + "ControlName" "EditablePanel" + "fieldName" "TimerBG" + "xpos" "280" + "ypos" "-3" + "zpos" "-1" + "wide" "80" + "tall" "43" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftInsetBG" + { + "ControlName" "EditablePanel" + "fieldName" "ServerTimeLeftInsetBG" + "xpos" "286" + "ypos" "12" + "zpos" "1" + "wide" "68" + "tall" "23" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFFatLineBorderOpaque" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftLabel" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftLabel" + "font" "ScoreboardVerySmall" + "labelText" "#Scoreboard_TimeLeftLabel" + "textAlignment" "center" + "xpos" "284" + "ypos" "2" + "zpos" "2" + "wide" "72" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeftValue" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeftValue" + "font" "ScoreboardMediumSmall" + "labelText" "%servertime%" + "textAlignment" "center" + "xpos" "284" + "ypos" "14" + "zpos" "2" + "wide" "72" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "fgcolor" "BrightYellow" + "centerwrap" "1" + + if_mvm + { + "visible" "0" + } + } + "ServerTimeLeft" + { + "ControlName" "CExLabel" + "fieldName" "ServerTimeLeft" + "font" "ScoreboardVerySmall" + "labelText" "%servertimeleft%" + "textAlignment" "east" + "xpos" "305" + "ypos" "42" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + if_mvm + { + "ypos" "0" + "visible" "1" + } + } + "BluePlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "BluePlayerList" + "xpos" "5" + "ypos" "54" + "zpos" "20" + "wide" "-310" + "tall" "218" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "blue" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "RedPlayerList" + { + "ControlName" "SectionedListPanel" + "fieldName" "RedPlayerList" + "xpos" "325" + "ypos" "54" + "zpos" "20" + "wide" "-310" + "tall" "218" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "autoresize" "3" + "linespacing" "17" // 24p = 22 // 32p = 17 + "fgcolor" "red" + //"show_columns" "1" + + if_mvm + { + "visible" "0" + } + } + "VerticalLine" + { + "ControlName" "ImagePanel" + "fieldName" "VerticalLine" + "xpos" "319" + "ypos" "52" + "zpos" "2" + "wide" "2" + "tall" "224" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "0" + } + } + "Spectators" + { + "ControlName" "CExLabel" + "fieldName" "Spectators" + "font" "ScoreboardVerySmall" + "labelText" "%spectators%" + "textAlignment" "west" + "xpos" "115" + "ypos" "53" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "ypos" "428" + } + } + "SpectatorsInQueue" + { + "ControlName" "CExLabel" + "fieldName" "SpectatorsInQueue" + "font" "ScoreboardVerySmall" + "labelText" "%waitingtoplay%" + "textAlignment" "west" + "xpos" "115" + "ypos" "44" + "zpos" "4" + "wide" "424" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "ShadedBar" + { + "ControlName" "ImagePanel" + "fieldName" "ShadedBar" + "xpos" "30" + "ypos" "68" + "zpos" "2" + "wide" "580" + "tall" "70" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "372" + } + } + "ClassImage" + { + "ControlName" "ImagePanel" + "fieldName" "ClassImage" + "xpos" "22" + "xpos_lodef" "12" + "ypos" "56" + "zpos" "3" + "wide" "82" + "tall" "82" + "visible" "1" + "enabled" "1" + "image" "../hud/class_scoutred" + "scaleImage" "1" + + if_mvm + { + "visible" "1" + "ypos" "360" + } + } + "classmodelpanel" + { + "ControlName" "CTFPlayerModelPanel" + "fieldName" "classmodelpanel" + + "xpos" "-10" + "ypos" "48" + "zpos" "10" + "wide" "130" + "tall" "90" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + "render_texture" "0" + "fov" "18" + "allow_rot" "1" + + "disable_speak_event" "1" + + if_mvm + { + "visible" "0" + } + + "model" + { + "force_pos" "1" + + "angles_x" "0" + "angles_y" "172" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + "frame_origin_x" "0" + "frame_origin_y" "0" + "frame_origin_z" "0" + "spotlight" "1" + + "modelname" "" + } + + "customclassdata" + { + "undefined" + { + } + "Scout" + { + "fov" "25" + "angles_x" "-17" + "angles_y" "145" + "angles_z" "0" + "origin_x" "105" + "origin_y" "4" + "origin_z" "-60" + } + "Sniper" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "172" + "angles_z" "0" + "origin_x" "130" + "origin_y" "-3" + "origin_z" "-60" + } + "Soldier" + { + "fov" "25" + "angles_x" "-10" + "angles_y" "170" + "angles_z" "0" + "origin_x" "145" + "origin_y" "-5" + "origin_z" "-60" + } + "Demoman" + { + "fov" "25" + "angles_x" "-13" + "angles_y" "200" + "angles_z" "0" + "origin_x" "138" + "origin_y" "-4" + "origin_z" "-60" + } + "Medic" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "178" + "angles_z" "0" + "origin_x" "150" + "origin_y" "-5" + "origin_z" "-60" + } + "Heavy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "200" + "angles_z" "0" + "origin_x" "200" + "origin_y" "0" + "origin_z" "-60" + } + "Pyro" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "172" + "angles_z" "0" + "origin_x" "175" + "origin_y" "-5" + "origin_z" "-60" + } + "Spy" + { + "fov" "20" + "angles_x" "-5" + "angles_y" "160" + "angles_z" "0" + "origin_x" "160" + "origin_y" "0" + "origin_z" "-60" + } + "Engineer" + { + "fov" "20" + "angles_x" "-10" + "angles_y" "168" + "angles_z" "0" + "origin_x" "140" + "origin_y" "-2" + "origin_z" "-60" + } + } + } + "PlayerNameBG" + { + "ControlName" "EditablePanel" + "fieldName" "PlayerNameBG" + "xpos" "105" + "ypos" "66" + "zpos" "-1" + "wide" "485" + "tall" "29" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "border" "TFThinLineBorder" + + if_mvm + { + "visible" "0" + } + } + "PlayerNameLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerNameLabel" + "font" "ScoreboardMedium" + "labelText" "%playername%" + "textAlignment" "west" + "xpos" "115" + "ypos" "71" + "zpos" "3" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "1" + "wide" "175" + "ypos" "375" + } + } + "ServerLabelNew" + { + "ControlName" "CExLabel" + "fieldName" "ServerLabelNew" + "font" "ScoreboardVerySmall" + "labelText" "%server%" + "textAlignment" "east" + "xpos" "415" + "ypos" "56" + "zpos" "3" + "wide" "165" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + } + "MapName" + { + "ControlName" "CExLabel" + "fieldName" "mapname" + "font" "ScoreboardMedium" + "labelText" "%mapname%" + "textAlignment" "east" + "xpos" "415" + "ypos" "71" + "zpos" "3" + "wide" "165" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "236 227 203 255" + + if_mvm + { + "visible" "0" + } + } + "HorizontalLine" + { + "ControlName" "ImagePanel" + "fieldName" "HorizontalLine" + "xpos" "115" + "ypos" "93" + "zpos" "3" + "wide" "465" + "tall" "1" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "127 127 127 153" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + "ypos" "397" + } + } + "PlayerScoreLabel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerScoreLabel" + "font" "ScoreboardMedium" + "labelText" "%playerscore%" + "textAlignment" "east" + "xpos" "440" + "ypos" "73" + "zpos" "3" + "wide" "140" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + + if_mvm + { + "visible" "0" + } + } + + "LocalPlayerDuelStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerDuelStatsPanel" + "xpos" "0" + "ypos" "91" + "zpos" "3" + "wide" "600" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "0" + } + + "DuelingLabel" + { + "ControlName" "CExLabel" + "fieldName" "DuelingLabel" + "font" "ScoreboardSmall" + "labelText" "#TF_ScoreBoard_Dueling" + "textAlignment" "center" + "xpos" "250" + "ypos" "2 " + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + + "DuelingIcon" + { + "ControlName" "ImagePanel" + "fieldName" "DuelingIcon" + "xpos" "284" + "ypos" "15" + "zpos" "2" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "../backpack/player/items/crafting/icon_dueling" + "scaleImage" "1" + } + + "LocalPlayerData" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerData" + "xpos" "75" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "157" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "159" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "east" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "east" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + + "OpponentData" + { + "ControlName" "EditablePanel" + "fieldName" "OpponentData" + "xpos" "325" + "ypos" "0" + "wide" "200" + "tall" "53" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + + "AvatarBGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "AvatarBGPanel" + "xpos" "7" + "ypos" "7" + "zpos" "-1" + "wide" "36" + "tall" "36" + "visible" "1" + "PaintBackgroundType" "2" + "bgcolor_override" "117 107 94 255" + } + "AvatarImage" + { + "ControlName" "CAvatarImagePanel" + "fieldName" "AvatarImage" + "xpos" "9" + "ypos" "9" + "zpos" "0" + "wide" "32" + "tall" "32" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + "color_outline" "52 48 45 255" + } + "AvatarTextLabel" + { + "ControlName" "CExLabel" + "fieldName" "AvatarTextLabel" + "fgcolor" "TanLight" + "xpos" "50" + "ypos" "7" + "zpos" "2" + "wide" "100" + "tall" "18" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + "labelText" "%playername%" + "textAlignment" "west" + "font" "HudFontSmallest" + } + "Score" + { + "ControlName" "CExLabel" + "fieldName" "Score" + "labelText" "%score%" + "textAlignment" "west" + "xpos" "50" + "ypos" "23" + "zpos" "3" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "font" "ScoreboardMedium" + } + } + } + + "LocalPlayerStatsPanel" + { + "ControlName" "EditablePanel" + "fieldName" "LocalPlayerStatsPanel" + "xpos" "0" + "ypos" "91" + "zpos" "3" + "wide" "600" + "tall" "448" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + + if_mvm + { + "visible" "1" + "ypos" "395" + } + + "KillsLabel" + { + "ControlName" "CExLabel" + "fieldName" "KillsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_KillsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "DeathsLabel" + { + "ControlName" "CExLabel" + "fieldName" "DeathsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DeathsLabel" + "textAlignment" "east" + "xpos" "80" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "AssistsLabel" + { + "ControlName" "CExLabel" + "fieldName" "AssistsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_AssistsLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "7" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DestructionLabel" + { + "ControlName" "CExLabel" + "fieldName" "DestructionLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DestructionLabel" + "textAlignment" "east" + "xpos" "185" + "ypos" "23" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Kills1" + { + "ControlName" "CExLabel" + "fieldName" "Kills1" + "font" "HudFontMediumBigBold" + "labelText" "%kills%" + "textAlignment" "east" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bGreen" + } + "Divider" + { + "ControlName" "Label" + "fieldName" "Divider" + "font" "HudFontMediumBigBold" + "labelText" "/" + "textAlignment" "center" + "xpos" "85" + "ypos" "5" + "zpos" "3" + "wide" "180" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor" "TanLight" + } + "Deaths1" + { + "ControlName" "CExLabel" + "fieldName" "Deaths1" + "font" "HudFontMediumBigBold" + "labelText" "%deaths%" + "textAlignment" "west" + "xpos" "190" + "ypos" "5" + "zpos" "3" + "wide" "75" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "bRed" + } + "GameType" + { + "ControlName" "CExLabel" + "fieldName" "gametype" + "font" "ScoreboardVerySmall" + "labelText" "%gametype%" + "textAlignment" "east" + "xpos" "435" + "ypos" "32" + "zpos" "3" + "wide" "145" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "fgcolor" "185 177 153 255" + } + "Assists" + { + "ControlName" "CExLabel" + "fieldName" "Assists" + "font" "ScoreboardVerySmall" + "labelText" "%assists%" + "textAlignment" "west" + "xpos" "285" + "ypos" "7" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Destruction" + { + "ControlName" "CExLabel" + "fieldName" "Destruction" + "font" "ScoreboardVerySmall" + "labelText" "%destruction%" + "textAlignment" "west" + "xpos" "285" + "ypos" "23" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "CapturesLabel" + { + "ControlName" "CExLabel" + "fieldName" "CapturesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_CapturesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DefensesLabel" + { + "ControlName" "CExLabel" + "fieldName" "DefensesLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DefensesLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DominationLabel" + { + "ControlName" "CExLabel" + "fieldName" "DominationLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_DominationLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RevengeLabel" + { + "ControlName" "CExLabel" + "fieldName" "RevengeLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_RevengeLabel" + "textAlignment" "east" + "xpos" "271" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Captures" + { + "ControlName" "CExLabel" + "fieldName" "Captures" + "font" "ScoreboardVerySmall" + "labelText" "%captures%" + "textAlignment" "west" + "xpos" "371" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Defenses" + { + "ControlName" "CExLabel" + "fieldName" "Defenses" + "font" "ScoreboardVerySmall" + "labelText" "%defenses%" + "textAlignment" "west" + "xpos" "371" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Domination" + { + "ControlName" "CExLabel" + "fieldName" "Domination" + "font" "ScoreboardVerySmall" + "labelText" "%dominations%" + "textAlignment" "west" + "xpos" "371" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Revenge" + { + "ControlName" "CExLabel" + "fieldName" "Revenge" + "font" "ScoreboardVerySmall" + "labelText" "%Revenge%" + "textAlignment" "west" + "xpos" "371" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HealingLabel" + { + "ControlName" "CExLabel" + "fieldName" "HealingLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HealingLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "InvulnLabel" + { + "ControlName" "CExLabel" + "fieldName" "InvulnLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_InvulnLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "TeleportsLabel" + { + "ControlName" "CExLabel" + "fieldName" "TeleportsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_TeleportsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "HeadshotsLabel" + { + "ControlName" "CExLabel" + "fieldName" "HeadshotsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_HeadshotsLabel" + "textAlignment" "east" + "xpos" "357" + "ypos" "10" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Healing" + { + "ControlName" "CExLabel" + "fieldName" "Healing" + "font" "ScoreboardVerySmall" + "labelText" "%healing%" + "textAlignment" "west" + "xpos" "457" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Invuln" + { + "ControlName" "CExLabel" + "fieldName" "Invuln" + "font" "ScoreboardVerySmall" + "labelText" "%invulns%" + "textAlignment" "west" + "xpos" "457" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Teleports" + { + "ControlName" "CExLabel" + "fieldName" "Teleports" + "font" "ScoreboardVerySmall" + "labelText" "%teleports%" + "textAlignment" "west" + "xpos" "457" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Headshots" + { + "ControlName" "CExLabel" + "fieldName" "Headshots" + "font" "ScoreboardVerySmall" + "labelText" "%headshots%" + "textAlignment" "west" + "xpos" "457" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BackstabsLabel" + { + "ControlName" "CExLabel" + "fieldName" "BackstabsLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BackstabsLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "0" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Backstabs" + { + "ControlName" "CExLabel" + "fieldName" "Backstabs" + "font" "ScoreboardVerySmall" + "labelText" "%backstabs%" + "textAlignment" "west" + "xpos" "543" + "ypos" "0" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BonusLabel" + { + "ControlName" "CExLabel" + "fieldName" "BonusLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_ScoreBoard_BonusLabel" + "textAlignment" "east" + "xpos" "443" + "ypos" "10" + "zpos" "3" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Bonus" + { + "ControlName" "CExLabel" + "fieldName" "Bonus" + "font" "ScoreboardVerySmall" + "labelText" "%bonus%" + "textAlignment" "west" + "xpos" "543" + "ypos" "10" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "SupportLabel" + { + "ControlName" "CExLabel" + "fieldName" "SupportLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Support" + "textAlignment" "east" + "xpos" "443" + "ypos" "20" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Support" + { + "ControlName" "CExLabel" + "fieldName" "Support" + "font" "ScoreboardVerySmall" + "labelText" "%support%" + "textAlignment" "west" + "xpos" "543" + "ypos" "20" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "DamageLabel" + { + "ControlName" "CExLabel" + "fieldName" "DamageLabel" + "font" "ScoreboardVerySmall" + "labelText" "#TF_Scoreboard_Damage" + "textAlignment" "east" + "xpos" "443" + "ypos" "30" + "zpos" "3" + "wide" "95" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Damage" + { + "ControlName" "CExLabel" + "fieldName" "Damage" + "font" "ScoreboardVerySmall" + "labelText" "%damage%" + "textAlignment" "west" + "xpos" "543" + "ypos" "30" + "zpos" "3" + "wide" "35" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + + "ButtonLegendBG" [$X360] + { + "ControlName" "ImagePanel" + "fieldName" "ButtonLegendBG" + "xpos" "10" + "ypos" "373" + "zpos" "0" + "wide" "539" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 153" + "PaintBackgroundType" "0" + } + + "ButtonLegend" [$X360] + { + "ControlName" "EditablePanel" + "fieldName" "ButtonLegend" + "xpos" "10" + "ypos" "373" + "zpos" "1" + "wide" "539" + "tall" "150" + "visible" "1" + + "SelectHintIcon" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintIcon" + "font" "GameUIButtons" + "xpos" "10" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "C" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "SelectHintLabel" + { + "ControlName" "CExLabel" + "fieldName" "SelectHintLabel" + "font" "ScoreboardMedium" + "xpos" "25" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_Select" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardIcon" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardIcon" + "font" "GameUIButtons" + "xpos" "150" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "A" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "GamerCardLabel" + { + "ControlName" "CExLabel" + "fieldName" "GamerCardLabel" + "font" "ScoreboardMedium" + "xpos" "170" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#TF_ViewGamercard" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationIcon" + { + "ControlName" "CExLabel" + "fieldName" "ReputationIcon" + "font" "GameUIButtons" + "xpos" "350" + "ypos" "0" + "zpos" "1" + "wide" "300" + "tall" "38" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "X" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "ReputationLabel" + { + "ControlName" "CExLabel" + "fieldName" "ReputationLabel" + "font" "ScoreboardMedium" + "xpos" "403" + "ypos" "2" + "zpos" "1" + "wide" "300" + "tall" "39" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#GameUI_PlayerReview" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + + "MvMScoreboard" + { + "ControlName" "CTFHudMannVsMachineScoreboard" + "fieldName" "MvMScoreboard" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + + "verbose" "1" + + if_mvm + { + "visible" "1" + } + } +} diff --git a/biscottihud/resource/ui/scoreboard_number.res b/biscottihud/resource/ui/scoreboard_number.res new file mode 100644 index 0000000..48665bf --- /dev/null +++ b/biscottihud/resource/ui/scoreboard_number.res @@ -0,0 +1 @@ +#base "scoreboard_24.res" diff --git a/biscottihud/resource/ui/spectator.res b/biscottihud/resource/ui/spectator.res new file mode 100644 index 0000000..c841d5c --- /dev/null +++ b/biscottihud/resource/ui/spectator.res @@ -0,0 +1,398 @@ +#base "spectator_incognito.res" + +"Resource/UI/Spectator.res" +{ + "Spectator" + { + "ControlName" "Frame" + "fieldName" "Spectator" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "specgui" + { + } + "topbar" + { + "ControlName" "Panel" + "fieldName" "TopBar" + "xpos" "0" + "ypos" "0" + "tall" "-84" [$WIN32] + "tall_minmode" "-20" [$WIN32] + "tall" "104" [$X360] + "wide" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + } + "BottomBar" + { + "ControlName" "Frame" + "fieldName" "BottomBar" + "xpos" "0" + "ypos" "r70" [$WIN32] + "ypos" "r90" [$X360] + "ypos_minmode" "r20" + "tall" "-70" [$WIN32] + "tall_minmode" "0" + "tall" "90" [$X360] + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + } + "bottombarblank" + { + "ControlName" "Panel" + "fieldName" "bottombarblank" + "xpos" "0" + "ypos" "r70" [$WIN32] + "ypos" "r90" [$X360] + "ypos_minmode" "r0" + "tall" "-70" [$WIN32] // this needs to match the size of BottomBar + "tall_minmode" "0" + "tall" "90" [$X360] + "wide" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "visible_minmode" "0" + "enabled" "1" + "tabPosition" "0" + } + "ReinforcementsLabel" + { + "ControlName" "CExLabel" + "fieldName" "ReinforcementsLabel" + "xpos" "c-100" + "ypos" "52" + "zpos" "1" + "auto_wide_tocontents" "1" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#game_respawntime_in_secs" + "textAlignment" "center" + "textinsetx" "25" + "font" "HudFontMediumSmallSecondary" + + "bgcolor_override" "bBlackBG" + } + "BuyBackLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuyBackLabel" + "xpos" "0" + "ypos" "0" + "wide" "400" + "tall" "f0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "" + "textAlignment" "center" + "font" "HudFontSmall" + "wrap" "1" + "centerwrap" "1" + } + "MapLabel" + { + "ControlName" "CExLabel" + "fieldName" "MapLabel" + "font" "HudFontSmall" + "font_hidef" "HudFontMedium" + "xpos" "r260" [$WIN32] + "ypos" "16" [$WIN32] + "xpos" "r285" [$X360] + "ypos" "32" [$X360] + "wide" "240" [$WIN32] + "wide" "220" [$X360] + "tall" "20" + "tall_hidef" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "visible_minmode" "0" + "enabled" "1" + "labelText" "map: cp_bridge" + "textAlignment" "east" + } + "ClassOrTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassOrTeamLabel" + "xpos" "c-85" + "xpos_hidef" "c-65" + "xpos_lodef" "40" + "ypos" "68" + "ypos_hidef" "90" + "ypos_lodef" "30" + "wide" "170" + "wide_hidef" "130" + "wide_lodef" "220" + "tall" "15" + "tall_lodef" "25" + "zpos" "2" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" [$WIN32] + "visible_minmode" "0" + "visible" "0" [$X360] + "enabled" "1" + "labelText" "#TF_Spectator_ChangeTeam" + "textAlignment" "center" + "textAlignment_lodef" "north-west" + "font" "SpectatorKeyHints" + "font_hidef" "HudFontSmallest" + "font_lodef" "HudFontSmall" + "wrap_lodef" "1" + } + "SwitchCamModeKeyLabel" + { + "ControlName" "CExLabel" + "fieldName" "SwitchCamModeKeyLabel" + "xpos" "5" [$WIN32] + "ypos" "10" [$WIN32] + "xpos" "53" [$X360] + "ypos" "40" [$X360] + "wide" "60" [$WIN32] + "wide" "60" [$X360] + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" [$WIN32] + "visible_minmode" "0" + "visible" "0" [$X360] + "enabled" "1" + "labelText" "#TF_Spectator_ChangeTeam" + "textAlignment" "east" + "font" "SpectatorKeyHints" + + } + "SwitchCamModeLabel" + { + "ControlName" "CExLabel" + "fieldName" "SwitchCamModeLabel" + "xpos" "80" [$WIN32] + "ypos" "10" [$WIN32] + "xpos" "128" [$X360] + "ypos" "40" [$X360] + "wide" "125" [$WIN32] + "wide" "95" [$X360] + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" [$WIN32] + "visible_minmode" "0" + "visible" "0" [$X360] + "enabled" "1" + "labelText" "#TF_Spectator_SwitchCamMode" + "textAlignment" "west" + "font" "SpectatorKeyHints" + } + "CycleTargetFwdKeyLabel" + { + "ControlName" "CExLabel" + "fieldName" "CycleTargetFwdKeyLabel" + "xpos" "5" [$WIN32] + "ypos" "20" [$WIN32] + "xpos" "53" [$X360] + "ypos" "50" [$X360] + "wide" "60" [$WIN32] + "wide" "60" [$X360] + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" [$WIN32] + "visible_minmode" "0" + "visible" "0" [$X360] + "enabled" "1" + "labelText" "#TF_Spectator_ClassOrTeamKey" + "textAlignment" "east" + "font" "SpectatorKeyHints" + } + "CycleTargetFwdLabel" + { + "ControlName" "CExLabel" + "fieldName" "CycleTargetFwdLabel" + "xpos" "80" [$WIN32] + "ypos" "20" [$WIN32] + "xpos" "128" [$X360] + "ypos" "50" [$X360] + "wide" "125" [$WIN32] + "wide" "95" [$X360] + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" [$WIN32] + "visible_minmode" "0" + "visible" "0" [$X360] + "enabled" "1" + "labelText" "#TF_Spectator_CycleTargetFwd" + "textAlignment" "west" + "font" "SpectatorKeyHints" + } + "CycleTargetRevKeyLabel" + { + "ControlName" "CExLabel" + "fieldName" "CycleTargetRevKeyLabel" + "xpos" "5" [$WIN32] + "ypos" "30" [$WIN32] + "xpos" "53" [$X360] + "ypos" "60" [$X360] + "wide" "60" [$WIN32] + "wide" "60" [$X360] + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" [$WIN32] + "visible_minmode" "0" + "visible" "0" [$X360] + "enabled" "1" + "labelText" "#TF_Spectator_ClassOrTeamKey" + "textAlignment" "east" + "font" "SpectatorKeyHints" + } + "CycleTargetRevLabel" + { + "ControlName" "CExLabel" + "fieldName" "CycleTargetRevLabel" + "xpos" "80" [$WIN32] + "ypos" "30" [$WIN32] + "xpos" "128" [$X360] + "ypos" "60" [$X360] + "wide" "125" [$WIN32] + "wide" "95" [$X360] + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" [$WIN32] + "visible_minmode" "0" + "visible" "0" [$X360] + "enabled" "1" + "labelText" "#TF_Spectator_CycleTargetRev" + "textAlignment" "west" + "font" "SpectatorKeyHints" + } + "TipLabel" + { + "ControlName" "CExLabel" + "fieldName" "TipLabel" + "xpos" "15" + "xpos_hidef" "60" + "xpos_lodef" "45" + "ypos" "r67" + "ypos_lodef" "28" + "ypos_hidef" "35" + "wide" "145" + "wide_hidef" "230" + "wide_lodef" "240" + "tall" "64" + "tall_hidef" "70" + "tall_lodef" "70" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "visible_minmode" "0" + "enabled" "1" + "labelText" "%tip%" + "textAlignment" "center" [$WIN32] + "textAlignment" "north-west" [$X360] + "font" "SpectatorKeyHints" + "font_hidef" "HudFontSmall" + "font_lodef" "DefaultVerySmall" + "wrap" "1" + } + "itempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "itempanel" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "190" + "tall" "100" + "visible" "0" + "bgcolor_override" "255 255 255 0" + "PaintBackgroundType" "0" + "PaintBorder" "0" + + "model_ypos" "10" + "model_center_x" "1" + "model_wide" "90" + "model_tall" "60" + + "text_xpos" "10" + "text_ypos" "10" + "text_wide" "170" + "text_center" "1" + + "max_text_height" "100" + "padding_height" "10" + "resize_to_text" "1" + "text_forcesize" "2" + + "ItempanelBG" + { + "ControlName" "ImagePanel" + "fieldName" "ItempanelBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enable" "1" + "fillcolor" "bBlackBG" + } + + "itemmodelpanel" + { + "fieldName" "itemmodelpanel" + "use_item_rendertarget" "0" + "useparentbg" "1" + } + + "ItemLabel" + { + "ControlName" "Label" + "fieldName" "ItemLabel" + "font" "DefaultSmall" + "xpos" "10" + "ypos" "3" + "zpos" "1" + "wide" "270" + "tall" "9" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "labelText" "#FreezePanel_Item" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + } + "spectator_extras" + { + "ControlName" "EditablePanel" + "fieldName" "spectator_extras" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + } +} diff --git a/biscottihud/resource/ui/spectator_incognito.res b/biscottihud/resource/ui/spectator_incognito.res new file mode 100644 index 0000000..bdf197a --- /dev/null +++ b/biscottihud/resource/ui/spectator_incognito.res @@ -0,0 +1,14 @@ +"Resource/UI/Spectator.res" +{ + "itempanel" + { + "ItemLabel" + { + "visible" "1" + } + } + "spectator_extras" + { + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/spectatorguihealth.res b/biscottihud/resource/ui/spectatorguihealth.res new file mode 100644 index 0000000..106540d --- /dev/null +++ b/biscottihud/resource/ui/spectatorguihealth.res @@ -0,0 +1,151 @@ +"Resource/UI/SpectatorGUIHealth.res" +{ + "PlayerStatusHealthImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthImage" + "xpos" "-27" + "ypos" "6" + "zpos" "4" + "wide" "73" + "tall" "15" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + "PlayerStatusHealthImageBG" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthImageBG" + "xpos" "6" + "ypos" "6" + "zpos" "3" + "wide" "-16" + "tall" "16" + "visible" "1" + "enabled" "1" + "image" "../hud/health_bg" + "scaleImage" "1" + } + "BuildingStatusHealthImageBG" + { + "ControlName" "ImagePanel" + "fieldName" "BuildingStatusHealthImageBG" + "xpos" "-12" + "ypos" "-8" + "zpos" "5" + "wide" "-22" + "tall" "22" + "visible" "0" + "enabled" "1" + "image" "../hud/health_equip_bg" + "scaleImage" "1" + } + "PlayerStatusHealthBonusImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthBonusImage" + "xpos" "-27" + "ypos" "0" + "zpos" "3" + "wide" "73" + "tall" "0" + "visible" "0" + "enabled" "1" + "image" "../hud/health_over_bg" + "scaleImage" "1" + "alpha" "0" + } + "HealthDarkerBG" + { + "ControlName" "ImagePanel" + "fieldName" "HealthDarkerBG" + "xpos" "0" + "ypos" "6" + "zpos" "1" + "wide" "20" + "tall" "22" + "fillcolor" "0 0 0 125" + "visible" "1" + "enabled" "1" + } + "BlackFilter" + { + "ControlName" "ImagePanel" + "fieldName" "BlackFilter" + "xpos" "0" + "ypos" "6" + "zpos" "5" + "wide" "20" + "tall" "22" + "fillcolor" "0 0 0 75" + "visible" "1" + "enabled" "1" + } + "OverhealFilter" + { + "ControlName" "CExButton" + "fieldName" "OverhealFilter" + "xpos" "0" + "ypos" "6" + "zpos" "5" + "wide" "20" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "paintbackgroundtype" "0" + "border_default" "NoBorder" + "labelText" "" + "alpha" "0" + } + "PlayerStatusHealthValue" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusHealthValue" + "xpos" "0" + "ypos" "21" + "zpos" "5" + "wide" "20" + "tall" "7" + "visible" "1" + "enabled" "1" + "labelText" "%health%" + "textAlignment" "center" + "font" "SpectatorVerySmall" + "fgcolor" "bHPSpecNorm" + } + "PlayerStatusHealthValueShadow" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusHealthValueShadow" + "xpos" "1" + "ypos" "21" + "zpos" "5" + "wide" "20" + "tall" "7" + "visible" "1" + "enabled" "1" + "labelText" "%health%" + "textAlignment" "center" + "font" "SpectatorVerySmall" + "fGcolor" "Black" + } + "PlayerStatusPlayerLevel" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusPlayerLevel" + "xpos" "8" + "xpos_minmode" "0" + "ypos" "9" + "zpos" "5" + "wide" "16" + "tall" "12" + "visible" "0" + "enabled" "1" + "textAlignment" "center" + "font" "ScoreboardVerySmall" + "fgcolor" "TFOrange" + } +} diff --git a/biscottihud/resource/ui/spectatortournament.res b/biscottihud/resource/ui/spectatortournament.res new file mode 100644 index 0000000..1e08379 --- /dev/null +++ b/biscottihud/resource/ui/spectatortournament.res @@ -0,0 +1,471 @@ +#base "spectatortournament_incognito.res" + +"Resource/UI/SpectatorTournament.res" +{ + "specgui" + { + "ControlName" "Frame" + "fieldName" "specgui" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + + "team1_player_base_offset_x" "0" + "team1_player_base_y" "50" + "team1_player_delta_x" "0" + "team1_player_delta_y" "20" + "team2_player_base_offset_x" "0" + "team2_player_base_y" "250" + "team2_player_delta_x" "0" + "team2_player_delta_y" "20" + + "playerpanels_kv" + { + "visible" "0" + "wide" "176" + "tall" "20" + "zpos" "1" + + "color_ready" "0 255 0 220" + "color_notready" "0 0 0 220" + + "playername" + { + "ControlName" "CExLabel" + "fieldName" "playername" + "font" "HudFontSmallest" + "xpos" "55" + "ypos" "0" + "zpos" "5" + "wide" "90" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "labelText" "%playername%" + "textAlignment" "west" + //"fgcolor" "235 226 202 255" + + if_mvm + { + "xpos" "0" + "ypos" "25" + "wide" "55" + "textAlignment" "center" + "font" "PlayerPanelPlayerName" + } + } + + "classimage" + { + "ControlName" "CTFClassImage" + "fieldName" "classimage" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "20" + "tall" "20" + "visible" "1" + "enabled" "1" + "image" "../hud/class_scoutred" + "scaleImage" "1" + + if_mvm + { + "xpos" "5" + "ypos" "4" + "wide" "20" + "tall" "20" + "image" "../vgui/hud_connecting" + } + } + + "classimagebg" + { + "ControlName" "Panel" + "fieldName" "classimagebg" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "20" + "tall" "20" + "visible" "1" + "enabled" "1" + "bgcolor_override" "Black" + "PaintBackgroundType" "0" + + if_mvm + { + "visible" "1" + } + } + + "HealthIcon" + { + "ControlName" "EditablePanel" + "fieldName" "HealthIcon" + "xpos" "20" + "ypos" "0" + "zpos" "3" + "wide" "32" + "tall" "20" + "visible" "1" + "enabled" "1" + "HealthBonusPosAdj" "10" + "HealthDeathWarning" "0.49" + "TFFont" "HudFontSmallest" + "HealthDeathWarningColor" "HUDDeathWarning" + "TextColor" "HudOffWhite" + } + + "ReadyBG" + { + "ControlName" "ScalableImagePanel" + "fieldName" "ReadyBG" + "xpos" "30" + "ypos" "6" + "zpos" "-1" + "wide" "16" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "image" "../HUD/tournament_panel_brown" + + "src_corner_height" "16" // pixels inside the image + "src_corner_width" "16" + + "draw_corner_width" "0" // screen size of the corners ( and sides ), proportional + "draw_corner_height" "0" + + if_mvm + { + "visible" "1" + } + } + + "ReadyImage" + { + "ControlName" "ImagePanel" + "fieldName" "ReadyImage" + "xpos" "32" + "ypos" "8" + "zpos" "0" + "wide" "12" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "image" "hud/checkmark" + "scaleImage" "1" + + if_mvm + { + "visible" "1" + } + } + + "respawntime" + { + "ControlName" "CExLabel" + "fieldName" "respawntime" + "font" "DefaultSmall" + "xpos" "141" + "ypos" "0" + "zpos" "5" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "labelText" "%respawntime%" + "textAlignment" "east" + "fgcolor" "TanLight" + + if_mvm + { + "ypos" "116" + } + } + + "chargeamount" + { + "ControlName" "CExLabel" + "fieldName" "chargeamount" + "font" "DefaultSmall" + "xpos" "141" + "ypos" "0" + "zpos" "6" + "wide" "30" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "labelText" "%chargeamount%" + "textAlignment" "east" + "fgcolor" "TanLight" + } + + "specindex" + { + "ControlName" "CExLabel" + "fieldName" "specindex" + "font" "DefaultVerySmall" + "xpos" "0" + "ypos" "0" + "zpos" "5" + "wide" "20" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "labelText" "%specindex%" + "textAlignment" "north-west" + "fgcolor" "TanLight" + } + + if_mvm + { + "wide" "55" + "tall" "35" + } + } + + if_mvm + { + "xpos" "c-250" + "ypos" "6" + "wide" "500" + "tall" "180" + + "team1_player_delta_x" "52" + } + } + + "topbar" + { + "ControlName" "Panel" + "fieldName" "TopBar" + "visible" "0" + "tall" "-33" + } + "BottomBar" + { + "ControlName" "Frame" + "fieldName" "BottomBar" + "visible" "0" + "ypos" "100" + "tall" "0" + } + "bottombarblank" + { + "ControlName" "Panel" + "fieldName" "bottombarblank" + "visible" "0" + "ypos" "480" + } + "ReinforcementsLabel" + { + "ControlName" "CExLabel" + "fieldName" "ReinforcementsLabel" + "xpos" "c-100" + "ypos" "52" + "auto_wide_tocontents" "1" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#game_respawntime_in_secs" + "textAlignment" "center" + "textinsetx" "25" + "font" "HudFontMediumSmallSecondary" + + "bgcolor_override" "bBlackBG" + + if_mvm + { + "ypos" "100" + } + } + "BuyBackLabel" + { + "ControlName" "CExLabel" + "fieldName" "BuyBackLabel" + "xpos" "c-190" + "ypos" "115" + "wide" "380" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "labelText" "#TF_PVE_Buyback" + "textAlignment" "center" + "font" "HudFontSmall" + "wrap" "1" + "centerwrap" "1" + + if_mvm + { + "visible" "1" + } + } + "MapLabel" + { + "ControlName" "CExLabel" + "fieldName" "MapLabel" + "visible" "0" + } + "ClassOrTeamLabel" + { + "ControlName" "CExLabel" + "fieldName" "ClassOrTeamLabel" + "visible" "0" + } + "SwitchCamModeKeyLabel" + { + "ControlName" "CExLabel" + "fieldName" "SwitchCamModeKeyLabel" + "visible" "0" + + } + "SwitchCamModeLabel" + { + "ControlName" "CExLabel" + "fieldName" "SwitchCamModeLabel" + "visible" "0" + } + "CycleTargetFwdKeyLabel" + { + "ControlName" "CExLabel" + "fieldName" "CycleTargetFwdKeyLabel" + "visible" "0" + } + "CycleTargetFwdLabel" + { + "ControlName" "CExLabel" + "fieldName" "CycleTargetFwdLabel" + "visible" "0" + } + "CycleTargetRevKeyLabel" + { + "ControlName" "CExLabel" + "fieldName" "CycleTargetRevKeyLabel" + "visible" "0" + } + "CycleTargetRevLabel" + { + "ControlName" "CExLabel" + "fieldName" "CycleTargetRevLabel" + "visible" "0" + } + "TipLabel" + { + "ControlName" "CExLabel" + "fieldName" "TipLabel" + "visible" "0" + } + "itempanel" + { + "ControlName" "CItemModelPanel" + "fieldName" "itempanel" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "190" + "tall" "100" + "visible" "0" + "bgcolor_override" "255 255 255 0" + "PaintBackgroundType" "0" + "PaintBorder" "0" + + "model_ypos" "10" + "model_center_x" "1" + "model_wide" "90" + "model_tall" "60" + + "text_xpos" "10" + "text_ypos" "10" + "text_wide" "170" + "text_center" "1" + + "max_text_height" "100" + "padding_height" "10" + "resize_to_text" "1" + "text_forcesize" "2" + + "itempanelBG" + { "controlname" "imagepanel" + "fieldname" "itempanelBG" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "enable" "1" + "fillcolor" "color_panel_brown" + } + + "itemmodelpanel" + { + "fieldName" "itemmodelpanel" + "use_item_rendertarget" "0" + "useparentbg" "1" + } + + "ItemLabel" + { + "ControlName" "Label" + "fieldName" "ItemLabel" + "font" "DefaultSmall" + "xpos" "10" + "ypos" "3" + "zpos" "1" + "wide" "270" + "tall" "9" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "labelText" "#FreezePanel_Item" + "textAlignment" "Left" + "dulltext" "0" + "brighttext" "0" + } + + "attriblabel" + { + "ControlName" "CExLabel" + "fieldName" "attriblabel" + "font" "ItemFontAttribLarge" + "xpos" "0" + "ypos" "30" + "zpos" "2" + "wide" "140" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + "labelText" "%attriblist%" + "textAlignment" "south" + "fgcolor" "235 226 202 255" + "centerwrap" "1" + } + } + "spectator_extras" + { + "ControlName" "EditablePanel" + "fieldName" "spectator_extras" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "autoResize" "0" + "pinCorner" "0" + "enabled" "1" + } +} diff --git a/biscottihud/resource/ui/spectatortournament_incognito.res b/biscottihud/resource/ui/spectatortournament_incognito.res new file mode 100644 index 0000000..b13425e --- /dev/null +++ b/biscottihud/resource/ui/spectatortournament_incognito.res @@ -0,0 +1,28 @@ +"Resource/UI/SpectatorTournament.res" +{ + "specgui" + { + "playerpanels_kv" + { + "playername" + { + "visible" "1" + } + } + } + "itempanel" + { + "ItemLabel" + { + "visible" "1" + } + "attriblabel" + { + "visible" "1" + } + } + "spectator_extras" + { + "visible" "1" + } +} diff --git a/biscottihud/resource/ui/spectatortournamentguihealth.res b/biscottihud/resource/ui/spectatortournamentguihealth.res new file mode 100644 index 0000000..40dbec5 --- /dev/null +++ b/biscottihud/resource/ui/spectatortournamentguihealth.res @@ -0,0 +1,134 @@ +"Resource/UI/SpectatorTournamentGUIHealth.res" +{ + "PlayerStatusHealthImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthImage" + "xpos" "-46" + "ypos" "0" + "zpos" "4" + "wide" "124" + "tall" "20" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + } + "PlayerStatusHealthImageBG" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthImageBG" + "xpos" "6" + "ypos" "6" + "zpos" "3" + "wide" "-16" + "tall" "16" + "visible" "1" + "enabled" "1" + "image" "../hud/health_bg" + "scaleImage" "1" + } + "BuildingStatusHealthImageBG" + { + "ControlName" "ImagePanel" + "fieldName" "BuildingStatusHealthImageBG" + "xpos" "2" + "ypos" "3" + "zpos" "2" + "wide" "22" + "tall" "22" + "visible" "0" + "enabled" "1" + "image" "../hud/health_equip_bg" + "scaleImage" "1" + } + "PlayerStatusHealthBonusImage" + { + "ControlName" "ImagePanel" + "fieldName" "PlayerStatusHealthBonusImage" + "xpos" "8" + "ypos" "8" + "zpos" "3" + "wide" "-12" + "tall" "-12" + "visible" "0" + "enabled" "1" + "image" "../hud/health_over_bg" + "scaleImage" "0" + } + "HealthDarkerBG" + { + "ControlName" "ImagePanel" + "fieldName" "HealthDarkerBG" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "32" + "tall" "20" + "fillcolor" "0 0 0 125" + "visible" "1" + "enabled" "1" + } + "BlackFilter" + { + "ControlName" "ImagePanel" + "fieldName" "BlackFilter" + "xpos" "0" + "ypos" "0" + "zpos" "5" + "wide" "32" + "tall" "20" + "fillcolor" "0 0 0 155" + "visible" "1" + "enabled" "1" + } + "OverhealFilter" + { + "ControlName" "CExButton" + "fieldName" "OverhealFilter" + "xpos" "0" + "ypos" "0" + "zpos" "5" + "wide" "32" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "paintbackgroundtype" "0" + "border_default" "NoBorder" + "labelText" "" + "alpha" "0" + } + "PlayerStatusHealthValue" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusHealthValueNULL" // "NULL" to prevent animation of text + "xpos" "0" + "ypos" "0" + "zpos" "6" + "wide" "32" + "tall" "20" + "visible" "1" + "enabled" "1" + "labelText" "%health%" + "textAlignment" "center" + "font" "HudFontSmallBold" + "fgcolor" "bHPSpecNorm" + } + "PlayerStatusHealthValueSelfShadow" + { + "ControlName" "CExLabel" + "fieldName" "PlayerStatusHealthValueSelfShadow" + "xpos" "1" + "ypos" "0" + "zpos" "6" + "wide" "32" + "tall" "20" + "visible" "1" + "enabled" "1" + "labelText" "%Health%" + "textAlignment" "center" + "font" "HudFontSmallBold" + "fgcolor" "Black" + } +} diff --git a/biscottihud/resource/ui/statsummary.res b/biscottihud/resource/ui/statsummary.res new file mode 100644 index 0000000..af5eb6c --- /dev/null +++ b/biscottihud/resource/ui/statsummary.res @@ -0,0 +1,2755 @@ +"Resource/UI/winpanel.res" +{ + "TFStatsSummary" + { + "ControlName" "EditablePanel" + "fieldName" "TFStatsSummary" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + } + + "MainBackground" + { + "ControlName" "ImagePanel" + "fieldName" "MainBackground" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "MapInfo" + { + "ControlName" "EditablePanel" + "fieldName" "MapInfo" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + "bgcolor_override" "46 43 42 255" + + "Background" + { + "ControlName" "ImagePanel" + "fieldName" "Background" + "xpos" "0" + "ypos" "0" + "wide" "640" + "tall" "480" + "visible" "1" + "enabled" "1" + "image" "stamp_background_map" + "scaleImage" "1" + } + + "MapImage" + { + "ControlName" "ImagePanel" + "fieldName" "MapImage" + "xpos" "30" + "ypos" "45" + "zpos" "2" + "wide" "300" + "tall" "300" + "visible" "1" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + + "ContributedLabel" + { + "ControlName" "EditablePanel" + "fieldName" "ContributedLabel" + "xpos" "30" + "ypos" "345" + "zpos" "40" + "wide" "300" + "tall" "100" + "visible" "0" + "enabled" "1" + + "BG" + { + "ControlName" "EditablePanel" + "fieldName" "BG" + "xpos" "0" + "ypos" "0" + "wide" "300" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "NoBorder" // TFThinLineBorder + "paintbackground" "1" + "bgcolor_override" "0 0 0 175" + } + + "ActualLabel" + { + "ControlName" "CExLabel" + "fieldName" "ActualLabel" + "font" "HudFontSmallBold" + "labelText" "#TF_Contributed" + "textAlignment" "center" + "xpos" "10" + "ypos" "0" + "zpos" "40" + "wide" "280" + "tall" "55" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "centerwrap" "1" + "wrap" "1" + } + } + + "InfoBG" + { + "ControlName" "EditablePanel" + "fieldName" "InfoBG" + "xpos" "c+10" + "ypos" "120" + "wide" "285" + "tall" "280" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "NoBorder" + "bgcolor_override" "0 0 0 175" + "paintbackground" "1" + } + + "Title" + { + "ControlName" "CExLabel" + "fieldName" "Title" + "font" "HudFontSmallBold" + "labelText" "%title%" + "textAlignment" "north" + "xpos" "c20" + "ypos" "135" + "zpos" "2" + "wide" "275" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "255 181 50 255" + } + "MapAuthors" + { + "ControlName" "CExLabel" + "fieldName" "MapAuthors" + "font" "HudFontSmallBold" + "labelText" "%authors%" + "textAlignment" "north" + "xpos" "c20" + "ypos" "155" + "zpos" "2" + "wide" "275" + "tall" "275" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "0" + } + + "MapLeaderboardTitle" + { + "ControlName" "CExLabel" + "fieldName" "MapLeaderboardTitle" + "font" "HudFontSmallBold" + "labelText" "%map_leaderboard_title%" + "textAlignment" "north" + "xpos" "c20" + "ypos" "230" + "zpos" "2" + "wide" "275" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "137 191 60 255" + } + } + + "OnYourWayLabel" + { + "ControlName" "CExLabel" + "fieldName" "OnYourWayLabel" + "font" "HudFontSmallBold" + "labelText" "#LoadingMap" + "textAlignment" "center" + "xpos" "c+10" + "ypos" "30" + "zpos" "40" + "wide" "285" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "173 168 148 255" + } + "MapLabel" + { + "ControlName" "CExLabel" + "fieldName" "MapLabel" + "font" "HudFontMediumBigBold" + "labelText" "%maplabel%" + "textAlignment" "center" + "xpos" "c-25" + "ypos" "55" + "zpos" "50" + "wide" "350" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "MapType" + { + "ControlName" "CExLabel" + "fieldName" "MapType" + "font" "HudFontSmallBold" + "labelText" "%maptype%" + "textAlignment" "center" + "xpos" "c-25" + "ypos" "80" + "zpos" "50" + "wide" "350" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "StatData" + { + "ControlName" "EditablePanel" + "fieldName" "StatData" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + + "NonInteractiveHeaders" + { + "ControlName" "EditablePanel" + "fieldName" "NonInteractiveHeaders" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + + "BarChartLabelA" + { + "ControlName" "Label" + "fieldName" "BarChartLabelA" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "#StatSummary_StatTitle_MostPoints" + "textAlignment" "east" + "xpos" "c-282" + "xpos_hidef" "c-210" + "xpos_lodef" "c-210" + "ypos" "212" + "ypos_hidef" "49" + "ypos_lodef" "49" + "zpos" "5" + "wide" "150" [$WIN32] + "wide" "170" [$X360] + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BarChartLabelB" + { + "ControlName" "Label" + "fieldName" "BarChartLabelB" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "#StatSummary_StatTitle_TotalPlaytime" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "212" + "ypos_hidef" "49" + "ypos_lodef" "49" + "zpos" "5" + "wide" "150" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecordLabel" + { + "ControlName" "Label" + "fieldName" "OverallRecordLabel" + "font" "ScoreboardVerySmall" + "labelText" "#StatSummary_Label_AsAnyClass" + "textAlignment" "west" + "xpos" "c+130" + "xpos_hidef" "c+110" + "ypos" "200" + "ypos_hidef" "150" + "zpos" "5" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "visible_hidef" "0" + "visible_lodef" "0" + "enabled" "1" + "enabled_hidef" "0" + "enabled_lodef" "0" + } + } + "InteractiveHeaders" + { + "ControlName" "EditablePanel" + "fieldName" "InteractiveHeaders" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + + "BarChartComboA" + { + "ControlName" "ComboBox" + "fieldName" "BarChartComboA" + "xpos" "c-285" + "ypos" "212" + "zpos" "10" + "wide" "154" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "BarChartComboB" + { + "ControlName" "ComboBox" + "fieldName" "BarChartComboB" + "xpos" "c-127" + "ypos" "212" + "zpos" "10" + "wide" "154" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "ClassCombo" + { + "ControlName" "ComboBox" + "fieldName" "ClassCombo" + "xpos" "c+124" + "ypos" "200" + "zpos" "10" + "wide" "167" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + } + "AveragesBG" + { + "ControlName" "EditablePanel" + "fieldName" "AveragesBG" + "xpos" "c-295" + "xpos_hidef" "c-283" + "xpos_lodef" "c-283" + "ypos" "165" + "ypos_hidef" "22" + "ypos_lodef" "22" + "wide" "406" + "wide_hidef" "566" + "wide_lodef" "566" + "tall" "300" + "tall_hidef" "633" + "tall_lodef" "633" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "NoBorder" + "bgcolor_override" "0 0 0 175" + "paintbackground" "1" + } + "AveragesLabel" + { + "ControlName" "Label" + "fieldName" "AveragesLabel" + "font" "ScoreboardMedium" + "labelText" "#StatSummary_Label_PerformanceReport" + "textAlignment" "west" + "textAlignment_hidef" "center" + "textAlignment_lodef" "center" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "170" [!$OSX] + "ypos" "185" [$OSX] + "ypos_hidef" "32" + "ypos_lodef" "32" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG1A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG1A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "230" + "ypos_hidef" "67" + "ypos_lodef" "67" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG1B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG1B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "230" + "ypos_hidef" "67" + "ypos_lodef" "67" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar1A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar1A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "232" + "ypos_hidef" "69" + "ypos_lodef" "69" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "162 148 135 255" + "PaintBackgroundType" "0" + } + "ClassBar1B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar1B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "232" + "ypos_hidef" "69" + "ypos_lodef" "69" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "162 148 135 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel1A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel1A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel1A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "228" + "ypos_hidef" "65" + "ypos_lodef" "65" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel1B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel1B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel1B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "228" + "ypos_hidef" "65" + "ypos_lodef" "65" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel1" + { + "ControlName" "Label" + "fieldName" "ClassLabel1" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class1%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "228" + "ypos_hidef" "65" + "ypos_lodef" "65" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG2A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG2A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "248" + "ypos_hidef" "85" + "ypos_lodef" "85" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG2B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG2B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "248" + "ypos_hidef" "85" + "ypos_lodef" "85" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar2A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar2A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "250" + "ypos_hidef" "87" + "ypos_lodef" "87" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "93 60 27 255" + "PaintBackgroundType" "0" + } + "ClassBar2B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar2B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "250" + "ypos_hidef" "87" + "ypos_lodef" "87" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "93 60 27 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel2A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel2A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel2A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "246" + "ypos_hidef" "83" + "ypos_lodef" "83" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel2B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel2B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel2B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "246" + "ypos_hidef" "83" + "ypos_lodef" "83" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel2" + { + "ControlName" "Label" + "fieldName" "ClassLabel2" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class2%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "246" + "ypos_hidef" "83" + "ypos_lodef" "83" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG3A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG3A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "266" + "ypos_hidef" "103" + "ypos_lodef" "103" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG3B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG3B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "266" + "ypos_hidef" "103" + "ypos_lodef" "103" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar3A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar3A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "268" + "ypos_hidef" "105" + "ypos_lodef" "105" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "134 93 39 255" + "PaintBackgroundType" "0" + } + "ClassBar3B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar3B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "268" + "ypos_hidef" "105" + "ypos_lodef" "105" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "134 93 39 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel3A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel3A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel3A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "264" + "ypos_hidef" "101" + "ypos_lodef" "101" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel3B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel3B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel3B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "264" + "ypos_hidef" "101" + "ypos_lodef" "101" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel3" + { + "ControlName" "Label" + "fieldName" "ClassLabel3" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class3%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "264" + "ypos_hidef" "101" + "ypos_lodef" "101" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG4A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG4A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "284" + "ypos_hidef" "121" + "ypos_lodef" "121" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG4B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG4B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "284" + "ypos_hidef" "121" + "ypos_lodef" "121" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar4A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar4A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "286" + "ypos_hidef" "123" + "ypos_lodef" "123" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "207 147 95 255" + "PaintBackgroundType" "0" + } + "ClassBar4B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar4B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "286" + "ypos_hidef" "123" + "ypos_lodef" "123" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "207 147 95 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel4A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel4A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel4A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "282" + "ypos_hidef" "119" + "ypos_lodef" "119" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel4B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel4B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel4B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "282" + "ypos_hidef" "119" + "ypos_lodef" "119" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel4" + { + "ControlName" "Label" + "fieldName" "ClassLabel4" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class4%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "282" + "ypos_hidef" "119" + "ypos_lodef" "119" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG5A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG5A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "302" + "ypos_hidef" "139" + "ypos_lodef" "139" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG5B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG5B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "302" + "ypos_hidef" "139" + "ypos_lodef" "139" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar5A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar5A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "304" + "ypos_hidef" "141" + "ypos_lodef" "141" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "226 184 146 255" + "PaintBackgroundType" "0" + } + "ClassBar5B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar5B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "304" + "ypos_hidef" "141" + "ypos_lodef" "141" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "226 184 146 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel5A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel5A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel5A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "300" + "ypos_hidef" "137" + "ypos_lodef" "137" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel5B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel5B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel5B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "300" + "ypos_hidef" "137" + "ypos_lodef" "137" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel5" + { + "ControlName" "Label" + "fieldName" "ClassLabel5" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class5%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "300" + "ypos_hidef" "137" + "ypos_lodef" "137" + "zpos" "5" + "wide" "282" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG6A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG6A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "320" + "ypos_hidef" "157" + "ypos_lodef" "157" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG6B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG6B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "320" + "ypos_hidef" "157" + "ypos_lodef" "157" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar6A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar6A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "322" + "ypos_hidef" "159" + "ypos_lodef" "159" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "162 148 135 255" + "PaintBackgroundType" "0" + } + "ClassBar6B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar6B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "322" + "ypos_hidef" "159" + "ypos_lodef" "159" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "162 148 135 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel6A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel6A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel6A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "318" + "ypos_hidef" "155" + "ypos_lodef" "155" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel6B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel6B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel6B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "318" + "ypos_hidef" "155" + "ypos_lodef" "155" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel6" + { + "ControlName" "Label" + "fieldName" "ClassLabel6" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class6%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "318" + "ypos_hidef" "155" + "ypos_lodef" "155" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG7A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG7A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "338" + "ypos_hidef" "175" + "ypos_lodef" "175" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG7B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG7B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "338" + "ypos_hidef" "175" + "ypos_lodef" "175" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar7A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar7A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "340" + "ypos_hidef" "177" + "ypos_lodef" "177" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "93 60 27 255" + "PaintBackgroundType" "0" + } + "ClassBar7B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar7B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "340" + "ypos_hidef" "177" + "ypos_lodef" "177" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "93 60 27 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel7A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel7A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel7A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "336" + "ypos_hidef" "173" + "ypos_lodef" "173" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel7B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel7B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel7B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "336" + "ypos_hidef" "173" + "ypos_lodef" "173" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel7" + { + "ControlName" "Label" + "fieldName" "ClassLabel7" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class7%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "336" + "ypos_hidef" "173" + "ypos_lodef" "173" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG8A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG8A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "356" + "ypos_hidef" "193" + "ypos_lodef" "193" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG8B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG8B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "356" + "ypos_hidef" "193" + "ypos_lodef" "193" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar8A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar8A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "358" + "ypos_hidef" "195" + "ypos_lodef" "195" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "134 93 39 255" + "PaintBackgroundType" "0" + } + "ClassBar8B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar8B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "358" + "ypos_hidef" "195" + "ypos_lodef" "195" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "134 93 39 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel8A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel8A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel8A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "354" + "ypos_hidef" "191" + "ypos_lodef" "191" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel8B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel8B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel8B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "354" + "ypos_hidef" "191" + "ypos_lodef" "191" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel8" + { + "ControlName" "Label" + "fieldName" "ClassLabel8" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class8%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "354" + "ypos_hidef" "191" + "ypos_lodef" "191" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG9A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG9A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "374" + "ypos_hidef" "211" + "ypos_lodef" "211" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG9B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG9B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "374" + "ypos_hidef" "211" + "ypos_lodef" "211" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar9A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar9A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "376" + "ypos_hidef" "213" + "ypos_lodef" "213" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "207 147 95 255" + "PaintBackgroundType" "0" + } + "ClassBar9B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar9B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "376" + "ypos_hidef" "213" + "ypos_lodef" "213" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "207 147 95 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel9A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel9A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel9A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "372" + "ypos_hidef" "209" + "ypos_lodef" "209" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel9B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel9B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel9B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "372" + "ypos_hidef" "209" + "ypos_lodef" "209" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel9" + { + "ControlName" "Label" + "fieldName" "ClassLabel9" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class9%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "372" + "ypos_hidef" "209" + "ypos_lodef" "209" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RecordsBG" + { + "ControlName" "EditablePanel" + "fieldName" "RecordsBG" + "xpos" "c+115" + "xpos_hidef" "c+95" + "ypos" "165" + "ypos_hidef" "115" + "wide" "200" + "wide_hidef" "225" + "tall" "260" + "tall_hidef" "633" + "tall_lodef" "633" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "visible_hidef" "0" + "visible_lodef" "0" + "enabled" "1" + "enabled_hidef" "0" + "enabled_lodef" "0" + "border" "NoBorder" + "bgcolor_override" "0 0 0 175" + } + "RecordsLabel1" + { + "ControlName" "Label" + "fieldName" "RecordsLabel1" + "font" "ScoreboardMediumSmall" + "labelText" "#StatSummary_Label_BestMoments" + "textAlignment" "west" + "xpos" "c+124" + "ypos" "170" [!$OSX] + "ypos" "180" [$OSX] + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" [$WIN32] + "visible" "0" [$X360] + "enabled" "1" + } + "RecordsSubBG1" + { + "ControlName" "ImagePanel" + "fieldName" "RecordsSubBG1" + "xpos" "c+124" + "xpos_hidef" "c-270" + "xpos_lodef" "c-270" + "ypos" "217" + "ypos_hidef" "229" + "ypos_lodef" "229" + "zpos" "2" + "wide" "167" + "wide_hidef" "540" + "wide_lodef" "540" + "tall" "157" + "tall_hidef" "183" + "tall_lodef" "183" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "RecordsLabel" + { + "ControlName" "Label" + "fieldName" "RecordsLabel" + "font" "ScoreboardMedium" + "labelText" "#StatSummary_Records" + "textAlignment" "west" + "xpos" "c-265" + "ypos" "232" + "zpos" "5" + "wide" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" [$WIN32] + "visible" "1" [$X360] + "enabled" "1" + } + "OverallRecord1Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord1Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord1label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "214" + "ypos_hidef" "246" + "ypos_lodef" "246" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord1Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord1Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord1value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "214" + "ypos_hidef" "246" + "ypos_lodef" "246" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord2Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord2Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord2label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "224" + "ypos_hidef" "258" + "ypos_lodef" "258" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord2Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord2Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord2value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "224" + "ypos_hidef" "258" + "ypos_lodef" "258" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord3Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord3Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord3label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "234" + "ypos_hidef" "270" + "ypos_lodef" "270" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord3Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord3Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord3value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "234" + "ypos_hidef" "270" + "ypos_lodef" "270" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord4Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord4Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord4label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "244" + "ypos_hidef" "282" + "ypos_lodef" "282" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord4Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord4Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord4value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "244" + "ypos_hidef" "282" + "ypos_lodef" "282" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord5Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord5Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord5label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "254" + "ypos_hidef" "294" + "ypos_lodef" "294" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord5Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord5Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord5value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "254" + "ypos_hidef" "294" + "ypos_lodef" "294" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord6Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord6Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord6label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "264" + "ypos_hidef" "306" + "ypos_lodef" "306" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord6Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord6Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord6value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "264" + "ypos_hidef" "306" + "ypos_lodef" "306" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord7Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord7Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord7label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "274" + "ypos_hidef" "318" + "ypos_lodef" "318" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord7Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord7Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord7value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "274" + "ypos_hidef" "318" + "ypos_lodef" "318" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord8Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord8Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord8label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "284" + "ypos_hidef" "330" + "ypos_lodef" "330" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord8Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord8Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord8value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "284" + "ypos_hidef" "330" + "ypos_lodef" "330" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord9Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord9Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord9label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "294" + "ypos_hidef" "246" + "ypos_lodef" "246" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord9Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord9Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord9value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+148" + "xpos_lodef" "c+148" + "ypos" "294" + "ypos_hidef" "246" + "ypos_lodef" "246" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord10Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord10Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord10label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "304" + "ypos_hidef" "258" + "ypos_lodef" "258" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord10Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord10Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord10value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "304" + "ypos_hidef" "258" + "ypos_lodef" "258" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord11Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord11Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord11label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "314" + "ypos_hidef" "270" + "ypos_lodef" "270" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord11Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord11Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord11value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "314" + "ypos_hidef" "270" + "ypos_lodef" "270" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord12Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord12Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord12label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "324" + "ypos_hidef" "282" + "ypos_lodef" "282" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord12Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord12Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord12value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "324" + "ypos_hidef" "282" + "ypos_lodef" "282" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord13Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord13Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord13label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "334" + "ypos_hidef" "294" + "ypos_lodef" "294" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord13Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord13Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord13value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "334" + "ypos_hidef" "294" + "ypos_lodef" "294" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord14Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord14Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord14label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "344" + "ypos_hidef" "306" + "ypos_lodef" "306" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord14Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord14Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord14value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "344" + "ypos_hidef" "306" + "ypos_lodef" "306" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord15Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord15Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord15label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "354" + "ypos_hidef" "318" + "ypos_lodef" "318" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord15Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord15Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord15value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "354" + "ypos_hidef" "318" + "ypos_lodef" "318" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + "TipImage" + { + "ControlName" "CTFImagePanel" + "fieldName" "TipImage" + "xpos" "c-285" + "ypos" "412" + "zpos" "12" + "wide" "35" + "tall" "35" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "TipText" + { + "ControlName" "Label" + "fieldName" "TipText" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%tiptext%" + "textAlignment" "west" + "textAlignment_hidef" "north-west" + "textAlignment_lodef" "north-west" + "xpos" "c-245" + "xpos_lodef" "c-180" + "xpos_hidef" "c-180" + "ypos" "405" + "ypos_hidef" "362" + "ypos_lodef" "362" + "zpos" "12" + "wide" "350" + "wide_hidef" "360" + "wide_lodef" "360" + "tall" "48" + "tall_hidef" "60" + "tall_lodef" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + } + "NextTipButton" [$WIN32] + { + "ControlName" "Button" + "fieldName" "NextTipButton" + "xpos" "c-248" + "ypos" "310" + "zpos" "6" + "wide" "90" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_NextTip" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "nexttip" + } + "ResetStatsButton" [$WIN32] + { + "ControlName" "Button" + "fieldName" "ResetStatsButton" + "xpos" "c130" + "ypos" "270" + "zpos" "6" + "wide" "150" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ResetStats" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "resetstatsbutton" + } + "CloseButton" [$WIN32] + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "r190" + "ypos" "r50" + "zpos" "6" + "wide" "150" + "tall" "30" + "autoResize" "0" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_Close" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "vguicancel" + } + "Footer" [$X360] + { + "ControlName" "CTFFooter" + "fieldName" "Footer" + "bgcolor" "TanDarker" + "paintbackground" "1" + "tall" "100" + "tall_lodef" "60" + "center" "1" + "buttonoffsety" "20" + "buttonoffsety_lodef" "5" + "button_separator" "10" + "button_separator_lodef" "2" + "fonttext" "MatchmakingDialogMenuLarge" + "fonttext_lodef" "MatchmakingDialogMenuSmall" + "buttongap" "50" + "textadjust" "3" + "textadjust_lodef" "0" + "zpos" "6" + "fgcolor" "HudOffWhite" + + "button" + { + "name" "back" + "text" "#GameUI_Back" + "icon" "#GameUI_Icons_B_BUTTON" + } + + "button" + { + "name" "nexttip" + "text" "#TF_NextTip_360" + "icon" "#GameUI_Icons_A_BUTTON" + } + } + "TitleBanner" [$X360] + { + "ControlName" "ImagePanel" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "128" + "image" "menu_header" + "visible_lodef" "0" + "enabled_lodef" "0" + } +} diff --git a/biscottihud/resource/ui/statsummary_embedded.res b/biscottihud/resource/ui/statsummary_embedded.res new file mode 100644 index 0000000..c8d5233 --- /dev/null +++ b/biscottihud/resource/ui/statsummary_embedded.res @@ -0,0 +1,2592 @@ +#base "statsummary_embedded_colour.res" + +"Resource/UI/winpanel.res" +{ + "TFStatsSummary" + { + "ControlName" "EditablePanel" + "fieldName" "TFStatsSummary" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + } + "MainBackground" + { + "ControlName" "ImagePanel" + "fieldName" "MainBackground" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "480" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "OnYourWayLabel" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "OnYourWayLabel" + "font" "HudFontMediumBold" + "labelText" "#LoadingMap" + "textAlignment" "center" + "xpos" "0" + "ypos" "50" + "zpos" "50" + "wide" "360" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "MapLabel" + { + "ControlName" "CExLabel" + "fieldName" "MapLabel" + "font" "HudFontMediumBigBold" [$WIN32] + "font" "HudFontMediumBold" [$X360] + "labelText" "%maplabel%" + "textAlignment" "center" [$WIN32] + "textAlignment" "west" [$X360] + "xpos" "5" [$WIN32] + "xpos" "60" [$X360] + "ypos" "92" + "ypos_hidef" "425" + "ypos_lodef" "425" + "zpos" "50" + "wide" "350" [$WIN32] + "wide" "600" [$X360] + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "MapType" [$WIN32] + { + "ControlName" "CExLabel" + "fieldName" "MapType" + "font" "HudFontMediumBigBold" + "labelText" "%maptype%" + "textAlignment" "center" + "xpos" "5" + "ypos" "117" + "zpos" "50" + "wide" "350" + "tall" "35" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + } + "StatData" + { + "ControlName" "EditablePanel" + "fieldName" "StatData" + "xpos" "0" + "ypos" "-130" + "zpos" "1" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + + "NonInteractiveHeaders" + { + "ControlName" "EditablePanel" + "fieldName" "NonInteractiveHeaders" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + + "BarChartLabelA" + { + "ControlName" "Label" + "fieldName" "BarChartLabelA" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "#StatSummary_StatTitle_MostPoints" + "textAlignment" "east" + "xpos" "c-282" + "xpos_hidef" "c-210" + "xpos_lodef" "c-210" + "ypos" "212" + "ypos_hidef" "49" + "ypos_lodef" "49" + "zpos" "5" + "wide" "150" [!$X360] + "wide" "170" [$X360] + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "BarChartLabelB" + { + "ControlName" "Label" + "fieldName" "BarChartLabelB" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "#StatSummary_StatTitle_TotalPlaytime" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "212" + "ypos_hidef" "49" + "ypos_lodef" "49" + "zpos" "5" + "wide" "150" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecordLabel" + { + "ControlName" "Label" + "fieldName" "OverallRecordLabel" + "font" "ScoreboardVerySmall" + "labelText" "#StatSummary_Label_AsAnyClass" + "textAlignment" "west" + "xpos" "c+130" + "xpos_hidef" "c+110" + "ypos" "200" + "ypos_hidef" "150" + "zpos" "5" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "visible_hidef" "0" + "visible_lodef" "0" + "enabled" "1" + "enabled_hidef" "0" + "enabled_lodef" "0" + } + } + "InteractiveHeaders" + { + "ControlName" "EditablePanel" + "fieldName" "InteractiveHeaders" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "f0" + "tall" "480" + "visible" "1" + "enabled" "1" + + "BarChartComboA" + { + "ControlName" "ComboBox" + "fieldName" "BarChartComboA" + "xpos" "c-285" + "ypos" "212" + "zpos" "10" + "wide" "154" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "BarChartComboB" + { + "ControlName" "ComboBox" + "fieldName" "BarChartComboB" + "xpos" "c-127" + "ypos" "212" + "zpos" "10" + "wide" "154" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "ClassCombo" + { + "ControlName" "ComboBox" + "fieldName" "ClassCombo" + "xpos" "c+124" + "ypos" "200" + "zpos" "10" + "wide" "167" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + } + "AveragesBG" + { + "ControlName" "EditablePanel" + "fieldName" "AveragesBG" + "xpos" "c-295" + "xpos_hidef" "c-283" + "xpos_lodef" "c-283" + "ypos" "165" + "ypos_hidef" "22" + "ypos_lodef" "22" + "wide" "406" + "wide_hidef" "566" + "wide_lodef" "566" + "tall" "300" + "tall_hidef" "633" + "tall_lodef" "633" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "border" "NoBorder" // TFThinLineBorder + "bgcolor_override" "0 0 0 175" + } + "AveragesLabel" + { + "ControlName" "Label" + "fieldName" "AveragesLabel" + "font" "ScoreboardMedium" + "labelText" "#StatSummary_Label_PerformanceReport" + "textAlignment" "west" + "textAlignment_hidef" "center" + "textAlignment_lodef" "center" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "170" [!$OSX] + "ypos" "185" [$OSX] + "ypos_hidef" "32" + "ypos_lodef" "32" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG1A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG1A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "230" + "ypos_hidef" "67" + "ypos_lodef" "67" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG1B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG1B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "230" + "ypos_hidef" "67" + "ypos_lodef" "67" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar1A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar1A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "232" + "ypos_hidef" "69" + "ypos_lodef" "69" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "162 148 135 255" + "PaintBackgroundType" "0" + } + "ClassBar1B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar1B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "232" + "ypos_hidef" "69" + "ypos_lodef" "69" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "162 148 135 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel1A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel1A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel1A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "228" + "ypos_hidef" "65" + "ypos_lodef" "65" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel1B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel1B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel1B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "228" + "ypos_hidef" "65" + "ypos_lodef" "65" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel1" + { + "ControlName" "Label" + "fieldName" "ClassLabel1" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class1%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "228" + "ypos_hidef" "65" + "ypos_lodef" "65" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG2A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG2A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "248" + "ypos_hidef" "85" + "ypos_lodef" "85" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG2B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG2B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "248" + "ypos_hidef" "85" + "ypos_lodef" "85" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar2A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar2A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "250" + "ypos_hidef" "87" + "ypos_lodef" "87" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "93 60 27 255" + "PaintBackgroundType" "0" + } + "ClassBar2B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar2B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "250" + "ypos_hidef" "87" + "ypos_lodef" "87" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "93 60 27 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel2A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel2A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel2A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "246" + "ypos_hidef" "83" + "ypos_lodef" "83" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel2B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel2B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel2B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "246" + "ypos_hidef" "83" + "ypos_lodef" "83" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel2" + { + "ControlName" "Label" + "fieldName" "ClassLabel2" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class2%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "246" + "ypos_hidef" "83" + "ypos_lodef" "83" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG3A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG3A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "266" + "ypos_hidef" "103" + "ypos_lodef" "103" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG3B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG3B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "266" + "ypos_hidef" "103" + "ypos_lodef" "103" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar3A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar3A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "268" + "ypos_hidef" "105" + "ypos_lodef" "105" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "134 93 39 255" + "PaintBackgroundType" "0" + } + "ClassBar3B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar3B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "268" + "ypos_hidef" "105" + "ypos_lodef" "105" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "134 93 39 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel3A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel3A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel3A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "264" + "ypos_hidef" "101" + "ypos_lodef" "101" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel3B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel3B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel3B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "264" + "ypos_hidef" "101" + "ypos_lodef" "101" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel3" + { + "ControlName" "Label" + "fieldName" "ClassLabel3" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class3%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "264" + "ypos_hidef" "101" + "ypos_lodef" "101" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG4A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG4A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "284" + "ypos_hidef" "121" + "ypos_lodef" "121" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG4B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG4B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "284" + "ypos_hidef" "121" + "ypos_lodef" "121" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar4A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar4A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "286" + "ypos_hidef" "123" + "ypos_lodef" "123" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "207 147 95 255" + "PaintBackgroundType" "0" + } + "ClassBar4B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar4B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "286" + "ypos_hidef" "123" + "ypos_lodef" "123" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "207 147 95 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel4A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel4A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel4A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "282" + "ypos_hidef" "119" + "ypos_lodef" "119" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel4B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel4B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel4B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "282" + "ypos_hidef" "119" + "ypos_lodef" "119" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel4" + { + "ControlName" "Label" + "fieldName" "ClassLabel4" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class4%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "282" + "ypos_hidef" "119" + "ypos_lodef" "119" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG5A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG5A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "302" + "ypos_hidef" "139" + "ypos_lodef" "139" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG5B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG5B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "302" + "ypos_hidef" "139" + "ypos_lodef" "139" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar5A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar5A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "304" + "ypos_hidef" "141" + "ypos_lodef" "141" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "226 184 146 255" + "PaintBackgroundType" "0" + } + "ClassBar5B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar5B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "304" + "ypos_hidef" "141" + "ypos_lodef" "141" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "226 184 146 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel5A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel5A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel5A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "300" + "ypos_hidef" "137" + "ypos_lodef" "137" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel5B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel5B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel5B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "300" + "ypos_hidef" "137" + "ypos_lodef" "137" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel5" + { + "ControlName" "Label" + "fieldName" "ClassLabel5" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class5%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "300" + "ypos_hidef" "137" + "ypos_lodef" "137" + "zpos" "5" + "wide" "282" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG6A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG6A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "320" + "ypos_hidef" "157" + "ypos_lodef" "157" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG6B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG6B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "320" + "ypos_hidef" "157" + "ypos_lodef" "157" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar6A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar6A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "322" + "ypos_hidef" "159" + "ypos_lodef" "159" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "162 148 135 255" + "PaintBackgroundType" "0" + } + "ClassBar6B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar6B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "322" + "ypos_hidef" "159" + "ypos_lodef" "159" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "162 148 135 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel6A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel6A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel6A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "318" + "ypos_hidef" "155" + "ypos_lodef" "155" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel6B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel6B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel6B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "318" + "ypos_hidef" "155" + "ypos_lodef" "155" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel6" + { + "ControlName" "Label" + "fieldName" "ClassLabel6" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class6%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "318" + "ypos_hidef" "155" + "ypos_lodef" "155" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG7A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG7A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "338" + "ypos_hidef" "175" + "ypos_lodef" "175" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG7B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG7B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "338" + "ypos_hidef" "175" + "ypos_lodef" "175" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar7A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar7A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "340" + "ypos_hidef" "177" + "ypos_lodef" "177" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "93 60 27 255" + "PaintBackgroundType" "0" + } + "ClassBar7B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar7B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "340" + "ypos_hidef" "177" + "ypos_lodef" "177" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "93 60 27 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel7A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel7A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel7A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "336" + "ypos_hidef" "173" + "ypos_lodef" "173" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel7B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel7B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel7B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "336" + "ypos_hidef" "173" + "ypos_lodef" "173" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel7" + { + "ControlName" "Label" + "fieldName" "ClassLabel7" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class7%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "336" + "ypos_hidef" "173" + "ypos_lodef" "173" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG8A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG8A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "356" + "ypos_hidef" "193" + "ypos_lodef" "193" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG8B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG8B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "356" + "ypos_hidef" "193" + "ypos_lodef" "193" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar8A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar8A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "358" + "ypos_hidef" "195" + "ypos_lodef" "195" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "134 93 39 255" + "PaintBackgroundType" "0" + } + "ClassBar8B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar8B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "358" + "ypos_hidef" "195" + "ypos_lodef" "195" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "134 93 39 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel8A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel8A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel8A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "354" + "ypos_hidef" "191" + "ypos_lodef" "191" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel8B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel8B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel8B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "354" + "ypos_hidef" "191" + "ypos_lodef" "191" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel8" + { + "ControlName" "Label" + "fieldName" "ClassLabel8" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class8%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "354" + "ypos_hidef" "191" + "ypos_lodef" "191" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarBG9A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG9A" + "xpos" "c-285" + "xpos_hidef" "c-193" + "xpos_lodef" "c-193" + "ypos" "374" + "ypos_hidef" "211" + "ypos_lodef" "211" + "zpos" "2" + "wide" "312" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBarBG9B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBarBG9B" + "xpos" "c+30" + "xpos_hidef" "c+122" + "xpos_lodef" "c+122" + "ypos" "374" + "ypos_hidef" "211" + "ypos_lodef" "211" + "zpos" "2" + "wide" "70" + "tall" "16" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "ClassBar9A" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar9A" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "376" + "ypos_hidef" "213" + "ypos_lodef" "213" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "207 147 95 255" + "PaintBackgroundType" "0" + } + "ClassBar9B" + { + "ControlName" "ImagePanel" + "fieldName" "ClassBar9B" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "376" + "ypos_hidef" "213" + "ypos_lodef" "213" + "zpos" "3" + "wide" "151" + "tall" "12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "207 147 95 255" + "PaintBackgroundType" "0" + } + "ClassBarLabel9A" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel9A" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel9A%" + "textAlignment" "west" + "xpos" "c-282" + "xpos_hidef" "c-190" + "xpos_lodef" "c-190" + "ypos" "372" + "ypos_hidef" "209" + "ypos_lodef" "209" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassBarLabel9B" + { + "ControlName" "Label" + "fieldName" "ClassBarLabel9B" + "font" "ScoreboardVerySmall" + "labelText" "%classbarlabel9B%" + "textAlignment" "west" + "xpos" "c-127" + "xpos_hidef" "c-35" + "xpos_lodef" "c-35" + "ypos" "372" + "ypos_hidef" "209" + "ypos_lodef" "209" + "zpos" "6" + "wide" "100" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "ClassLabel9" + { + "ControlName" "Label" + "fieldName" "ClassLabel9" + "font" "ScoreboardSmall" + "font_hidef" "Default" + "font_lodef" "ScoreboardVerySmall" + "labelText" "%class9%" + "textAlignment" "west" + "xpos" "c+34" + "xpos_hidef" "c+126" + "xpos_lodef" "c+126" + "ypos" "372" + "ypos_hidef" "209" + "ypos_lodef" "209" + "zpos" "5" + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "RecordsBG" + { + "ControlName" "EditablePanel" + "fieldName" "RecordsBG" + "xpos" "c+115" + "xpos_hidef" "c+95" + "ypos" "165" + "ypos_hidef" "115" + "wide" "200" + "wide_hidef" "225" + "tall" "260" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "visible_hidef" "0" + "visible_lodef" "0" + "enabled" "1" + "enabled_hidef" "0" + "enabled_lodef" "0" + "border" "NoBorder" + "bgcolor_override" "0 0 0 175" + } + "RecordsLabel1" + { + "ControlName" "Label" + "fieldName" "RecordsLabel1" + "font" "ScoreboardMediumSmall" + "labelText" "#StatSummary_Label_BestMoments" + "textAlignment" "west" + "xpos" "c+124" + "ypos" "170" [!$OSX] + "ypos" "180" [$OSX] + "wide" "300" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" [$WIN32] + "visible" "0" [$X360] + "enabled" "1" + } + "RecordsSubBG1" + { + "ControlName" "ImagePanel" + "fieldName" "RecordsSubBG1" + "xpos" "c+124" + "xpos_hidef" "c-270" + "xpos_lodef" "c-270" + "ypos" "217" + "ypos_hidef" "229" + "ypos_lodef" "229" + "zpos" "2" + "wide" "167" + "wide_hidef" "540" + "wide_lodef" "540" + "tall" "157" + "tall_hidef" "183" + "tall_lodef" "183" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "fillcolor" "0 0 0 80" + "PaintBackgroundType" "0" + } + "RecordsLabel" + { + "ControlName" "Label" + "fieldName" "RecordsLabel" + "font" "ScoreboardMedium" + "labelText" "#StatSummary_Records" + "textAlignment" "west" + "xpos" "c-265" + "ypos" "232" + "zpos" "5" + "wide" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" [$WIN32] + "visible" "1" [$X360] + "enabled" "1" + } + "OverallRecord1Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord1Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord1label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "214" + "ypos_hidef" "246" + "ypos_lodef" "246" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord1Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord1Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord1value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "214" + "ypos_hidef" "246" + "ypos_lodef" "246" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord2Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord2Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord2label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "224" + "ypos_hidef" "258" + "ypos_lodef" "258" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord2Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord2Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord2value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "224" + "ypos_hidef" "258" + "ypos_lodef" "258" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord3Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord3Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord3label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "234" + "ypos_hidef" "270" + "ypos_lodef" "270" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord3Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord3Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord3value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "234" + "ypos_hidef" "270" + "ypos_lodef" "270" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord4Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord4Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord4label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "244" + "ypos_hidef" "282" + "ypos_lodef" "282" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord4Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord4Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord4value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "244" + "ypos_hidef" "282" + "ypos_lodef" "282" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord5Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord5Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord5label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "254" + "ypos_hidef" "294" + "ypos_lodef" "294" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord5Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord5Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord5value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "254" + "ypos_hidef" "294" + "ypos_lodef" "294" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord6Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord6Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord6label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "264" + "ypos_hidef" "306" + "ypos_lodef" "306" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord6Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord6Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord6value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "264" + "ypos_hidef" "306" + "ypos_lodef" "306" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord7Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord7Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord7label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "274" + "ypos_hidef" "318" + "ypos_lodef" "318" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord7Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord7Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord7value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "274" + "ypos_hidef" "318" + "ypos_lodef" "318" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord8Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord8Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord8label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-265" + "xpos_lodef" "c-265" + "ypos" "284" + "ypos_hidef" "330" + "ypos_lodef" "330" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord8Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord8Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord8value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c-155" + "xpos_lodef" "c-155" + "ypos" "284" + "ypos_hidef" "330" + "ypos_lodef" "330" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord9Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord9Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord9label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "294" + "ypos_hidef" "246" + "ypos_lodef" "246" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord9Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord9Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord9value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+148" + "xpos_lodef" "c+148" + "ypos" "294" + "ypos_hidef" "246" + "ypos_lodef" "246" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord10Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord10Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord10label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "304" + "ypos_hidef" "258" + "ypos_lodef" "258" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord10Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord10Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord10value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "304" + "ypos_hidef" "258" + "ypos_lodef" "258" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord11Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord11Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord11label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "314" + "ypos_hidef" "270" + "ypos_lodef" "270" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord11Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord11Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord11value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "314" + "ypos_hidef" "270" + "ypos_lodef" "270" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord12Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord12Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord12label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "324" + "ypos_hidef" "282" + "ypos_lodef" "282" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord12Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord12Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord12value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "324" + "ypos_hidef" "282" + "ypos_lodef" "282" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord13Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord13Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord13label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "334" + "ypos_hidef" "294" + "ypos_lodef" "294" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord13Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord13Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord13value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "334" + "ypos_hidef" "294" + "ypos_lodef" "294" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord14Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord14Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord14label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "344" + "ypos_hidef" "306" + "ypos_lodef" "306" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord14Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord14Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord14value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "344" + "ypos_hidef" "306" + "ypos_lodef" "306" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord15Label" + { + "ControlName" "Label" + "fieldName" "OverallRecord15Label" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord15label%" + "textAlignment" "west" + "xpos" "c+128" + "xpos_hidef" "c-25" + "xpos_lodef" "c-25" + "ypos" "354" + "ypos_hidef" "318" + "ypos_lodef" "318" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + "OverallRecord15Value" + { + "ControlName" "Label" + "fieldName" "OverallRecord15Value" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%classrecord15value%" + "textAlignment" "west" + "xpos" "c+210" + "xpos_hidef" "c+160" + "xpos_lodef" "c+160" + "ypos" "354" + "ypos_hidef" "318" + "ypos_lodef" "318" + "zpos" "5" + "wide" "200" + "wide_hidef" "220" + "wide_lodef" "220" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + } + } + "TipImage" + { + "ControlName" "CTFImagePanel" + "fieldName" "TipImage" + "xpos" "c-285" + "ypos" "270" + "zpos" "12" + "wide" "35" + "tall" "35" + "visible" "0" + "enabled" "1" + "image" "" + "scaleImage" "1" + } + "TipText" + { + "ControlName" "Label" + "fieldName" "TipText" + "font" "ScoreboardVerySmall" + "font_hidef" "Default" + "labelText" "%tiptext%" + "textAlignment" "west" + "textAlignment_hidef" "north-west" + "textAlignment_lodef" "north-west" + "xpos" "c-245" + "xpos_lodef" "c-180" + "xpos_hidef" "c-180" + "ypos" "263" + "ypos_hidef" "262" + "ypos_lodef" "262" + "zpos" "12" + "wide" "350" + "wide_hidef" "360" + "wide_lodef" "360" + "tall" "48" + "tall_hidef" "60" + "tall_lodef" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "wrap" "1" + } + "NextTipButton" [$WIN32] + { + "ControlName" "Button" + "fieldName" "NextTipButton" + "xpos" "c-248" + "ypos" "310" + "zpos" "6" + "wide" "90" + "tall" "15" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_NextTip" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "nexttip" + } + "ResetStatsButton" [$WIN32] + { + "ControlName" "Button" + "fieldName" "ResetStatsButton" + "xpos" "c130" + "ypos" "270" + "zpos" "6" + "wide" "150" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TF_ResetStats" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "resetstatsbutton" + } + "CloseButton" [$WIN32] + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "r190" + "ypos" "r50" + "zpos" "6" + "wide" "150" + "tall" "30" + "autoResize" "0" + "pinCorner" "2" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "labelText" "#TF_Close" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "Command" "vguicancel" + } + "Footer" [$X360] + { + "ControlName" "CTFFooter" + "fieldName" "Footer" + "bgcolor" "TanDarker" + "paintbackground" "1" + "tall" "100" + "tall_lodef" "60" + "center" "1" + "buttonoffsety" "20" + "buttonoffsety_lodef" "5" + "button_separator" "10" + "button_separator_lodef" "2" + "fonttext" "MatchmakingDialogMenuLarge" + "fonttext_lodef" "MatchmakingDialogMenuSmall" + "buttongap" "50" + "textadjust" "3" + "textadjust_lodef" "0" + "zpos" "6" + "fgcolor" "HudOffWhite" + + "button" + { + "name" "back" + "text" "#GameUI_Back" + "icon" "#GameUI_Icons_B_BUTTON" + } + + "button" + { + "name" "nexttip" + "text" "#TF_NextTip_360" + "icon" "#GameUI_Icons_A_BUTTON" + } + } + "TitleBanner" [$X360] + { + "ControlName" "ImagePanel" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "128" + "image" "menu_header" + "visible_lodef" "0" + "enabled_lodef" "0" + } +} diff --git a/biscottihud/resource/ui/statsummary_embedded_colour.res b/biscottihud/resource/ui/statsummary_embedded_colour.res new file mode 100644 index 0000000..c44e550 --- /dev/null +++ b/biscottihud/resource/ui/statsummary_embedded_colour.res @@ -0,0 +1,7 @@ +"Resource/UI/winpanel.res" +{ + "TFStatsSummary" + { + "bgcolor_override" "bBlackSolid3" + } +} diff --git a/biscottihud/resource/ui/streamlistpanel.res b/biscottihud/resource/ui/streamlistpanel.res new file mode 100644 index 0000000..78202c9 --- /dev/null +++ b/biscottihud/resource/ui/streamlistpanel.res @@ -0,0 +1,212 @@ +"Resource/UI/StreamListPanel.res" +{ + "HeaderContainer" + { + "ControlName" "EditablePanel" + "fieldName" "HeaderContainer" + "xpos" "0" + "ypos" "0" + "wide" "300" + "tall" "22" + "visible" "1" + + "HeaderLabel" + { + "ControlName" "CExLabel" + "fieldName" "HeaderLabel" + "font" "HudFontSmallBold" + "textAlignment" "center" + "labelText" "#MMenu_Stream_LiveStream" + "xpos" "0" + "ypos" "0" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "PaintBackgroundType" "0" + "fgcolor_override" "Black" + "bgcolor_override" "bSchemePrime" + } + } + + "CloseButton" + { + "ControlName" "CExImageButton" + "fieldName" "CloseButton" + "xpos" "282" + "ypos" "4" + "zpos" "10" + "wide" "14" + "tall" "14" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labeltext" "" + "font" "HudFontSmallBold" + "textAlignment" "center" + "dulltext" "0" + "brighttext" "0" + "default" "0" + + "navDown" "MOTD_URLButton" + "navActivate" "