mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-10 06:42:17 +00:00
Split newgame and ingame saber menu to solve problem with injected MP map launcher
This commit is contained in:
parent
48e9037aaf
commit
3a3f0483c5
3 changed files with 905 additions and 836 deletions
898
z_vr_assets_jka/ui/character.menu
Normal file
898
z_vr_assets_jka/ui/character.menu
Normal file
|
@ -0,0 +1,898 @@
|
|||
//----------------------------------------------------------------------------------------------
|
||||
// CHARACTER CREATION MENU
|
||||
//
|
||||
//
|
||||
//
|
||||
//----------------------------------------------------------------------------------------------
|
||||
{
|
||||
menuDef
|
||||
{
|
||||
name "characterMenu"
|
||||
fullScreen 1
|
||||
rect 0 0 640 480
|
||||
visible 1
|
||||
focusColor 1 1 1 1
|
||||
descX 320
|
||||
descY 426
|
||||
descScale 1
|
||||
descColor 1 .682 0 .8
|
||||
descAlignment ITEM_ALIGN_CENTER
|
||||
|
||||
|
||||
onOpen
|
||||
{
|
||||
uiScript "getcharcvars"
|
||||
uiScript "character"
|
||||
hide heads
|
||||
show torso
|
||||
hide lower
|
||||
}
|
||||
|
||||
onESC
|
||||
{
|
||||
play "sound/interface/esc.wav"
|
||||
close characterMenu
|
||||
open newgameMenu
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// MENU BACKGROUND
|
||||
//----------------------------------------------------------------------------------------------
|
||||
itemDef
|
||||
{
|
||||
name really_background
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 156 154 320 240
|
||||
background "gfx/menus/main_centerblue"
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name background_text
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 0 0 160 480
|
||||
background "gfx/menus/menu_side_text"
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name background_text_b
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 480 0 160 480
|
||||
background "gfx/menus/menu_side_text_right"
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name background
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 0 0 640 480
|
||||
// background "gfx/menus/main_background"
|
||||
background "gfx/menus/charmenu"
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
// The starwars logo on the top
|
||||
/*itemDef
|
||||
{
|
||||
name starwars
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 107 8 428 112
|
||||
background "gfx/menus/jediacademy"
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
decoration
|
||||
}*/
|
||||
|
||||
|
||||
|
||||
itemDef
|
||||
{
|
||||
name left_frame
|
||||
group lf_fr
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 0 -60 320 160
|
||||
background "gfx/menus/menu_boxes_left"
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name right_frame
|
||||
group rt_fr
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 320 -60 320 160
|
||||
background "gfx/menus/menu_boxes_right"
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// CHARACTER MENU specific stuff
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// CREATION title
|
||||
itemDef
|
||||
{
|
||||
name creation_title
|
||||
group title
|
||||
style WINDOW_STYLE_SHADER
|
||||
background "gfx/menus/menu_blendbox"
|
||||
text @MENUS_CHARACTER_CREATION
|
||||
rect 100 54 440 16
|
||||
font 3
|
||||
textscale 0.7
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textalignx 225
|
||||
textaligny -1
|
||||
forecolor .549 .854 1 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name character
|
||||
group models
|
||||
type ITEM_TYPE_MODEL
|
||||
// rect 52 84 900 1000
|
||||
rect 355 84 300 340
|
||||
|
||||
model_g2anim "BOTH_WALK1"
|
||||
asset_model "ui_char_model"
|
||||
model_angle 180
|
||||
model_g2mins -10 -15 -10
|
||||
model_g2maxs 20 15 30
|
||||
model_rotation 50
|
||||
model_fovx 50
|
||||
model_fovy 50
|
||||
isCharacter 1
|
||||
visible 1
|
||||
decoration
|
||||
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name background2
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 320 360 320 120
|
||||
background "gfx/menus/charmenu_bottom"
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// SPECIES BUTTON
|
||||
//----------------------------------------------------------------------------------------------
|
||||
itemDef
|
||||
{
|
||||
name species
|
||||
group none
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 30 88 140 24
|
||||
forecolor .549 .854 1 1
|
||||
text @MENUS_SPECIES
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny -1
|
||||
font 3
|
||||
textscale 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name speciesbut_glow
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 176 92 150 16
|
||||
background "gfx/menus/menu_buttonback"
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name speciesbut
|
||||
group none
|
||||
text " "
|
||||
descText @MENUS_CHOOSE_SPECIES
|
||||
type ITEM_TYPE_MULTI
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 176 92 150 16
|
||||
font 2
|
||||
textscale .9
|
||||
textaligny -5
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
backcolor 0 0 0 0
|
||||
forecolor .615 .615 .956 1
|
||||
feeder 16 //FEEDER_PLAYER_SPECIES
|
||||
cvar "ui_char_model"
|
||||
cvarStrList feeder
|
||||
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show speciesbut_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide speciesbut_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
uiScript "characterchanged"
|
||||
uiScript "resetcharacterlistboxes"
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// COLOR TINT AREA
|
||||
//----------------------------------------------------------------------------------------------
|
||||
itemDef
|
||||
{
|
||||
name color
|
||||
group none
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 30 144 160 24
|
||||
forecolor .549 .854 1 1
|
||||
text @MENUS_COLOR
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny -1
|
||||
font 3
|
||||
textscale 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name colorbox
|
||||
group tints
|
||||
type ITEM_TYPE_LISTBOX
|
||||
style WINDOW_STYLE_FILLED
|
||||
desctext @MENUS_CHANGE_PLAYER_TINT
|
||||
elementwidth 32
|
||||
elementheight 32
|
||||
elementtype 1 //LISTBOX_IMAGE
|
||||
feeder 20 //FEEDER_COLORCHOICES
|
||||
horizontalscroll
|
||||
border 1
|
||||
bordersize 1
|
||||
backcolor .66 .66 1 .25
|
||||
bordercolor .66 .66 1 1
|
||||
rect 30 168 292 48
|
||||
visible 1
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_color.wav"
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// APPEARANCE TABS
|
||||
//----------------------------------------------------------------------------------------------
|
||||
itemDef
|
||||
{
|
||||
name appear
|
||||
group none
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 30 252 180 24
|
||||
forecolor .549 .854 1 1
|
||||
text @MENUS_APPEARANCE
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny -1
|
||||
font 3
|
||||
textscale 1
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
// HEAD BUTTON
|
||||
itemDef
|
||||
{
|
||||
name headbut_glow
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 30 280 90 16
|
||||
background "gfx/menus/menu_buttonback"
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name headbut
|
||||
group none
|
||||
text @MENUS_HEAD
|
||||
descText @MENUS_SELECT_HEAD
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 30 280 90 16
|
||||
font 2
|
||||
textscale .9
|
||||
textaligny -5
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
backcolor 0 0 0 0
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show headbut_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide headbut_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
show heads
|
||||
hide torso
|
||||
hide lower
|
||||
transition2 character 52 84 900 1000 20 25
|
||||
|
||||
setitemcolor legsbut forecolor 1 .682 0 1
|
||||
setitemcolor torsobut forecolor 1 .682 0 1
|
||||
setitemcolor headbut forecolor 1 1 1 1
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// TORSO BUTTON
|
||||
itemDef
|
||||
{
|
||||
name torsobut_glow
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 126 280 90 16
|
||||
background "gfx/menus/menu_buttonback"
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name torsobut
|
||||
group none
|
||||
text @MENUS_TORSO
|
||||
descText @MENUS_SELECT_TORSO
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 126 280 90 16
|
||||
font 2
|
||||
textscale .9
|
||||
textaligny -5
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
backcolor 0 0 0 0
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show torsobut_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide torsobut_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
show torso
|
||||
hide heads
|
||||
hide lower
|
||||
transition2 character 355 84 300 340 20 25
|
||||
|
||||
setitemcolor legsbut forecolor 1 .682 0 1
|
||||
setitemcolor torsobut forecolor 1 1 1 1
|
||||
setitemcolor headbut forecolor 1 .682 0 1
|
||||
}
|
||||
}
|
||||
|
||||
// LEGS BUTTON
|
||||
itemDef
|
||||
{
|
||||
name legsbut_glow
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 224 280 90 16
|
||||
background "gfx/menus/menu_buttonback"
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name legsbut
|
||||
group none
|
||||
text @MENUS_LEGS
|
||||
descText @MENUS_SELECT_LEGS
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 224 280 90 16
|
||||
font 2
|
||||
textscale .9
|
||||
textaligny -5
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
backcolor 0 0 0 0
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show legsbut_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide legsbut_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
show lower
|
||||
hide heads
|
||||
hide torso
|
||||
transition2 character 355 84 300 340 20 25
|
||||
|
||||
setitemcolor legsbut forecolor 1 1 1 1
|
||||
setitemcolor torsobut forecolor 1 .682 0 1
|
||||
setitemcolor headbut forecolor 1 .682 0 1
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// APPEARANCE LISTBOXES
|
||||
//----------------------------------------------------------------------------------------------
|
||||
itemDef
|
||||
{
|
||||
name headlistbox
|
||||
group heads
|
||||
type ITEM_TYPE_LISTBOX
|
||||
style WINDOW_STYLE_FILLED
|
||||
descText @MENUS_SELECT_HEAD
|
||||
elementwidth 72
|
||||
elementheight 72
|
||||
elementtype 1 //LISTBOX_IMAGE
|
||||
feeder 17 //FEEDER_PLAYER_SKIN_HEAD
|
||||
horizontalscroll
|
||||
border 1
|
||||
bordersize 1
|
||||
backcolor .66 .66 1 .25
|
||||
bordercolor .66 .66 1 1
|
||||
forecolor -1 //use playercolor
|
||||
rect 30 306 292 93
|
||||
visible 0
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_head.wav"
|
||||
uiScript "char_skin"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name torsolistbox
|
||||
group torso
|
||||
type ITEM_TYPE_LISTBOX
|
||||
style WINDOW_STYLE_FILLED
|
||||
descText @MENUS_SELECT_TORSO
|
||||
elementwidth 72
|
||||
elementheight 72
|
||||
elementtype 1 //LISTBOX_IMAGE
|
||||
feeder 18 //FEEDER_PLAYER_SKIN_TORSO
|
||||
horizontalscroll
|
||||
border 1
|
||||
bordersize 1
|
||||
backcolor .66 .66 1 .25
|
||||
bordercolor .66 .66 1 1
|
||||
forecolor -1 //use playercolor
|
||||
rect 30 306 292 93
|
||||
visible 1
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_torso.wav"
|
||||
uiScript "char_skin"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name lowerlistbox
|
||||
group lower
|
||||
type ITEM_TYPE_LISTBOX
|
||||
style WINDOW_STYLE_FILLED
|
||||
descText @MENUS_SELECT_LEGS
|
||||
elementwidth 72
|
||||
elementheight 72
|
||||
elementtype 1 //LISTBOX_IMAGE
|
||||
feeder 19 //FEEDER_PLAYER_SKIN_LEGS
|
||||
horizontalscroll
|
||||
border 1
|
||||
bordersize 1
|
||||
backcolor .66 .66 1 .25
|
||||
bordercolor .66 .66 1 1
|
||||
forecolor -1 //use playercolor
|
||||
rect 30 306 292 93
|
||||
visible 0
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_head.wav"
|
||||
uiScript "char_skin"
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// TOP MAIN MENU BUTTONS
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// Big button "NEW"
|
||||
itemDef
|
||||
{
|
||||
name newbutton_glow
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 7 16 130 24
|
||||
background "gfx/menus/menu_buttonback"
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name newgamebutton
|
||||
group nbut
|
||||
style WINDOW_STYLE_EMPTY
|
||||
type ITEM_TYPE_BUTTON
|
||||
rect 7 16 130 24
|
||||
text @MENUS_NEW
|
||||
descText @MENUS_START_A_NEW_GAME
|
||||
font 3
|
||||
textscale 1.1
|
||||
textaligny 0
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textstyle 1
|
||||
textalignx 65
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show newbutton_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide newbutton_glow
|
||||
}
|
||||
}
|
||||
|
||||
// Big button "LOAD"
|
||||
itemDef
|
||||
{
|
||||
name loadgamebutton_glow
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 170 16 130 24
|
||||
background "gfx/menus/menu_buttonback" // Frame around button
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name loadgamebutton
|
||||
group lbut
|
||||
text @MENUS_LOAD
|
||||
descText @MENUS_LOAD_A_SAVED_GAME
|
||||
style WINDOW_STYLE_EMPTY
|
||||
type ITEM_TYPE_BUTTON
|
||||
rect 170 16 130 24
|
||||
textaligny 0
|
||||
font 3
|
||||
textscale 1.1
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textstyle 1
|
||||
textalignx 65
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show loadgamebutton_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide loadgamebutton_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
close all
|
||||
open loadgameMenu
|
||||
}
|
||||
}
|
||||
|
||||
// Big button "CONTROLS"
|
||||
itemDef
|
||||
{
|
||||
name controlsbutton_glow
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 340 16 130 24
|
||||
background "gfx/menus/menu_buttonback" // Frame around button
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef {
|
||||
name controlsbutton
|
||||
group cbut
|
||||
text @MENUS_CONTROLS
|
||||
descText @MENUS_CONFIGURE_GAME_CONTROLS
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 340 16 130 24
|
||||
font 3
|
||||
textscale 1.1
|
||||
textaligny 0
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textstyle 1
|
||||
textalignx 65
|
||||
backcolor 0 0 0 0
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show controlsbutton_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide controlsbutton_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
close all
|
||||
open controlsMenu
|
||||
}
|
||||
}
|
||||
|
||||
// Big button "SETUP"
|
||||
itemDef
|
||||
{
|
||||
name setupbutton_glow
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 502 16 130 24
|
||||
background "gfx/menus/menu_buttonback" // Frame around button
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name setupbutton
|
||||
group sbut
|
||||
text @MENUS_SETUP
|
||||
descText @MENUS_CONFIGURE_GAME_SETTINGS
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 502 16 130 24
|
||||
font 3
|
||||
textscale 1.1
|
||||
textaligny 0
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textstyle 1
|
||||
textalignx 65
|
||||
backcolor 0 0 0 0
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show setupbutton_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide setupbutton_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
close all
|
||||
open setupMenu
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// LOWER MAIN MENU BUTTONS
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// BACK button in lower left corner
|
||||
itemDef
|
||||
{
|
||||
name backbutton_glow
|
||||
group mods
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 59 444 130 24
|
||||
background "gfx/menus/menu_buttonback" // Frame around button
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name backbutton
|
||||
group exit
|
||||
text @MENUS_BACK
|
||||
descText @MENUS_BACKUP_ONE_MENU
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 59 444 130 24
|
||||
font 3
|
||||
textscale 1.1
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textstyle 3
|
||||
textalignx 65
|
||||
textaligny -1
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show backbutton_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide backbutton_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/esc.wav"
|
||||
close all ;
|
||||
open newgameMenu
|
||||
}
|
||||
}
|
||||
// EXIT button in lower left corner
|
||||
itemDef
|
||||
{
|
||||
name exitgamebutton_glow
|
||||
group mods
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 255 444 130 24
|
||||
background "gfx/menus/menu_buttonback" // Frame around button
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name exitgamebutton
|
||||
group exit
|
||||
text @MENUS_EXIT
|
||||
descText @MENUS_JEDI_KNIGHT_II
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 255 444 130 24
|
||||
font 3
|
||||
textscale 1.1
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textstyle 3
|
||||
textalignx 65
|
||||
textaligny -1
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show exitgamebutton_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide exitgamebutton_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/weapons/saber/saberoff.mp3"
|
||||
close all
|
||||
open quitMenu
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name next_glow
|
||||
group mods
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 455 444 130 24
|
||||
background "gfx/menus/menu_buttonback"
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name next
|
||||
group none
|
||||
text @MENUS_NEXT
|
||||
descText @MENUS_NEXT_DESC
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 455 444 130 24
|
||||
font 3
|
||||
textscale 1
|
||||
textalignx 65
|
||||
textaligny -1
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textstyle 3
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
close all
|
||||
uiScript "updatecharcvars"
|
||||
setcvar saber_menu 0
|
||||
setcvar ui_saber_type single
|
||||
open ngSaberMenu
|
||||
}
|
||||
mouseEnter
|
||||
{
|
||||
show next_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide next_glow
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -18,4 +18,5 @@
|
|||
loadMenu { "ui/credits.menu" }
|
||||
loadMenu { "ui/help_popup.menu" }
|
||||
loadMenu { "ui/mpmap.menu" }
|
||||
loadMenu { "ui/ngsaber.menu" }
|
||||
}
|
||||
|
|
|
@ -1,22 +1,12 @@
|
|||
//----------------------------------------------------------------------------------------------
|
||||
//
|
||||
// SABER CREATION MENU - called from main menu at the the start of a new game,
|
||||
// and also when player is allowed to upgrade the fighting style and choose a new saber
|
||||
//
|
||||
// values allowed for "ui_fightingstylesallowed" for styles player can choose from
|
||||
// 0 - none
|
||||
// 1 - Medium and Heavy
|
||||
// 2 - Fast and Heavy
|
||||
// 3 - Fast and Medium
|
||||
// 4 - Forced to take Fast
|
||||
// 5 - Forced to take Medium
|
||||
// 6 - Forced to take Strong
|
||||
// SABER CREATION MENU - called from main menu at the the start of a new game
|
||||
//
|
||||
//----------------------------------------------------------------------------------------------
|
||||
{
|
||||
menuDef
|
||||
{
|
||||
name "saberMenu"
|
||||
name "ngSaberMenu"
|
||||
fullScreen 1 // MENU_TRUE
|
||||
rect 0 0 640 480 // Size and position of the menu
|
||||
visible 1 // Visible on open
|
||||
|
@ -34,11 +24,7 @@
|
|||
uiScript "updatefightingstylechoices"
|
||||
uiScript "saber_hilt"
|
||||
uiScript "saber_color"
|
||||
uiScript "saber2_hilt"
|
||||
uiScript "saber2_color"
|
||||
setitemcolor typebut_single forecolor .65 .65 1 1
|
||||
setitemcolor typebut_dual forecolor .65 .65 1 1
|
||||
setitemcolor typebut_staff forecolor .65 .65 1 1
|
||||
}
|
||||
|
||||
onESC
|
||||
|
@ -208,9 +194,6 @@
|
|||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show button_glow
|
||||
|
@ -241,9 +224,6 @@
|
|||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show button_glow
|
||||
|
@ -293,9 +273,6 @@
|
|||
backcolor 0 0 0 0
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
|
@ -346,9 +323,6 @@
|
|||
backcolor 0 0 0 0
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
|
@ -422,30 +396,8 @@
|
|||
textalignx 225
|
||||
textaligny -1
|
||||
forecolor .549 .854 1 1
|
||||
cvarTest saber_menu
|
||||
hideCvar { "1" "2" }
|
||||
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name creation_title2
|
||||
group title
|
||||
style WINDOW_STYLE_EMPTY
|
||||
text @MENUS_NEW_SABER
|
||||
rect 100 50 440 16
|
||||
font 3
|
||||
textscale 0.7
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textalignx 225
|
||||
textaligny -1
|
||||
forecolor .549 .854 1 1
|
||||
cvarTest saber_menu
|
||||
showCvar { "1" "2" }
|
||||
visible 1
|
||||
decoration
|
||||
visible 1
|
||||
decoration
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
|
@ -498,177 +450,9 @@
|
|||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor 1 1 1 1
|
||||
forecolor .65 .65 1 1
|
||||
visible 1
|
||||
|
||||
cvarTest ui_sabermenu
|
||||
showCvar { "0" }
|
||||
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name typebut_single
|
||||
group none
|
||||
text @MENUS_SINGLESABER
|
||||
descText @MENUS_SINGLESABER_DESC
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 32 132 160 16
|
||||
font 4
|
||||
textscale 1
|
||||
textstyle 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
|
||||
cvarTest ui_sabermenu
|
||||
hideCvar { "0" }
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show typebut_glow
|
||||
setitemrect typebut_glow 5 130 210 20
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide typebut_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_saber.wav"
|
||||
setcvar ui_saber_type "single"
|
||||
uiScript "saber_type"
|
||||
setcvar ui_saber "single_1"
|
||||
setcvar ui_saber2 ""
|
||||
uiScript "saber_hilt"
|
||||
uiScript "saber_color"
|
||||
uiScript "saber2_hilt"
|
||||
uiScript "saber2_color"
|
||||
setitemcolor typebut_single forecolor 1 1 1 1
|
||||
setitemcolor typebut_dual forecolor .65 .65 1 1
|
||||
setitemcolor typebut_staff forecolor .65 .65 1 1
|
||||
transition2 box2middle 212 126 219 0 20 5
|
||||
transition2 box2bottom 212 126 219 60 20 5
|
||||
transition2 box3middle 418 126 219 0 20 5
|
||||
transition2 box3bottom 418 126 219 60 20 5
|
||||
transition2 styleboxleft 227 183 198 40 20 5
|
||||
transition2 styleboxright 425 183 198 40 20 5
|
||||
transition2 saber 12 -80 615 615 20 10
|
||||
uiScript "updatefightingstylechoices"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name typebut_dual
|
||||
group none
|
||||
text @MENUS_DUALSABERS
|
||||
descText @MENUS_DUALSABERS_DESC
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 32 152 160 16
|
||||
font 4
|
||||
textscale 1
|
||||
textstyle 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
|
||||
cvarTest saber_menu
|
||||
showCvar { "2" }
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show typebut_glow
|
||||
setitemrect typebut_glow 5 150 210 20
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide typebut_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_saber.wav"
|
||||
setcvar ui_saber_type "dual"
|
||||
uiScript "saber_type"
|
||||
setcvar ui_saber "single_1"
|
||||
setcvar ui_saber2 "single_1"
|
||||
uiScript "saber_hilt"
|
||||
uiScript "saber_color"
|
||||
uiScript "saber2_hilt"
|
||||
uiScript "saber2_color"
|
||||
setitemcolor typebut_single forecolor .65 .65 1 1
|
||||
setitemcolor typebut_dual forecolor 1 1 1 1
|
||||
setitemcolor typebut_staff forecolor .65 .65 1 1
|
||||
transition2 box2middle 212 126 219 44 20 5
|
||||
transition2 box2bottom 212 170 219 60 20 5
|
||||
transition2 box3middle 418 126 219 44 20 5
|
||||
transition2 box3bottom 418 170 219 60 20 5
|
||||
transition2 styleboxleft 425 183 0 40 20 5
|
||||
transition2 styleboxright 425 183 0 40 20 5
|
||||
transition2 saber 12 -130 615 615 20 5
|
||||
uiScript "updatefightingstylechoices"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name typebut_staff
|
||||
group none
|
||||
text @MENUS_SABERSTAFF
|
||||
descText @MENUS_SABERSTAFF_DESC
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 32 172 160 16
|
||||
font 4
|
||||
textscale 1
|
||||
textstyle 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor 1 1 1 1
|
||||
visible 1
|
||||
|
||||
cvarTest saber_menu
|
||||
showCvar { "2" }
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show typebut_glow
|
||||
setitemrect typebut_glow 5 170 210 20
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide typebut_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_saber.wav"
|
||||
setcvar ui_saber_type "staff"
|
||||
uiScript "saber_type"
|
||||
setcvar ui_saber "dual_1"
|
||||
setcvar ui_saber2 ""
|
||||
uiScript "saber_hilt"
|
||||
uiScript "saber_color"
|
||||
uiScript "saber2_hilt"
|
||||
uiScript "saber2_color"
|
||||
setitemcolor typebut_single forecolor .65 .65 1 1
|
||||
setitemcolor typebut_dual forecolor .65 .65 1 1
|
||||
setitemcolor typebut_staff forecolor 1 1 1 1
|
||||
transition2 box2middle 212 126 219 44 20 5
|
||||
transition2 box2bottom 212 170 219 60 20 5
|
||||
transition2 box3middle 418 126 219 44 20 5
|
||||
transition2 box3bottom 418 170 219 60 20 5
|
||||
transition2 styleboxleft 425 183 0 40 20 5
|
||||
transition2 styleboxright 425 183 0 40 20 5
|
||||
transition2 saber 12 -80 615 615 20 10
|
||||
uiScript "updatefightingstylechoices"
|
||||
}
|
||||
decoration
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
|
@ -723,9 +507,6 @@
|
|||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "staff" }
|
||||
|
||||
cvar "ui_saber"
|
||||
//FIXME: read these from sabers.cfg + *.sab?
|
||||
|
@ -759,119 +540,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
// HILT BUTTON 1 - STAVES
|
||||
itemDef
|
||||
{
|
||||
name hiltbut_staves
|
||||
group none
|
||||
text @MENUS_HILT1
|
||||
descText @MENUS_HILT1_DESC
|
||||
type ITEM_TYPE_MULTI
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 240 132 160 16
|
||||
font 4
|
||||
textscale 1
|
||||
textstyle 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single"; "dual" }
|
||||
|
||||
cvar "ui_saber"
|
||||
//FIXME: read these from sabers.cfg + *.sab?
|
||||
cvarStrList
|
||||
{
|
||||
@MENUS_STAFF_HILT1 "dual_1"
|
||||
@MENUS_STAFF_HILT2 "dual_2"
|
||||
@MENUS_STAFF_HILT3 "dual_3"
|
||||
@MENUS_STAFF_HILT4 "dual_4"
|
||||
@MENUS_STAFF_HILT5 "dual_5"
|
||||
}
|
||||
visible 1
|
||||
mouseEnter
|
||||
{
|
||||
show hiltbut_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide hiltbut_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_hilt.wav"
|
||||
uiScript "saber_hilt"
|
||||
}
|
||||
}
|
||||
|
||||
// HILT BUTTON 2 - DUAL
|
||||
itemDef
|
||||
{
|
||||
name hiltbut2_glow
|
||||
group none
|
||||
style WINDOW_STYLE_SHADER
|
||||
rect 210 150 210 20
|
||||
background "gfx/menus/menu_buttonback"
|
||||
forecolor 1 1 1 1
|
||||
visible 0
|
||||
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single"; "staff" }
|
||||
decoration
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name hiltbut2
|
||||
group none
|
||||
text @MENUS_HILT2
|
||||
descText @MENUS_HILT2_DESC
|
||||
type ITEM_TYPE_MULTI
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 240 152 160 16
|
||||
font 4
|
||||
textscale 1
|
||||
textstyle 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single"; "staff" }
|
||||
|
||||
cvar "ui_saber2"
|
||||
//FIXME: read these from sabers.cfg + *.sab?
|
||||
cvarStrList
|
||||
{
|
||||
@MENUS_SINGLE_HILT1 "single_1"
|
||||
@MENUS_SINGLE_HILT2 "single_2"
|
||||
@MENUS_SINGLE_HILT3 "single_3"
|
||||
@MENUS_SINGLE_HILT4 "single_4"
|
||||
@MENUS_SINGLE_HILT5 "single_5"
|
||||
@MENUS_SINGLE_HILT6 "single_6"
|
||||
@MENUS_SINGLE_HILT7 "single_7"
|
||||
@MENUS_SINGLE_HILT8 "single_8"
|
||||
@MENUS_SINGLE_HILT9 "single_9"
|
||||
}
|
||||
visible 1
|
||||
mouseEnter
|
||||
{
|
||||
show hiltbut2_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide hiltbut2_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_hilt.wav"
|
||||
uiScript "saber2_hilt"
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
//BLADE COLORS
|
||||
//----------------------------------------------------------------------------------------------
|
||||
|
@ -1112,224 +780,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
// COLOR 2 BUTTON
|
||||
itemDef
|
||||
{
|
||||
name colorbut2
|
||||
group none
|
||||
text @MENUS_COLOR2
|
||||
descText @MENUS_COLOR2_DESC
|
||||
//type ITEM_TYPE_MULTI
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 446 152 160 16
|
||||
font 2
|
||||
textscale .8
|
||||
textstyle 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textalignx 0
|
||||
textaligny -4
|
||||
forecolor .79 .64 .22 1
|
||||
visible 1
|
||||
decoration
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single"; "staff" }
|
||||
|
||||
/*cvar "ui_saber2_color"
|
||||
cvarStrList
|
||||
{
|
||||
"red" "red"
|
||||
"orange" "orange"
|
||||
"yellow" "yellow"
|
||||
"green" "green"
|
||||
"blue" "blue"
|
||||
"purple" "purple"
|
||||
}
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
show colorbut2_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide colorbut2_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_blade.wav"
|
||||
uiScript "saber2_color"
|
||||
}*/
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name blueicon2
|
||||
group sabericons2
|
||||
descText @MENUS_COLOR2_DESC
|
||||
style WINDOW_STYLE_SHADER
|
||||
type ITEM_TYPE_BUTTON
|
||||
rect 446 170 24 24
|
||||
background "gfx/menus/saber_icon_blue"
|
||||
forecolor .75 .75 .75 1
|
||||
border 1
|
||||
bordersize 1
|
||||
bordercolor .33 .33 .5 1
|
||||
visible 1
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single"; "staff" }
|
||||
mouseEnter
|
||||
{
|
||||
setitemcolor blueicon2 forecolor 1 1 1 1
|
||||
setitemcolor blueicon2 bordercolor .66 .66 1 1
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
setitemcolor blueicon2 forecolor .75 .75 .75 1
|
||||
setitemcolor blueicon2 bordercolor .33 .33 .5 1
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_blade.wav"
|
||||
//uiScript "saber_color"
|
||||
setcvar "ui_saber2_color" "blue"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name greenicon2
|
||||
group sabericons2
|
||||
descText @MENUS_COLOR2_DESC
|
||||
style WINDOW_STYLE_SHADER
|
||||
type ITEM_TYPE_BUTTON
|
||||
rect 480 170 24 24
|
||||
background "gfx/menus/saber_icon_green"
|
||||
forecolor .75 .75 .75 1
|
||||
border 1
|
||||
bordersize 1
|
||||
bordercolor .33 .33 .5 1
|
||||
visible 1
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single"; "staff" }
|
||||
mouseEnter
|
||||
{
|
||||
setitemcolor greenicon2 forecolor 1 1 1 1
|
||||
setitemcolor greenicon2 bordercolor .66 .66 1 1
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
setitemcolor greenicon2 forecolor .75 .75 .75 1
|
||||
setitemcolor greenicon2 bordercolor .33 .33 .5 1
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_blade.wav"
|
||||
//uiScript "saber_color"
|
||||
setcvar "ui_saber2_color" "green"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name orangeicon2
|
||||
group sabericons2
|
||||
style WINDOW_STYLE_SHADER
|
||||
descText @MENUS_COLOR2_DESC
|
||||
type ITEM_TYPE_BUTTON
|
||||
rect 514 170 24 24
|
||||
background "gfx/menus/saber_icon_orange"
|
||||
forecolor .75 .75 .75 1
|
||||
border 1
|
||||
bordersize 1
|
||||
bordercolor .33 .33 .5 1
|
||||
visible 1
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single"; "staff" }
|
||||
mouseEnter
|
||||
{
|
||||
setitemcolor orangeicon2 forecolor 1 1 1 1
|
||||
setitemcolor orangeicon2 bordercolor .66 .66 1 1
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
setitemcolor orangeicon2 forecolor .75 .75 .75 1
|
||||
setitemcolor orangeicon2 bordercolor .33 .33 .5 1
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_blade.wav"
|
||||
//uiScript "saber_color"
|
||||
setcvar "ui_saber2_color" "orange"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name purpleicon2
|
||||
group sabericons2
|
||||
style WINDOW_STYLE_SHADER
|
||||
type ITEM_TYPE_BUTTON
|
||||
descText @MENUS_COLOR2_DESC
|
||||
rect 548 170 24 24
|
||||
background "gfx/menus/saber_icon_purple"
|
||||
forecolor .75 .75 .75 1
|
||||
border 1
|
||||
bordersize 1
|
||||
bordercolor .33 .33 .5 1
|
||||
visible 1
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single"; "staff" }
|
||||
mouseEnter
|
||||
{
|
||||
setitemcolor purpleicon2 forecolor 1 1 1 1
|
||||
setitemcolor purpleicon2 bordercolor .66 .66 1 1
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
setitemcolor purpleicon2 forecolor .75 .75 .75 1
|
||||
setitemcolor purpleicon2 bordercolor .33 .33 .5 1
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_blade.wav"
|
||||
//uiScript "saber_color"
|
||||
setcvar "ui_saber2_color" "purple"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name yellowicon2
|
||||
group sabericons2
|
||||
style WINDOW_STYLE_SHADER
|
||||
type ITEM_TYPE_BUTTON
|
||||
rect 582 170 24 24
|
||||
descText @MENUS_COLOR2_DESC
|
||||
background "gfx/menus/saber_icon_yellow"
|
||||
forecolor .75 .75 .75 1
|
||||
border 1
|
||||
bordersize 1
|
||||
bordercolor .33 .33 .5 1
|
||||
visible 1
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single"; "staff" }
|
||||
mouseEnter
|
||||
{
|
||||
setitemcolor yellowicon2 forecolor 1 1 1 1
|
||||
setitemcolor yellowicon2 bordercolor .66 .66 1 1
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
setitemcolor yellowicon2 forecolor .75 .75 .75 1
|
||||
setitemcolor yellowicon2 bordercolor .33 .33 .5 1
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/choose_blade.wav"
|
||||
//uiScript "saber_color"
|
||||
setcvar "ui_saber2_color" "yellow"
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// SABER COMBAT STYLES
|
||||
//----------------------------------------------------------------------------------------------
|
||||
|
@ -1349,10 +799,6 @@
|
|||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
//cvarTest ui_fightingstylesallowed
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
|
||||
cvar "ui_newfightingstyle"
|
||||
cvarStrList
|
||||
|
@ -1361,204 +807,7 @@
|
|||
}
|
||||
|
||||
visible 1
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
itemDef
|
||||
{
|
||||
name fightingstylebutton1
|
||||
group stylebuttons
|
||||
text @MENUS_SABERSTYLE
|
||||
// descText @MENUS_ADDFIGHTINGSTYLE
|
||||
type ITEM_TYPE_MULTI
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 240 190 380 24
|
||||
font 3
|
||||
textscale 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
cvarTest ui_fightingstylesallowed
|
||||
showCvar { "1" }
|
||||
|
||||
cvar "ui_newfightingstyle"
|
||||
cvarStrList
|
||||
{
|
||||
@MENUS_COMBATSTYLEMEDIUM "1"
|
||||
@MENUS_COMBATSTYLEHEAVY "2"
|
||||
}
|
||||
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
// show fightingstyle_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
// hide fightingstyle_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name fightingstylebutton2
|
||||
group none
|
||||
text @MENUS_SABERSTYLE
|
||||
// descText @MENUS_ADDFIGHTINGSTYLE
|
||||
type ITEM_TYPE_MULTI
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 240 190 380 24
|
||||
font 3
|
||||
textscale 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
cvarTest ui_fightingstylesallowed
|
||||
showCvar { "2" }
|
||||
|
||||
cvar "ui_newfightingstyle"
|
||||
cvarStrList
|
||||
{
|
||||
@MENUS_COMBATSTYLEFAST "0"
|
||||
@MENUS_COMBATSTYLEHEAVY "2"
|
||||
}
|
||||
|
||||
visible 1
|
||||
decoration
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
// show fightingstyle_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
// hide fightingstyle_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name fightingstylebutton3
|
||||
group stylebuttons
|
||||
text @MENUS_SABERSTYLE
|
||||
// descText @MENUS_ADDFIGHTINGSTYLE
|
||||
type ITEM_TYPE_MULTI
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 240 190 380 24
|
||||
font 3
|
||||
textscale 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
cvarTest ui_fightingstylesallowed
|
||||
showCvar { "3" }
|
||||
|
||||
cvar "ui_newfightingstyle"
|
||||
cvarStrList
|
||||
{
|
||||
@MENUS_COMBATSTYLEFAST "0"
|
||||
@MENUS_COMBATSTYLEMEDIUM "1"
|
||||
}
|
||||
|
||||
visible 1
|
||||
|
||||
mouseEnter
|
||||
{
|
||||
// show fightingstyle_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
// hide fightingstyle_glow
|
||||
}
|
||||
action
|
||||
{
|
||||
play "sound/interface/button1.wav"
|
||||
}
|
||||
}
|
||||
*/
|
||||
itemDef
|
||||
{
|
||||
name fightingstylebutton4
|
||||
group stylebuttons
|
||||
text @MENUS_FIGHTINGSTYLE_FAST
|
||||
type ITEM_TYPE_TEXT
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 240 190 0 0
|
||||
font 3
|
||||
textscale 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
cvarTest ui_fightingstylesallowed
|
||||
showCvar { "4" }
|
||||
|
||||
visible 1
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name fightingstylebutton5
|
||||
group stylebuttons
|
||||
text @MENUS_FIGHTINGSTYLE_MED
|
||||
type ITEM_TYPE_TEXT
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 240 190 0 0
|
||||
font 3
|
||||
textscale 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
cvarTest ui_fightingstylesallowed
|
||||
showCvar { "5" }
|
||||
|
||||
visible 1
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name fightingstylebutton6
|
||||
group stylebuttons
|
||||
text @MENUS_FIGHTINGSTYLE_STRONG
|
||||
type ITEM_TYPE_TEXT
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 240 190 0 0
|
||||
font 3
|
||||
textscale 1
|
||||
textalign ITEM_ALIGN_LEFT
|
||||
textstyle 1
|
||||
textalignx 0
|
||||
textaligny 0
|
||||
forecolor .65 .65 1 1
|
||||
|
||||
cvarTest ui_fightingstylesallowed
|
||||
showCvar { "6" }
|
||||
|
||||
visible 1
|
||||
}
|
||||
|
||||
itemDef
|
||||
|
@ -1598,29 +847,6 @@
|
|||
decoration
|
||||
}
|
||||
|
||||
//SECOND SABER
|
||||
itemDef
|
||||
{
|
||||
name saber2
|
||||
group models
|
||||
type ITEM_TYPE_MODEL
|
||||
rect 12 -50 615 615
|
||||
asset_model "models/weapons2/saber_1/saber_1.glm"
|
||||
isSaber2 1
|
||||
model_angle 180
|
||||
model_rotation 20
|
||||
model_g2mins 0 0 0
|
||||
model_g2maxs 20 20 20
|
||||
model_fovx 75
|
||||
model_fovy 75
|
||||
visible 1
|
||||
|
||||
cvarTest ui_saber_type
|
||||
hideCvar { "single" "staff" }
|
||||
|
||||
decoration
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------------------------
|
||||
// OTHER MAIN MENU BUTTONS
|
||||
//----------------------------------------------------------------------------------------------
|
||||
|
@ -1657,8 +883,6 @@
|
|||
textaligny -1
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
cvarTest mod_npcsp_enabled
|
||||
hideCvar { "1" }
|
||||
mouseEnter
|
||||
|
@ -1709,8 +933,6 @@
|
|||
textaligny -1
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
cvarTest mod_npcsp_enabled
|
||||
hideCvar { "0" }
|
||||
mouseEnter
|
||||
|
@ -1760,8 +982,6 @@
|
|||
textaligny -1
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
cvarTest mod_npcsp_enabled
|
||||
hideCvar { "1" }
|
||||
mouseEnter
|
||||
|
@ -1812,8 +1032,6 @@
|
|||
textaligny -1
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
cvarTest mod_npcsp_enabled
|
||||
hideCvar { "0" }
|
||||
mouseEnter
|
||||
|
@ -1864,8 +1082,6 @@
|
|||
textaligny -1
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
cvarTest mod_npcsp_enabled
|
||||
hideCvar { "0" }
|
||||
mouseEnter
|
||||
|
@ -1916,8 +1132,6 @@
|
|||
textstyle 3
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
cvarTest mod_npcsp_enabled
|
||||
hideCvar { "1" }
|
||||
action
|
||||
|
@ -1967,8 +1181,6 @@
|
|||
textstyle 3
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
cvarTest saber_menu
|
||||
showCvar { "0" }
|
||||
cvarTest mod_npcsp_enabled
|
||||
hideCvar { "0" }
|
||||
action
|
||||
|
@ -1987,47 +1199,5 @@
|
|||
}
|
||||
}
|
||||
|
||||
itemDef
|
||||
{
|
||||
name continue
|
||||
group none
|
||||
text @MENUS_CONTINUE
|
||||
descText @MENUS_NEW_MISSION_DESC
|
||||
type ITEM_TYPE_BUTTON
|
||||
style WINDOW_STYLE_EMPTY
|
||||
rect 455 444 130 24
|
||||
font 3
|
||||
textscale 1
|
||||
textalignx 65
|
||||
textaligny -1
|
||||
textalign ITEM_ALIGN_CENTER
|
||||
textstyle 3
|
||||
forecolor 1 .682 0 1
|
||||
visible 1
|
||||
|
||||
cvarTest saber_menu
|
||||
hideCvar { "0" }
|
||||
|
||||
action
|
||||
{
|
||||
uiScript "updatesabercvars"
|
||||
uiScript "updatefightingstyle"
|
||||
close all
|
||||
setcvar tier_storyinfo "13"
|
||||
open ingameGotoTier
|
||||
setcvar storyhead "kyle"
|
||||
// HACK We're expecting to go to a mission screen from here
|
||||
playvoice "sound/chars/storyinfo/13.mp3"
|
||||
|
||||
}
|
||||
mouseEnter
|
||||
{
|
||||
show begingamebutton_glow
|
||||
}
|
||||
mouseExit
|
||||
{
|
||||
hide begingamebutton_glow
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue