2022-12-07 07:02:09 -05:00
<!-- Default formatting -->
<Defaults >
2022-12-21 20:04:15 -05:00
<Text color= "#FFFFFF"
alignment="MiddleLeft" />
<Toggle isOn= "False"
rectAlignment="MiddleRight" />
<Cell dontUseTableCellBackground= "true"
outlineSize="0 1"
outline="grey" />
2022-12-07 07:02:09 -05:00
2022-12-20 09:27:47 -05:00
<!-- main window -->
2022-12-21 20:04:15 -05:00
<TableLayout class= "window"
width="500"
height="700"
active="false"
color="#000000"
outlineSize="2 2"
outline="grey"
showAnimation="SlideIn_Right"
hideAnimation="SlideOut_Right"
animationDuration="0.1" />
2022-12-07 07:02:09 -05:00
2022-12-20 09:27:47 -05:00
<!-- group headers -->
2022-12-21 20:04:15 -05:00
<Row class= "group-header"
preferredHeight="60" />
<Cell class= "group-header"
columnSpan="2"
color="#222222" />
<Panel class= "group-header"
padding="5 0 0 0" />
<Text class= "group-header"
fontSize="28"
font="font_teutonic-arkham" />
2022-12-07 07:02:09 -05:00
2022-12-20 09:27:47 -05:00
<!-- options -->
2022-12-21 20:04:15 -05:00
<Row class= "option-text"
2022-12-30 16:37:05 -05:00
preferredHeight="70"/>
2022-12-21 20:04:15 -05:00
<Cell class= "option-text"
color="#333333"/>
<Cell class= "option-button"
color="#333333"/>
<VerticalLayout class= "text-column"
padding="10 0 0 0"
spacing="5"/>
<Text class= "option-header"
fontSize="20"
font="font_teutonic-arkham"/>
<Text class= "description"
fontSize="12"/>
2022-12-08 06:01:10 -05:00
2022-12-20 09:27:47 -05:00
<!-- buttons at the bottom -->
2022-12-21 20:04:15 -05:00
<Button class= "bottomButtons"
hoverClass="hover"
pressClass="press"
selectClass="select"
color="#888888"
minHeight="35"
fontSize="24"
font="font_teutonic-arkham"/>
<Button class= "hover"
color="grey"/>
<Button class= "press"
color="white"/>
<Button class= "select"
color="white"/>
2022-12-07 07:02:09 -05:00
</Defaults>
<!-- Option Panel -->
2022-12-21 20:04:15 -05:00
<TableLayout id= "optionPanel"
class="window"
active="false"
rectAlignment="LowerRight"
offsetXY="-50 60">
2022-12-20 09:27:47 -05:00
<!-- Header: Options -->
<Row preferredHeight= "60" >
<Cell >
<Panel padding= "10 0 0 0" >
2022-12-21 20:04:15 -05:00
<Text font= "font_teutonic-arkham"
fontSize="35">Options</Text>
2022-12-07 10:40:55 -05:00
</Panel>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
2022-12-07 10:40:55 -05:00
2022-12-20 09:27:47 -05:00
<!-- Scrollable part with options -->
<Row >
<Cell >
2022-12-20 21:26:02 -05:00
<VerticalScrollView horizontalScrollbarVisibility= "AutohideAndExpandViewport" >
2022-12-21 20:04:15 -05:00
<TableLayout columnWidths= "0 75"
autoCalculateHeight="1"
cellPadding="10 0 8 8">
2022-12-20 09:27:47 -05:00
<!-- Group: playermat settings -->
<Row class= "group-header" >
<Cell class= "group-header" >
2022-12-21 20:04:15 -05:00
<Panel class= "group-header"
image="header_core">
2022-12-20 09:27:47 -05:00
<Text class= "group-header" > PLAYERMAT SETTINGS</Text>
</Panel>
</Cell>
</Row>
2022-12-07 10:40:55 -05:00
2022-12-20 09:27:47 -05:00
<!-- Option: enable snap tags -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Enable snap tags</Text>
2022-12-30 16:37:05 -05:00
<Text class= "description" > Only cards with the tag "Asset" will snap (official cards are supported by default). Disable this if you are having issues with custom content.</Text>
2022-12-20 09:27:47 -05:00
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
2022-12-21 20:04:15 -05:00
<Toggle id= "useSnapTags"
onValueChanged="onClick_toggleOption(useSnapTags)"/>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
2022-12-07 10:40:55 -05:00
2022-12-20 09:27:47 -05:00
<!-- Option: show draw 1 button -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Show "Draw 1" button</Text>
<Text class= "description" > Displays a button below the "Upkeep" button that draws a card from your deck. Useful for multi-handed solo play.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
2022-12-21 20:04:15 -05:00
<Toggle id= "showDrawButton"
onValueChanged="onClick_toggleOption(showDrawButton)"/>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
2022-12-07 10:40:55 -05:00
2022-12-20 09:27:47 -05:00
<!-- Option: use clickable clue - counters -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Use clickable clue-counters</Text>
<Text class= "description" > Instead of automatically counting clues in the respective area on your playermat, this displays a clickable counter for clues.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
2022-12-21 20:04:15 -05:00
<Toggle id= "useClueClickers"
onValueChanged="onClick_toggleOption(useClueClickers)"/>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
2022-12-07 10:40:55 -05:00
2023-01-02 05:53:29 -05:00
<!-- Option: play area snap tags -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Enable snap tags for play area</Text>
<Text class= "description" > Only cards with the tag "Location" will snap (official cards are supported by default). Disable this if you are having issues with custom content.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
2023-01-03 17:04:59 -05:00
<Toggle id= "playAreaSnapTags"
onValueChanged="onClick_toggleOption(playAreaSnapTags)"/>
2023-01-02 05:53:29 -05:00
</Cell>
</Row>
2023-01-01 20:23:34 -05:00
<!-- Option: use clickable resource counters -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Use clickable resource counters</Text>
<Text class= "description" > This enables spawning of clickable resource tokens for player cards.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
<Toggle id= "useResourceCounters"
onValueChanged="onClick_toggleOption(useResourceCounters)"/>
</Cell>
</Row>
2023-01-01 04:38:06 -05:00
<!-- Option: splash scenario name on setup -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Show Scenario Title on Setup</Text>
<Text class= "description" > Fade in the name of the scenario for 2 seconds when placing down a scenario.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
<Toggle id= "showTitleSplash"
onValueChanged="onClick_toggleOption(showTitleSplash)"/>
</Cell>
</Row>
2022-12-20 09:27:47 -05:00
<!-- Group: fan - made accessories -->
<Row class= "group-header" >
<Cell class= "group-header" >
2022-12-21 20:04:15 -05:00
<Panel class= "group-header"
image="header_acolyte">
2022-12-20 09:27:47 -05:00
<Text class= "group-header" > FAN-MADE ACCESSORIES</Text>
</Panel>
</Cell>
</Row>
2022-12-07 10:40:55 -05:00
2022-12-20 09:27:47 -05:00
<!-- Option: show token arranger -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
2022-12-21 19:42:32 -05:00
<Text class= "option-header" > Token Arranger</Text>
2022-12-20 09:27:47 -05:00
<Text class= "description" > See the contents of the chaos bag at a glance! This tool displays a sorted table of the tokens to allow easier guessing of your odds.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
2022-12-21 20:04:15 -05:00
<Toggle id= "showTokenArranger"
onValueChanged="onClick_toggleOption(showTokenArranger)"/>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
<!-- Option: show clean up helper -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
2022-12-21 19:42:32 -05:00
<Text class= "option-header" > Clean Up Helper</Text>
2022-12-20 09:27:47 -05:00
<Text class= "description" > Useful for campaign-play: It resets play areas to allow continuous gameplay in the same savegame.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
2022-12-21 20:04:15 -05:00
<Toggle id= "showCleanUpHelper"
onValueChanged="onClick_toggleOption(showCleanUpHelper)"/>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
<!-- Option: show hand helper -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
2022-12-21 19:42:32 -05:00
<Text class= "option-header" > Hand Helper</Text>
2022-12-30 16:37:05 -05:00
<Text class= "description" > Never count your hand cards again! This tool does that for you and additionally enables easy discarding of random cards.</Text>
2022-12-20 09:27:47 -05:00
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
2022-12-21 20:04:15 -05:00
<Toggle id= "showHandHelper"
onValueChanged="onClick_toggleOption(showHandHelper)"/>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
<!-- Option: show chaos bag manager -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
2022-12-21 19:42:32 -05:00
<Text class= "option-header" > Chaos Bag Manager</Text>
2022-12-20 09:27:47 -05:00
<Text class= "description" > Panel for easy addition or removal of chaos tokens to the bag - very useful for EotE because of Frost tokens!</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
2022-12-21 20:04:15 -05:00
<Toggle id= "showChaosBagManager"
onValueChanged="onClick_toggleOption(showChaosBagManager)"/>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
2022-12-30 16:37:05 -05:00
<!-- Option: show attachment helper -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Attachment Helper</Text>
<Text class= "description" > Provides a card-sized bag for cards that are attached to other cards (e.g. Backpack).</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
<Toggle id= "showAttachmentHelper"
onValueChanged="onClick_toggleOption(showAttachmentHelper)"/>
</Cell>
</Row>
2022-12-20 09:27:47 -05:00
<!-- Option: show navigation overlay -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
2022-12-21 19:42:32 -05:00
<Text class= "option-header" > Navigation Overlay</Text>
<Text class= "description" > This enables an overlay for quickly moving the camera to various points on the table.</Text>
2022-12-20 09:27:47 -05:00
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
2022-12-21 20:04:15 -05:00
<Toggle id= "showNavigationOverlay"
onValueChanged="onClick_toggleOption(showNavigationOverlay)"/>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
2022-12-30 16:37:05 -05:00
<!-- Option: show CYOA campaign guides -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > CYOA Campaign Guides</Text>
<Text class= "description" > Displays in a "Choose Your Own Adventure" style redesigned campaign guides.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
<Toggle id= "showCYOA"
onValueChanged="onClick_toggleOption(showCYOA)"/>
</Cell>
</Row>
<!-- Option: show custom playmat images -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Custom Playmat Images</Text>
<Text class= "description" > Places a tool that displays custom playmat images for all cycles in a gallery-like fashion.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
<Toggle id= "showCustomPlaymatImages"
onValueChanged="onClick_toggleOption(showCustomPlaymatImages)"/>
</Cell>
</Row>
<!-- Option: show displacement tool -->
<Row class= "option-text" >
<Cell class= "option-text" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Displacement Tool</Text>
<Text class= "description" > This allows moving all objects on the main playmat in a chosen direction.</Text>
</VerticalLayout>
</Cell>
<Cell class= "option-button" >
<Toggle id= "showDisplacementTool"
onValueChanged="onClick_toggleOption(showDisplacementTool)"/>
</Cell>
</Row>
2022-12-20 09:27:47 -05:00
</TableLayout>
</VerticalScrollView>
</Cell>
</Row>
2022-12-07 10:40:55 -05:00
2022-12-20 09:27:47 -05:00
<!-- Buttons: Defaults and Close -->
<Row preferredHeight= "50" >
<Cell >
2022-12-21 20:04:15 -05:00
<HorizontalLayout minHeight= "55"
flexibleHeight="0"
padding="10 10 5 10"
spacing="225">
<Button class= "bottomButtons"
onClick="onClick_defaultSettings">Load defaults</Button>
<Button class= "bottomButtons"
onClick="onClick_toggleUi(Hidden)">Close</Button>
2022-12-08 06:01:10 -05:00
</HorizontalLayout>
2022-12-20 09:27:47 -05:00
</Cell>
</Row>
2022-12-21 19:42:32 -05:00
</TableLayout>