From 402aaafcb89f1a2aeeeb0a7b9f4f24b371be734b Mon Sep 17 00:00:00 2001 From: matanki-saito Date: Sun, 3 Mar 2019 16:19:35 +0900 Subject: [PATCH] first commit --- .gitignore | 6 + README.md | 2 +- main.py | 280 + resource/interface/DefaultDialog.gui | 1578 +++++ resource/interface/Frontend_settings.gui | 1445 +++++ resource/interface/chatfonts.gfx | 44 + resource/interface/eventwindow.gui | 2222 +++++++ resource/interface/fonts.gfx | 789 +++ resource/interface/frontend.gui | 7013 ++++++++++++++++++++++ resource/interface/menubar.gui | 1238 ++++ resource/interface/province.gui | 2180 +++++++ resource/interface/succession.gui | 443 ++ resource/title.jpg | Bin 0 -> 9934 bytes 13 files changed, 17239 insertions(+), 1 deletion(-) create mode 100644 main.py create mode 100644 resource/interface/DefaultDialog.gui create mode 100644 resource/interface/Frontend_settings.gui create mode 100644 resource/interface/chatfonts.gfx create mode 100644 resource/interface/eventwindow.gui create mode 100644 resource/interface/fonts.gfx create mode 100644 resource/interface/frontend.gui create mode 100644 resource/interface/menubar.gui create mode 100644 resource/interface/province.gui create mode 100644 resource/interface/succession.gui create mode 100644 resource/title.jpg diff --git a/.gitignore b/.gitignore index 894a44c..26e7328 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,9 @@ venv.bak/ # mypy .mypy_cache/ + +.idea +*.iml +mod +tmp +out \ No newline at end of file diff --git a/README.md b/README.md index 24d7b63..ce3995d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # CK2JPModCore -font only +This program assembly CK2 japanese core mod. It only includes font data and UI setting files. diff --git a/main.py b/main.py new file mode 100644 index 0000000..9cfb6fd --- /dev/null +++ b/main.py @@ -0,0 +1,280 @@ +#!/usr/bin/env python +# -*- coding:utf-8 -*- + +import hashlib +import json +import os +import shutil +import tempfile +import urllib.request +import zipfile +from os.path import join + +from boto3.session import Session + +_ = join + + +def download_trans_zip_from_paratranz(project_id, + secret, + out_file_path, + base_url="https://paratranz.cn"): + """ + paratranzからzipをダウンロードする + :param project_id: + :param secret: + :param base_url: + :param out_file_path: + :return: + """ + + request_url = "{}/api/projects/{}/artifacts/download".format(base_url, project_id) + req = urllib.request.Request(request_url) + req.add_header("Authorization", secret) + + with open(out_file_path, "wb") as my_file: + my_file.write(urllib.request.urlopen(req).read()) + + return out_file_path + + +def download_asset_from_github(repository_author, + repository_name, + out_file_path, + release_tag=None, + file_name=None): + """ + githubからアセットをダウンロード。未指定の場合は最新を取得 + :param repository_author: + :param repository_name: + :param release_tag: + :param file_name: + :param out_file_path: + :return: + """ + api_base_url = "https://api.github.com/repos/{}/{}".format(repository_author, repository_name) + + if release_tag is None: + response = urllib.request.urlopen("{}/releases/latest".format(api_base_url)) + content = json.loads(response.read().decode('utf8')) + release_tag = content["tag_name"] + + if file_name is None: + response = urllib.request.urlopen("{}/releases/tags/{}".format(api_base_url, release_tag)) + content = json.loads(response.read().decode('utf8')) + file_name = content["assets"][0]["name"] + + request_url = "{}/{}/{}/releases/download/{}/{}".format("https://github.com", + repository_author, + repository_name, + release_tag, + file_name + ) + req = urllib.request.Request(request_url) + + with open(out_file_path, "wb") as my_file: + my_file.write(urllib.request.urlopen(req).read()) + + return out_file_path + + +def assembly_core_mod_zip_file(resource_font_asset_zip_file_path, + resource_image_file_path, + resource_interface_dir_path, + out_file_path): + """ + コアモッドを作成 + :param resource_font_asset_zip_file_path: githubにあるフォントアセットのzipファイルのパス + :param resource_image_file_path: 画像ファイルパス + :param resource_interface_dir_path: インターフェースディレクトリパス + :param out_file_path: 出力ファイルパス + :return: + """ + + with tempfile.TemporaryDirectory() as temp_dir_path: + # 画像ファイル + shutil.copy(resource_image_file_path, temp_dir_path) + + # interface + shutil.copytree(resource_interface_dir_path, _(temp_dir_path, "interface")) + + # gfx + salvage_files_from_github_font_zip(out_dir_path=_(temp_dir_path, "gfx", "fonts"), + filter_f_f=lambda x: True, + resource_path=resource_font_asset_zip_file_path) + + # zip化する + return shutil.make_archive(out_file_path, 'zip', root_dir=temp_dir_path) + + +def salvage_files_from_github_font_zip(out_dir_path, + filter_f_f, + resource_path): + with zipfile.ZipFile(resource_path) as font_zip: + special_files = filter(filter_f_f, font_zip.namelist()) + + font_zip.extractall(path=out_dir_path, members=special_files) + + +def generate_dot_mod_file(mod_title_name, + mod_file_name, + mod_tags, + mod_image_file_path, + out_dir_path, + mod_user_dir_name=None): + """ + .mod.modファイルを作る + :param mod_title_name: + :param mod_file_name: zipファイルの名前(.zipを含まない) + :param mod_user_dir_name:ユーザ作業ディレクトリ名 + :param mod_tags: Set型 + :param mod_image_file_path: + :param out_dir_path: 出力ディレクトリのパス + :return: 出力ファイルパス + """ + + os.makedirs(out_dir_path, exist_ok=True) + + out_file_path = _(out_dir_path, "{}.mod.mod".format(mod_file_name)) + + if mod_user_dir_name is None: + mod_user_dir_name = mod_file_name + + with open(out_file_path, "w", encoding="utf-8") as fw: + lines = [ + 'name="{}"'.format(mod_title_name), + 'archive="mod/{}.zip"'.format(mod_file_name), + 'user_dir="{}"'.format(mod_user_dir_name), + 'tags={}'.format("{" + " ".join(mod_tags) + "}"), + 'picture="{}"'.format(mod_image_file_path) + ] + + fw.write("\n".join(lines)) + + return out_file_path + + +def generate_distribution_file(url, + mod_file_path, + out_file_path): + """ + trielaで使用する配布用設定ファイルを作成する。 + :param url: + :param mod_file_path: + :param out_file_path: + :return: + """ + + with open(mod_file_path, 'rb') as fr: + md5 = hashlib.md5(fr.read()).hexdigest() + + d_new = {'file_md5': md5, + 'url': url, + 'file_size': os.path.getsize(mod_file_path)} + + with open(out_file_path, "w", encoding="utf-8") as fw: + json.dump(d_new, fw, indent=2, ensure_ascii=False) + + +def upload_mod_to_s3(upload_file_path, + name, + bucket_name, + access_key, + secret_access_key, + region): + """ + S3にファイルをアップロードする + :param upload_file_path: + :param name: + :param bucket_name: + :param access_key: + :param secret_access_key: + :param region: + :return: CDNのURL + """ + session = Session(aws_access_key_id=access_key, + aws_secret_access_key=secret_access_key, + region_name=region) + + s3 = session.resource('s3') + s3.Bucket(bucket_name).upload_file(upload_file_path, name) + + return "{}/{}".format("https://d3fxmsw7mhzbqi.cloudfront.net", name) + + +def pack_mod(out_file_path, + mod_zip_path, + mod_title_name, + mod_file_name, + mod_tags, + mod_image_file_path, + mod_user_dir_name=None): + with tempfile.TemporaryDirectory() as temp_dir_path: + # .mod.modファイルを作成する + generate_dot_mod_file( + mod_title_name=mod_title_name, + mod_file_name=mod_file_name, + mod_tags=mod_tags, + mod_user_dir_name=mod_user_dir_name, + mod_image_file_path=mod_image_file_path, + out_dir_path=temp_dir_path) + + # zipをコピー + shutil.copy(mod_zip_path, _(temp_dir_path, "{}.zip".format(mod_file_name))) + + return shutil.make_archive(out_file_path, 'zip', root_dir=temp_dir_path) + + +def main(): + # 一時フォルダ用意 + os.makedirs(_(".", "tmp"), exist_ok=True) + os.makedirs(_(".", "out"), exist_ok=True) + + # フォントセットの最新版をダウンロードする + font_file_path = download_asset_from_github(repository_author="matanki-saito", + repository_name="CK2Fontcreate", + out_file_path=_(".", "tmp", "font.zip")) + + print("font_file_path:{}".format(font_file_path)) + + # コアModを構築する + core_mod_zip_file_path = assembly_core_mod_zip_file( + resource_font_asset_zip_file_path=font_file_path, + resource_image_file_path=_(".", "resource", "title.jpg"), + resource_interface_dir_path=_(".", "resource", "interface"), + out_file_path=_(".", "tmp", "mod")) + + print("core_mod_zip_file_path:{}".format(core_mod_zip_file_path)) + + # packする + mod_pack_file_path = pack_mod( + out_file_path=_(".", "out", "ck2_core_mod"), + mod_file_name="jpmod_core", + mod_zip_path=core_mod_zip_file_path, + mod_title_name="Japanese Language Mod Core", + mod_tags={"Translation", "Localisation"}, + mod_image_file_path="title.jpg", + mod_user_dir_name="JLM") + + print("mod_pack_file_path:{}".format(mod_pack_file_path)) + + # S3にアップロード from datetime import datetime as dt + from datetime import datetime as dt + cdn_url = upload_mod_to_s3( + upload_file_path=mod_pack_file_path, + name=dt.now().strftime('%Y-%m-%d_%H-%M-%S-{}'.format("ck2-core")), + bucket_name="triela-file", + access_key=os.environ.get("AWS_S3_ACCESS_KEY"), + secret_access_key=os.environ.get("AWS_S3_SECRET_ACCESS_KEY"), + region="ap-northeast-1") + + print("cdn_url:{}".format(cdn_url)) + + # distributionファイルを生成する + generate_distribution_file(url=cdn_url, + out_file_path=_(".", "out", "dist.v2.json"), + mod_file_path=mod_pack_file_path) + + +if __name__ == "__main__": + main() diff --git a/resource/interface/DefaultDialog.gui b/resource/interface/DefaultDialog.gui new file mode 100644 index 0000000..1dc51d6 --- /dev/null +++ b/resource/interface/DefaultDialog.gui @@ -0,0 +1,1578 @@ +guiTypes = { + + eu3dialogtype = { + name = "DefaultDialog" + backGround="Background" + position = { x=-250 y=-140 } + size = { x=500 y=300 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + orientation="CENTER" + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 32 } + Orientation = "UPPER_LEFT" + } + + + instantTextBoxType = { + name = "Title" + position = { x = 85 y = 40 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "Description" + position = { x = 85 y = 84 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 200 + format = centre + } + + guiButtonType = { + name ="LeftShield" + quadTextureSprite = "GFX_shield_medium" + position = { x= 30 y = 23 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="RightShield" + quadTextureSprite = "GFX_shield_medium" + position = { x= 408 y = 23 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "AgreeButton" + position = { x=267 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + clicksound=generic_click_04 + } + + + guiButtonType = { + name = "DeclineButton" + position = { x=85 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CANCEL" + buttonFont = "vic_18" + clicksound=generic_click_04 + shortcut = "ESCAPE" + } + } + + ### DEFAULT CONFIRM + eu3dialogtype = { + name = "DefaultConfirm" + backGround="Background" + position = { x=-250 y=-140 } + orientation="CENTER" + size = { x=500 y=300 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 32 } + Orientation = "UPPER_LEFT" + } + + + instantTextBoxType = { + name = "Title" + position = { x = 50 y = 40 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 400 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "Description" + position = { x = 40 y = 75 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 410 + maxHeight = 195 + format = centre + } + + + + guiButtonType = { + name = "AgreeButton" + position = { x=267 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + clicksound=generic_click_04 + } + + + guiButtonType = { + name = "DeclineButton" + position = { x=85 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CANCEL" + buttonFont = "vic_18" + shortcut = "ESCAPE" + clicksound=generic_click_04 + } + } + + ### DEFAULT CONFIRM + eu3dialogtype = { + name = "DefaultConfirm_Consideration" + backGround="Background" + position = { x=-250 y=-140 } + orientation="CENTER" + size = { x=500 y=300 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 32 } + Orientation = "UPPER_LEFT" + } + + + instantTextBoxType = { + name = "Title" + position = { x = 50 y = 40 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 400 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "Description" + position = { x = 40 y = 75 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 410 + maxHeight = 195 + format = centre + } + + guiButtonType = { + name = "AgreeButton" + position = { x=327 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + clicksound=generic_click_04 + } + + guiButtonType = { + name = "ConsiderationButton" + position = { x=178 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CONSIDERATION" + buttonFont = "vic_18" + shortcut = "SPACE" + clicksound=generic_click_04 + pdx_tooltip = "CONSIDERATION_BUTTON_TOOLTIP" + } + + + guiButtonType = { + name = "DeclineButton" + position = { x=25 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CANCEL" + buttonFont = "vic_18" + shortcut = "ESCAPE" + clicksound=generic_click_04 + } + } + + ### BIG CONFIRM + eu3dialogtype = { + name = "BigConfirm" + backGround="Background" + position = { x=-250 y=-190 } + orientation="CENTER" + size = { x=500 y=400 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 32 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Title" + position = { x = 85 y = 40 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "Description" + position = { x = 40 y = 80 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 405 + maxHeight = 250 + format = centre + } + + guiButtonType = { + name = "AgreeButton" + position = { x=267 y =337} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + clicksound=generic_click_04 + } + + guiButtonType = { + name = "DeclineButton" + position = { x=85 y =337} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CANCEL" + buttonFont = "vic_18" + shortcut = "ESCAPE" + clicksound=generic_click_04 + } + } + + ### BIG CONFIRM + eu3dialogtype = { + name = "BigConfirm_Consideration" + backGround="Background" + position = { x=-250 y=-190 } + orientation="CENTER" + size = { x=500 y=400 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 32 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Title" + position = { x = 85 y = 40 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "Description" + position = { x = 40 y = 80 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 405 + maxHeight = 250 + format = centre + } + + guiButtonType = { + name = "AgreeButton" + position = { x=327 y =337} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + clicksound=generic_click_04 + } + + guiButtonType = { + name = "ConsiderationButton" + position = { x=178 y =337} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CONSIDERATION" + buttonFont = "vic_18" + shortcut = "SPACE" + clicksound=generic_click_04 + pdx_tooltip = "CONSIDERATION_BUTTON_TOOLTIP" + } + + guiButtonType = { + name = "DeclineButton" + position = { x=25 y =337} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CANCEL" + buttonFont = "vic_18" + shortcut = "ESCAPE" + clicksound=generic_click_04 + } + } + + ### END GAME DIALOG + eu3dialogtype = { + name = "EndGameDialog" + backGround="Background" + position = { x=-500 y=-390 } + size = { x=1000 y=640 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation="CENTER" + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_buildview_bg_area" + } + iconType = + { + name ="endgame_bg" + spriteType = "GFX_endgame_bg" + position = { x= -23 y = -2 } + } + + instantTextBoxType = { + name = "game_over_label" + position = { x = 300 y = 19 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "END_GAME_OVER" + maxWidth = 400 + maxHeight = 20 + format = centre + fixedsize = yes + } + + iconType = + { + name ="DynastyShieldYou" + spriteType = "GFX_CoA_big" + position = { x = 338 y = 175 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Dynasty_label" + position = { x = 300 y = 95 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "END_YOUR_SCORE" + maxWidth = 364 + maxHeight = 22 + fixedsize = yes + format = centre + } + + instantTextBoxType = { + name = "Score_label" + position = { x = 458 y = 156 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "END_YOUR_SCORE" + maxWidth = 190 + maxHeight = 30 + fixedsize = yes + format = centre + } + instantTextBoxType = { + name = "Score" + position = { x = 472 y = 179 } + textureFile = "" + font = "vic_36_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 120 + maxHeight = 40 + format = right + fixedsize = yes + } + iconType = + { + name ="Score_icon" + spriteType = "GFX_icon_score" + position = { x = 594 y = 182 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = + { + name = "decorative_letter" + position = { x = 307 y = 276 } + textureFile = "" + font = "decorative" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 120 + maxHeight = 120 + format = left + } + + instantTextBoxType = + { + name = "Description_firstpart" + position = { x = 386 y = 280 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" +# maxWidth = 270 + maxWidth = 285 +# maxHeight = 88 + maxHeight = 78 + format = left + } + + instantTextBoxType = + { + name = "Description" + position = { x = 309 y = 352 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 355 + maxHeight = 340 + format = left + } + + listboxType = { + name = "dynasties_list" + position = { x = 37 y = 93 } + backGround="" + size = { x=227 y = 608} + spacing = 1 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "historical_dynasties_label" + position = { x = 42 y = 76 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "END_HISTORICAL_DYNASTIES" + maxWidth = 215 + maxHeight = 20 + format = centre + fixedsize = yes + } + + guiButtonType = { + name = "ChronicleButton" + position = { x=90 y = 704 } + quadTextureSprite ="GFX_big_button_220" + buttonText = "OPEN_CHRONICLE" + buttonFont = "vic_22" + } + + guiButtonType = { + name = "AgreeButton" + position = { x=390 y = 704 } + quadTextureSprite ="GFX_big_button_220" + buttonText = "QUIT_TO_MENU" + buttonFont = "vic_22" + } + + guiButtonType = { + name = "ConvertButton" + position = { x=690 y = 704 } + quadTextureSprite ="GFX_big_button_220" + buttonText = "MENU_BAR_GAME_CONVERT" + buttonFont = "vic_22" + pdx_tooltip = "MENU_BAR_GAME_CONVERT_DEL" + } + } + + ### entry dynasties. + windowType = + { + name = "EndGameDynastyItem" + backGround="" + position = { x=0 y= 0 } + size = { x=227 y=76 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + orientation="UPPER_LEFT" + + iconType = + { + name ="background" + spriteType = "GFX_endgame_dynitem_bg" + position = { x = 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = + { + name = "Score" + position = { x = 140 y = 45 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 57 + maxHeight = 18 + format = centre + } + iconType = + { + name ="Shield" + spriteType = "GFX_CoA_medium" + position = { x = 26 y = 27 } + Orientation = "UPPER_LEFT" + } + instantTextBoxType = + { + name = "Name" + position = { x = 3 y = 7 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 221 + maxHeight = 21 + fixedsize = yes + format = centre + } + } + + ### char entry + windowType = + { + name = "EndGameDialogRulerItem" + backGround="" + position = { x=0 y= 0 } + size = { x=325 y=85 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + orientation="UPPER_RIGHT" + + iconType = + { + name ="endgame_char_entry" + spriteType = "GFX_endgame_char_entry" + position = { x = 53 y = 0 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Name" + position = { x = 133 y = 15 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 180 + maxHeight = 38 + format = left + fixedsize = yes + } + instantTextBoxType = { + name = "Dates" + position = { x = 133 y = 50 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 180 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = { + name = "Score" + position = { x = 240 y = 57 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 50 + maxHeight = 20 + format = right + fixedsize = yes + } + guiButtonType = { + name ="portrait" + quadTextureSprite= "GFX_char_50" + position = { x= 69 y = 15 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 63 y = 8 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="score_icon" + spriteType = "GFX_icon_score" + position = { x = 289 y = 50 } + Orientation = "UPPER_LEFT" + } + } + + ### CHRONICLE DIALOG + eu3dialogtype = { + name = "ChronicleDialog" + backGround = "Background" + position = { x = -564 y = -406 } + size = { x = 1128 y = 812 } + moveable = 0 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + Orientation = "CENTER" + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_buildview_bg_area" + } + iconType = { + name ="chronicle_bg" + spriteType = "GFX_chronicle_bg" + position = { x = 0 y = 0 } + } + + instantTextBoxType = { + name = "chronicle_label" + position = { x = 96 y = 25 } + textureFile = "" + font = "vic_22" + borderSize = { x = 0 y = 0 } + maxWidth = 935 + maxHeight = 20 + format = centre + fixedsize = yes + } + + listboxType = { + name = "left_list" + position = { x = 86 y = 88 } + backGround = "" + size = { x = 500 y = 598} + spacing = 1 + borderSize = { x = 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + listboxType = { + name = "right_list" + position = { x = 598 y = 88 } + backGround = "" + size = { x = 500 y = 598 } + spacing = 1 + borderSize = { x = 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "AgreeButton" + position = { x = 454 y = 735 } + quadTextureSprite = "GFX_big_button_220" + buttonText = "QUIT_TO_MENU" + buttonFont = "vic_22" + shortcut = "ESCAPE" + } + guiButtonType = { + name = "ScoreButton" + position = { x = 191 y = 735 } + quadTextureSprite = "GFX_big_button_220" + buttonText = "SCORE_SCREEN" + buttonFont = "vic_22" + } + guiButtonType = { + name = "ExportButton" + position = { x = 717 y = 735 } + quadTextureSprite ="GFX_big_button_220" + buttonText = "EXPORT" + buttonFont = "vic_22" + pdx_tooltip = "EXPORT_DEL" + } + + guiButtonType = { + name = "PreviousPage" + position = { x = 49 y = 628 } + quadTextureSprite = "GFX_chronicle_previous_page" + clicksound = turning_page + } + + guiButtonType = { + name = "NextPage" + position = { x = 987 y = 628 } + quadTextureSprite = "GFX_chronicle_next_page" + clicksound = turning_page + } + } + + ### chronicle date entry + windowType = + { + name = "ChronicleDateItem" + backGround= "" + position = { x = 0 y = 0 } + moveable = 0 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + orientation = "UPPER_RIGHT" + + iconType = { + name ="chronicle_divider" + spriteType = "GFX_chronicle_divider" + position = { x = -17 y = 0 } + } + instantTextBoxType = { + name = "date" + position = { x = 106 y = 8 } + textureFile = "" + font = "vic_18_black" + borderSize = { x = 0 y = 0 } + text = "UI_MISSING_TEXT" + maxWidth = 230 + maxHeight = 20 + format = centre + fixedsize = yes + } + } + + ### chronicle divider entry + windowType = + { + name = "ChronicleDivider" + backGround= "" + position = { x = 0 y = 0 } + moveable = 0 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + orientation = "UPPER_RIGHT" + + iconType = { + name ="chronicle_divider" + spriteType = "GFX_chronicle_divider_nodate" + position = { x = 1 y = 0 } + } + } + + ### chronicle start entry + windowType = + { + name = "ChronicleStartItem" + backGround= "" + position = { x = 0 y = 0 } + moveable = 0 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + orientation = "UPPER_RIGHT" + + + instantTextBoxType = { + name = "decorative_letter" + position = { x = 10 y = 0 } + textureFile = "" + font = "decorative_color" + borderSize = { x = 0 y = 0 } + text = "" + maxWidth = 120 + maxHeight = 120 + format = left + } + + instantTextBoxType = { + name = "Description_firstpart" + position = { x = 80 y = 4 } + textureFile = "" + font = "vic_18_black" + borderSize = { x = 0 y = 0 } + text = "" + maxWidth = 365 + maxHeight = 88 + format = left + } + instantTextBoxType = { + name = "Description_firstpart_short" + position = { x = 80 y = 4 } + textureFile = "" + font = "vic_18_black" + borderSize = { x = 0 y = 0 } + text = "" + maxWidth = 300 + maxHeight = 88 + format = left + } + + instantTextBoxType = { + name = "Description" + position = { x = 0 y = 76 } + textureFile = "" + font = "vic_18_black" + borderSize = { x = 0 y = 0 } + text = "" + maxWidth = 445 + format = left + } + + guiButtonType = { + name ="portrait" + quadTextureSprite = "GFX_char_50" + position = { x = 395 y = 7 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + + guiButtonType = { + name ="portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 388 y = 0 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + } + + ### chronicle entry + windowType = + { + name = "ChronicleItem" + backGround = "" + position = { x = 0 y = 0 } + moveable = 0 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + orientation = "UPPER_RIGHT" + + instantTextBoxType = + { + name = "Description" + position = { x = 0 y = 0 } + textureFile = "" + font = "vic_18_black" + borderSize = { x = 0 y = 0 } + text = "" + maxWidth = 445 + format = left + } + instantTextBoxType = + { + name = "Description_short" + position = { x = 0 y = 0 } + textureFile = "" + font = "vic_18_black" + borderSize = { x = 0 y = 0 } + text = "" + maxWidth = 380 + format = left + } + + guiButtonType = + { + name ="portrait" + quadTextureSprite = "GFX_char_50" + position = { x = 395 y = 7 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + + guiButtonType = + { + name ="portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 388 y = 0 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + } + + ### chronicle picture + windowType = + { + name = "ChroniclePicture" + backGround = "" + position = { x = 0 y = 0 } + moveable = 0 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + orientation = "UPPER_RIGHT" + + iconType = { + name ="image_frame" + spriteType = "GFX_chronicle_image_frame" + position = { x= 71 y = 0 } + } + iconType = { + name ="chronicle_picture" + spriteType = "GFX_evt_throne_room" + position = { x= 111 y = 13 } + Orientation = "UPPER_LEFT" + scale = 0.5 + } + } + + positionType = { + name = "after_date_offset" + position = { x = 0 y = 18 } + } + positionType = { + name = "after_divider_offset" + position = { x = 0 y = -5 } + } + positionType = { + name = "after_firstpart_offset" + position = { x = 0 y = 3 } + } + positionType = { + name = "after_description_offset" + position = { x = 0 y = 3 } + } + positionType = { + name = "after_picture_offset" + position = { x = 0 y = 13 } + } + positionType = { + name = "after_portrait_offset" + position = { x = 0 y = 0 } + } + + ### DEFAULT INFO DIALOG + eu3dialogtype = { + name = "DefaultInfoDialog" + backGround="Background" + position = { x=-250 y=-140 } + size = { x=500 y=300 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + orientation="CENTER" + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 32 } + Orientation = "UPPER_LEFT" + } + + + instantTextBoxType = { + name = "Title" + position = { x = 85 y = 40 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "Description" + position = { x = 85 y = 84 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 200 + format = centre + } + + guiButtonType = { + name = "AgreeButton" + position = { x=176 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ESCAPE" + clicksound = generic_click_04 + } + + + } + + ## SHIELDED INFO DIALOG + eu3dialogtype = { + name = "ShieldedInformationDialog" + backGround="Background" + position = { x=-250 y=-140 } + size = { x=500 y=300 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + orientation="CENTER" + + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 32 } + Orientation = "UPPER_LEFT" + } + + + instantTextBoxType = { + name = "Title" + position = { x = 85 y = 40 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "Description" + position = { x = 85 y = 84 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 200 + format = centre + } + + shieldtype = + { + name ="LeftShield" + spriteType = "GFX_shield_medium" + position = { x= 30 y = 23 } + } + + shieldtype = + { + name ="RightShield" + spriteType = "GFX_shield_medium" + position = { x= 408 y = 23 } + } + + + guiButtonType = { + name = "AgreeButton" + position = { x=176 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + } + + + } + + ### DEFAULT POPUP + eu3dialogtype = { + name = "DefaultPopup" + backGround="Background" + position = { x=-250 y=-140 } + size = { x=500 y=300 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 42 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Header" + position = { x = 85 y = 28 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 20 + fixedsize = yes + format = centre + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Line1" + position = { x = 85 y = 50 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 32 + format = centre + fixedsize = yes + + + } + + instantTextBoxType = { + name = "Line2" + position = { x = 75 y = 85 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 350 + maxHeight = 0 + + fixedsize = yes + format = centre + + + } + + instantTextBoxType = { + name = "Line3" + position = { x = 75 y = 110 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 350 + maxHeight = 0 + + fixedsize = yes + format = centre + + + } + + instantTextBoxType = { + name = "Line4" + position = { x = 75 y = 135 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 350 + maxHeight = 0 + + format = centre + fixedsize = yes + + } + + instantTextBoxType = { + name = "Line5" + position = { x = 75 y = 160 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 350 + maxHeight = 0 + + format = centre + fixedsize = yes + + } + + instantTextBoxType = { + name = "Line6" + position = { x = 75 y = 185 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 350 + maxHeight = 0 + + format = centre + fixedsize = yes + + } + + shieldtype = + { + name ="LeftShield" + spriteType = "GFX_shield_medium" + position = { x= 30 y = 33 } + } + + shieldtype = + { + name ="RightShield" + spriteType = "GFX_shield_medium" + position = { x= 408 y = 33 } + } + + + guiButtonType = { + name = "AgreeButton" + position = { x=322 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + } + + + guiButtonType = { + name = "DeclineButton" + position = { x=30 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CANCEL" + buttonFont = "vic_18" + shortcut = "ESCAPE" + } + + guiButtonType = { + name = "CenterOK" + position = { x=176 y =237} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + } + + + } + + ### BIG CONFIRM + eu3dialogtype = { + name = "EulaConfirm" + backGround="Background" + position = { x=-250 y=-190 } + orientation="CENTER" + size = { x=500 y=400 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 32 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Title" + position = { x = 85 y = 40 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "Description" + position = { x = 40 y = 80 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 405 + maxHeight = 32 + format = centre + } + + listboxType = + { + name ="eula" + position = { x = 40 y = 130 } + backGround="" + size = { x= 410 y =210 } + Orientation = "UPPER_LEFT" + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + } + + guiButtonType = { + name = "AgreeButton" + position = { x=267 y =337} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + clicksound=generic_click_04 + } + + guiButtonType = { + name = "DeclineButton" + position = { x=85 y =337} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CANCEL" + buttonFont = "vic_18" + shortcut = "ESCAPE" + clicksound=generic_click_04 + } + } + + positionType = { + name = "popup_bottom_button_pos" + position = { x = 104 y = 70 } + } + + positionType = { + name = "popup_textline_dist" + position = { x = 50 y = 0 } + } + + positionType = { + name = "popup_textline_dist_two" + position = { x = 0 y = 15 } + } + + windowType = { + name = "eula_line" + backGround="" + position = { x=0 y=5 } + size = { x=410 y= 16 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + instantTextBoxType = { + name = "eula_line_text" + position = { x = 0 y = 0 } + textureFile = "" + font = "Arial12_black_no_special" + borderSize = {x = 0 y = 0 } + text = "" + maxWidth = 410 + maxHeight = 16 + + Orientation = "UPPER_LEFT" + } + + } + + ### BIG CONFIRM + eu3dialogtype = { + name = "ContinueFailed" + backGround="Background" + position = { x=-250 y=-190 } + orientation="CENTER" + size = { x=500 y=400 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + iconType = + { + name ="message_band" + spriteType = "GFX_dialog_banner" + position = { x= 11 y = 32 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Title" + position = { x = 85 y = 40 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "Description" + position = { x = 40 y = 80 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 405 + maxHeight = 250 + format = left + } + + guiButtonType = { + name = "AgreeButton" + position = { x=267 y =337} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + shortcut = "ENTER" + clicksound=generic_click_04 + } + + guiButtonType = { + name = "DeclineButton" + position = { x=85 y =337} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "CANCEL" + buttonFont = "vic_18" + shortcut = "ESCAPE" + clicksound=generic_click_04 + } + } +} + diff --git a/resource/interface/Frontend_settings.gui b/resource/interface/Frontend_settings.gui new file mode 100644 index 0000000..52bbb14 --- /dev/null +++ b/resource/interface/Frontend_settings.gui @@ -0,0 +1,1445 @@ +#### Frontend Settings menu #### + +guiTypes = { + windowType = { + name = "menu_settings" + backGround="" + position = { x=-116 y =-149 } + size = { x=240 y = 500 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + orientation = CENTER + + iconType = + { + name ="menu_bg" + spriteType = "GFX_menu" + position = { x= -51 y = -65 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="menu_settings_bg" + spriteType = "GFX_menu_settings_bg" + position = { x= 33 y = 20 } + } + instantTextBoxType={ + position = {x = 30 y = 30 } + name = "settings_label" + font = "vic_22" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 22 + text = "SM_SETTINGS" + orientation = "UPPER_LEFT" + format = centre + fixedsize = yes + } + + iconType = + { + name ="settings_tab_bar" + spriteType = "GFX_settings_tab_bar" + position = { x= -16 y = 82 } + } + + guiButtonType = { + name = "settings_tab_1" + position = { x = -11 y = 60 } + quadTextureSprite ="GFX_settings_tab_new" + } + + guiButtonType = { + name = "settings_tab_2" + position = { x = 53 y = 60 } + quadTextureSprite ="GFX_settings_tab_new" + } + + guiButtonType = { + name = "settings_tab_3" + position = { x = 117 y = 60 } + quadTextureSprite ="GFX_settings_tab_new" + } + + guiButtonType = { + name = "settings_tab_4" + position = { x = 181 y = 60 } + quadTextureSprite ="GFX_settings_tab_new" + } + + instantTextBoxType={ + position = {x = -12 y = 71 } + name = "gamesettings_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 64 + maxHeight = 18 + text = "SM_GAME" + orientation = "UPPER_LEFT" + format = centre + fixedsize = yes + } + + instantTextBoxType={ + position = {x = 52 y = 71 } + name = "videosettings_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 64 + maxHeight = 18 + text = "SM_VIDEO" + orientation = "UPPER_LEFT" + format = centre + fixedsize = yes + } + + instantTextBoxType={ + position = {x = 116 y = 71 } + name = "audiosettings_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 64 + maxHeight = 18 + text = "SM_AUDIO" + orientation = "UPPER_LEFT" + format = centre + fixedsize = yes + } + + instantTextBoxType={ + position = {x = 180 y = 71 } + name = "controlssettings_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 64 + maxHeight = 18 + text = "SM_CONTROLS" + orientation = "UPPER_LEFT" + format = centre + fixedsize = yes + } + + + ##### Subwindow AUDIO settings ############################################ + + windowType = { + name = "menu_settings_AUDIO" + backGround="" + position = { x= 0 y = 100 } + size = { x=240 y = 500 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + + instantTextBoxType={ + position = {x = 5 y = 10 } + name = "mastervolume_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "SM_MASTER_VOLUME" + orientation = "UPPER_LEFT" + } + + scrollbarType = { + name = "mastervolume_slider" + slider = "landslider_SliderButton" + track= "landslider_TrackButton" + leftbutton = "landslider_upButton" + rightbutton = "landslider_downButton" + size = {x =120 y =16 } + position = {x= 110 y =10} + priority = 100 + borderSize = {x =16 y = 16} + maxValue = 100 + minValue = 0 + stepSize =1 + startValue = 20 + horizontal = 1 + + guiButtonType = { + name = "landslider_SliderButton" + quadTextureSprite = "yearslider_slider2" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + guiButtonType = { + name = "landslider_TrackButton" + quadTextureSprite = "yearslider_background" + position = { x=0 y =20} + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_upButton" + quadTextureSprite = "yearslider_leftbutton" + position = { x=0 y =0} + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_downButton" + quadTextureSprite = "yearslider_rightbutton" + position = { x=0 y =120} + } + + + + } + + + instantTextBoxType={ + position = {x = 5 y = 40 } + name = "effectvolume_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "SM_EFFECT_VOLUME" + orientation = "UPPER_LEFT" + } + + + scrollbarType = { + name = "effectvolume_slider" + slider = "landslider_SliderButton" + track= "landslider_TrackButton" + leftbutton = "landslider_upButton" + rightbutton = "landslider_downButton" + size = {x =120 y =16 } + position = {x= 110 y =40} + priority = 100 + borderSize = {x =16 y = 16} + maxValue = 100 + minValue = 0 + stepSize =1 + startValue = 20 + horizontal = 1 + + guiButtonType = { + name = "landslider_SliderButton" + quadTextureSprite = "yearslider_slider2" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + guiButtonType = { + name = "landslider_TrackButton" + quadTextureSprite = "yearslider_background" + position = { x=0 y =20} + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_upButton" + quadTextureSprite = "yearslider_leftbutton" + position = { x=0 y =0} + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_downButton" + quadTextureSprite = "yearslider_rightbutton" + position = { x=0 y =120} + } + + } + + instantTextBoxType={ + position = {x = 5 y = 70 } + name = "musicvolume_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "SM_MUSIC_VOLUME" + orientation = "UPPER_LEFT" + } + + + scrollbarType = { + name = "musicvolume_slider" + slider = "landslider_SliderButton" + track= "landslider_TrackButton" + leftbutton = "landslider_upButton" + rightbutton = "landslider_downButton" + size = {x =120 y =16 } + position = {x= 110 y =70} + priority = 100 + borderSize = {x =16 y = 16} + maxValue = 100 + minValue = 0 + stepSize =1 + startValue = 20 + horizontal = 1 + + guiButtonType = { + name = "landslider_SliderButton" + quadTextureSprite = "yearslider_slider2" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + guiButtonType = { + name = "landslider_TrackButton" + quadTextureSprite = "yearslider_background" + position = { x=0 y =20} + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_upButton" + quadTextureSprite = "yearslider_leftbutton" + position = { x=0 y =0} + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_downButton" + quadTextureSprite = "yearslider_rightbutton" + position = { x=0 y =120} + } + + + + } + + instantTextBoxType={ + position = {x = 5 y = 100 } + name = "ambient_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "AMBIENT" + orientation = "UPPER_LEFT" + } + + scrollbarType = { + name = "ambient_slider" + slider = "landslider_SliderButton" + track= "landslider_TrackButton" + leftbutton = "landslider_upButton" + rightbutton = "landslider_downButton" + size = {x =120 y =16 } + position = {x= 110 y =100} + priority = 100 + borderSize = {x =16 y = 16} + maxValue = 100 + minValue = 0 + stepSize =1 + startValue = 20 + horizontal = 1 + + guiButtonType = { + name = "landslider_SliderButton" + quadTextureSprite = "yearslider_slider2" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + guiButtonType = { + name = "landslider_TrackButton" + quadTextureSprite = "yearslider_background" + position = { x=0 y =20} + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_upButton" + quadTextureSprite = "yearslider_leftbutton" + position = { x=0 y =0} + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_downButton" + quadTextureSprite = "yearslider_rightbutton" + position = { x=0 y =120} + } + + + + } + + checkboxType = { + name = "context_sound_checkbox" + position = { x = 5 y = 120 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 40 y = 125 } + name = "context_sound_label" + font = "small_white" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "SM_CONTEXTSOUND" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + checkboxType = { + name = "context_music_checkbox" + position = { x = 5 y = 150 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 40 y = 155 } + name = "context_music_label" + font = "small_white" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "SM_CONTEXTMUSIC" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + + checkboxType = { + name = "death_sound_checkbox" + position = { x = 5 y = 180 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 40 y = 185 } + name = "death_sound_label" + font = "small_white" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "SM_DEATH_SOUND" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + } + + + + ##### Subwindow Controls settings ############################################ + + windowType = { + name = "menu_settings_CONTROLS" + backGround="" + position = { x= 0 y = 100 } + size = { x=240 y = 500 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + + instantTextBoxType={ + position = {x = 30 y = 10 } + name = "scrollspeed_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "SM_SCROLL_SPEED" + orientation = "UPPER_LEFT" + format = centre + } + + scrollbarType = { + name = "scrollspeed_slider" + slider = "landslider_SliderButton" + track= "landslider_TrackButton" + leftbutton = "landslider_upButton" + rightbutton = "landslider_downButton" + size = {x =172 y =16 } + position = {x= 30 y =30} + priority = 100 + borderSize = {x =16 y = 16} + maxValue = 100 + minValue = 0 + stepSize =1 + startValue = 20 + horizontal = 1 + + guiButtonType = { + name = "landslider_SliderButton" + quadTextureSprite = "yearslider_slider2" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + guiButtonType = { + name = "landslider_TrackButton" + quadTextureSprite = "yearslider_background" + position = { x=0 y =20} + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_upButton" + quadTextureSprite = "yearslider_leftbutton" + position = { x=0 y =0} + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_downButton" + quadTextureSprite = "yearslider_rightbutton" + position = { x=0 y =120} + } + + + + } + + + instantTextBoxType={ + position = {x = 30 y = 50 } + name = "zoomspeed_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "SM_ZOOM_SPEED" + orientation = "UPPER_LEFT" + format = centre + } + + + scrollbarType = { + name = "zoomspeed_slider" + slider = "landslider_SliderButton" + track= "landslider_TrackButton" + leftbutton = "landslider_upButton" + rightbutton = "landslider_downButton" + size = {x =172 y =16 } + position = {x= 30 y =70} + priority = 100 + borderSize = {x =16 y = 16} + maxValue = 100 + minValue = 0 + stepSize =1 + startValue = 20 + horizontal = 1 + + guiButtonType = { + name = "landslider_SliderButton" + quadTextureSprite = "yearslider_slider2" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + guiButtonType = { + name = "landslider_TrackButton" + quadTextureSprite = "yearslider_background" + position = { x=0 y =20} + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_upButton" + quadTextureSprite = "yearslider_leftbutton" + position = { x=0 y =0} + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_downButton" + quadTextureSprite = "yearslider_rightbutton" + position = { x=0 y =120} + } + + } + + + instantTextBoxType={ + position = {x = 30 y = 90 } + name = "cameraspeed_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "SM_CAMERA_SPEED" + orientation = "UPPER_LEFT" + format = centre + } + + + scrollbarType = { + name = "cameraspeed_slider" + slider = "landslider_SliderButton" + track= "landslider_TrackButton" + leftbutton = "landslider_upButton" + rightbutton = "landslider_downButton" + size = {x =172 y =16 } + position = {x= 30 y =110} + priority = 100 + borderSize = {x =16 y = 16} + maxValue = 100 + minValue = 0 + stepSize =1 + startValue = 20 + horizontal = 1 + + guiButtonType = { + name = "landslider_SliderButton" + quadTextureSprite = "yearslider_slider2" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + guiButtonType = { + name = "landslider_TrackButton" + quadTextureSprite = "yearslider_background" + position = { x=0 y =20} + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_upButton" + quadTextureSprite = "yearslider_leftbutton" + position = { x=0 y =0} + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_downButton" + quadTextureSprite = "yearslider_rightbutton" + position = { x=0 y =120} + } + } + + instantTextBoxType={ + position = {x = 30 y = 130 } + name = "cameratilt_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "SM_CAMERA_TILT" + orientation = "UPPER_LEFT" + format = centre + } + + scrollbarType = { + name = "cameratilt_slider" + slider = "landslider_SliderButton" + track= "landslider_TrackButton" + leftbutton = "landslider_upButton" + rightbutton = "landslider_downButton" + size = {x =172 y =16 } + position = {x= 30 y =150} + priority = 100 + borderSize = {x =16 y = 16} + maxValue = 100 + minValue = 0 + stepSize =1 + startValue = 20 + horizontal = 1 + + guiButtonType = { + name = "landslider_SliderButton" + quadTextureSprite = "yearslider_slider2" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + guiButtonType = { + name = "landslider_TrackButton" + quadTextureSprite = "yearslider_background" + position = { x=0 y =20} + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_upButton" + quadTextureSprite = "yearslider_leftbutton" + position = { x=0 y =0} + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_downButton" + quadTextureSprite = "yearslider_rightbutton" + position = { x=0 y =120} + } + } + + + checkboxType = { + name = "centered_zoomin_checkbox" + position = { x = 40 y = 175 } + quadTextureSprite ="GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + } + + instantTextBoxType={ + position = {x = 70 y = 180 } + name = "centered_zoomin_label" + font = "small_white" + borderSize = {x = 0 y = 0} + maxWidth = 160 + maxHeight = 18 + text = "SM_CENTERED_ZOOM_IN" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + } + + + ##### Subwindow Video settings ############################################ + + windowType = { + name = "menu_settings_VIDEO" + backGround="" + position = { x= 0 y = 100 } + size = { x=240 y = 500 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + + instantTextBoxType={ + position = {x = 5 y = 1 } + name = "resolution_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 118 + maxHeight = 18 + text = "SM_RESOLUTION" + orientation = "UPPER_LEFT" + format = left + } + + instantTextBoxType={ + position = {x = 70 y = 1 } + name = "resolution_value" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "" + orientation = "UPPER_LEFT" + format = centre + } + + guiButtonType = { + name = "decrease_resolution_button" + position = { x = 90 y = -4 } + quadTextureSprite ="GFX_buildview_prev" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + + guiButtonType = { + name = "increase_resolution_button" + position = { x = 195 y = -4 } + quadTextureSprite ="GFX_buildview_next" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + + instantTextBoxType={ + position = {x = 5 y = 27 } + name = "windowmode_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 118 + maxHeight = 18 + text = "SM_WINDOWMODE" + orientation = "UPPER_LEFT" + format = left + } + + instantTextBoxType={ + position = {x = 70 y = 27 } + name = "windowmode_value" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "" + orientation = "UPPER_LEFT" + format = centre + } + + guiButtonType = { + name = "decrease_windowmode_button" + position = { x = 90 y = 21 } + quadTextureSprite ="GFX_buildview_prev" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + + guiButtonType = { + name = "increase_windowmode_button" + position = { x = 195 y = 21 } + quadTextureSprite ="GFX_buildview_next" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + + + instantTextBoxType={ + position = {x = 5 y = 79 } + name = "refreshrate_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 118 + maxHeight = 18 + text = "SM_REFRESH_RATE" + orientation = "UPPER_LEFT" + format = left + } + + instantTextBoxType={ + position = {x = 86 y = 79 } + name = "refreshrate_value" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "" + orientation = "UPPER_LEFT" + format = centre + } + + + guiButtonType = { + name = "decrease_refreshrate_button" + position = { x = 125 y = 71 } + quadTextureSprite ="GFX_buildview_prev" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + + guiButtonType = { + name = "increase_refreshrate_button" + position = { x = 195 y = 71 } + quadTextureSprite ="GFX_buildview_next" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + + instantTextBoxType={ + position = {x = 5 y = 105 } + name = "ui_scale_label" + font = "vic_18" + maxWidth = 130 + maxHeight = 18 + fixedsize = yes + text = "SM_UI_SCALE" + } + + instantTextBoxType={ + position = {x = 86 y = 105 } + name = "ui_scale_value" + font = "vic_18" + maxWidth = 172 + maxHeight = 18 + format = centre + } + + guiButtonType = { + name = "decrease_ui_scale_button" + position = { x = 125 y = 97 } + quadTextureSprite ="GFX_buildview_prev" + } + + guiButtonType = { + name = "increase_ui_scale_button" + position = { x = 195 y = 97 } + quadTextureSprite ="GFX_buildview_next" + } + + + instantTextBoxType={ + position = {x = 5 y = 53 } + name = "multisample_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 118 + maxHeight = 18 + text = "SM_MULTISAMPLE" + orientation = "UPPER_LEFT" + format = left + } + + instantTextBoxType={ + position = {x = 88 y = 53 } + name = "multisample_value" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "" + orientation = "UPPER_LEFT" + format = centre + } + + + guiButtonType = { + name = "decrease_multisample_button" + position = { x = 125 y = 46 } + quadTextureSprite ="GFX_buildview_prev" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + + guiButtonType = { + name = "increase_multisample_button" + position = { x = 195 y = 46 } + quadTextureSprite ="GFX_buildview_next" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + + instantTextBoxType={ + position = {x = 5 y = 130 } + name = "gamma_label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 172 + maxHeight = 18 + text = "SM_GAMMA" + orientation = "UPPER_LEFT" + format = left + } + + + scrollbarType = { + name = "gamma_slider" + slider = "landslider_SliderButton" + track= "landslider_TrackButton" + leftbutton = "landslider_upButton" + rightbutton = "landslider_downButton" + size = {x =172 y =16 } + position = {x= 60 y =130 } + priority = 100 + borderSize = {x =16 y = 16} + maxValue = 100 + minValue = 0 + stepSize =1 + startValue = 20 + horizontal = 1 + + guiButtonType = { + name = "landslider_SliderButton" + quadTextureSprite = "yearslider_slider2" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + guiButtonType = { + name = "landslider_TrackButton" + quadTextureSprite = "yearslider_background" + position = { x=0 y =20} + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_upButton" + quadTextureSprite = "yearslider_leftbutton" + position = { x=0 y =0} + } + guiButtonType = { + # parent = "landslider_SliderButton" + name = "landslider_downButton" + quadTextureSprite = "yearslider_rightbutton" + position = { x=0 y =120} + } + } + + checkboxType = { + name = "wastelands_transparent" + position = { x = -2 y = 175 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 23 y = 180 } + name = "wastelands_transparent_label" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 205 + maxHeight = 18 + text = "wastelands_transparent_option" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + + checkboxType = { + name = "wastelands_adjacent" + position = { x = -2 y = 150 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 23 y = 155 } + name = "wastelands_adjacent_label" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 205 + maxHeight = 18 + text = "wastelands_adjacent_option" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + + checkboxType = { + name = "vsync_checkbox" + position = { x = -2 y = 200 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 23 y = 205 } + name = "vsync_label" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "vsync" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + + checkboxType = { + name = "province_embellishment_checkbox" + position = { x = 67 y = 200 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 92 y = 205 } + name = "province_embellishment_label" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "province_embellishment" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + } + + ##### Subwindow Game settings ############################################ + + windowType = { + name = "menu_settings_GAME" + backGround="" + position = { x= 0 y = 100 } + size = { x=240 y = 500 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + instantTextBoxType = { + position = { x = 30 y = 1 } + name = "difficulty_label" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 172 + maxHeight = 18 + text = "SM_DIFFICULTY" + orientation = "UPPER_LEFT" + format = centre + } + + instantTextBoxType = { + position = { x = 30 y = 19 } + name = "difficulty_value" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 172 + maxHeight = 18 + text = "" + orientation = "UPPER_LEFT" + format = centre + } + + guiButtonType = { + name = "decrease_difficulty_button" + position = { x = 30 y = 10 } + quadTextureSprite ="GFX_buildview_prev" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + guiButtonType = { + name = "increase_difficulty_button" + position = { x = 175 y = 10 } + quadTextureSprite = "GFX_buildview_next" + tooltip = "" + tooltipText = "" + delayedTooltipText = "" + } + + instantTextBoxType = { + position = { x = 30 y = 41 } + name = "autosave_label" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 172 + maxHeight = 18 + text = "SM_AUTOSAVE_INTERVAL" + orientation = "UPPER_LEFT" + format = centre + } + + instantTextBoxType = { + position = { x = 30 y = 59 } + name = "autosave_value" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 172 + maxHeight = 18 + text = "" + orientation = "UPPER_LEFT" + format = centre + } + + guiButtonType = { + name = "decrease_autosave_button" + position = { x = 30 y = 50 } + quadTextureSprite ="GFX_buildview_prev" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + guiButtonType = { + name = "increase_autosave_button" + position = { x = 175 y = 50 } + quadTextureSprite ="GFX_buildview_next" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + instantTextBoxType = { + position = { x = 30 y = 81 } + name = "language_label" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 172 + maxHeight = 18 + text = "SM_LANGUAGE" + orientation = "UPPER_LEFT" + format = centre + } + + instantTextBoxType = { + position = { x = 30 y = 99 } + name = "language_value" + font = "vic_18" + borderSize = { x = 0 y = 0 } + maxWidth = 172 + maxHeight = 18 + text = "" + orientation = "UPPER_LEFT" + format = centre + } + + guiButtonType = { + name = "decrease_language_button" + position = { x = 30 y = 90 } + quadTextureSprite = "GFX_buildview_prev" + tooltip = "" + tooltipText = "" + delayedTooltipText = "" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "increase_language_button" + position = { x = 175 y = 90 } + quadTextureSprite = "GFX_buildview_next" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + clicksound = generic_click_04 + } + + checkboxType = { + name = "wikipedia_checkbox" + position = { x = 32 y = 119 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 60 y = 124 } + name = "wikipedia_label" + font = "small_white" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "SM_DISABLEWIKIPEDIA" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + + checkboxType = { + name = "hints_checkbox" + position = { x = 32 y = 140 } + quadTextureSprite ="GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 60 y = 145 } + name = "hints_label" + font = "small_white" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "SM_DISABLEHINTS" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + + checkboxType = { + name = "autosavetocloud_checkbox" + position = { x = 5000 y = 5000 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 60 y = 166 } + name = "autosavetocloud_checkbox_label" + font = "small_white" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "SM_AUTOSAVETOCLOUD" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + + checkboxType = { + name = "compress_autosaves_checkbox" + position = { x = 32 y = 182 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 60 y = 187 } + name = "compress_autosaves_checkbox_label" + font = "small_white" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "SM_COMPRESSAUTOSAVES" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + + checkboxType = { + name = "steamrichpresence_checkbox" + position = { x = 32 y = 203} + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + instantTextBoxType = { + position = { x = 60 y = 208 } + name = "steamrichpresence_checkbox_label" + font = "small_white" + borderSize = { x = 0 y = 0 } + maxWidth = 160 + maxHeight = 18 + text = "SM_STEAMRICH" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + } + + guiButtonType = { + name = "BackButton" + position = { x = 3 y = 345 } + quadTextureSprite ="GFX_standard_button_112" + buttonText = "SM_BACK" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "ApplyButton" + position = { x = 120 y = 345 } + quadTextureSprite ="GFX_standard_button_112" + buttonText = "SM_APPLY" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + } + +###### End of NEW settings ################################################################### + + +windowType = { + name ="SettingsMustRestartWindow" + backGround="" + position = { x=0 y =0} + size = { x=800 y =600} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullscreen = yes + + iconType = { + name = "PopUpBg" + buttonMesh ="MiscPopUpBg" + position = { x=-200 y=-126 } + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + orientation = "CENTER" + } + + guiButtonType = { + name = "PopUpDialog" + quadTextureSprite ="gfx_message_bg" + position = { x=-164 y=-94 } + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + orientation = "CENTER" + } + + + textBoxType={ + name = "PopUpHeadingTextBox" + textureFile ="" + font = "small" + borderSize = {x = 6 y = 6} + position = { x=-153 y=-96 } + text = "SM_ALERT" + orientation = "CENTER" + } + + textBoxType={ + name = "MustRestartTextBox" + textureFile ="" + font = "small" + borderSize = {x = 6 y = 6} + position = { x=0 y=-26 } + text = "SM_RESTART" + maxWidth = 315 + orientation = "CENTER" + format = centre + } + + guiButtonType = { + name = "MustRestart_OK_Button" + position = { x=-60 y =42} + quadTextureSprite ="button_type_1" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "OK" + buttonFont = "small" + orientation = "CENTER" + } + + + } + +} + diff --git a/resource/interface/chatfonts.gfx b/resource/interface/chatfonts.gfx new file mode 100644 index 0000000..27195ff --- /dev/null +++ b/resource/interface/chatfonts.gfx @@ -0,0 +1,44 @@ + +bitmapfonts = { + + bitmapfont = { + name = "standard_font" +# fontname = "standard" + fontname = "YuMincho18Demi" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 0 0 255 } + G = { 0 159 3 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 87 87 87 } + Y = { 255 189 0 } + P = { 200 30 170 } + l = { 154 193 75 } + } + + } + + bitmapfont = { + name = "chat_input_font" +# fontname = "standard" + fontname = "YuMincho18Demi" + color = 0xffffffff + effect = no + + colorcodes = { + W = { 255 255 255 } + B = { 0 0 255 } + G = { 0 159 3 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 87 87 87 } + Y = { 255 189 0 } + P = { 200 30 170 } + l = { 154 193 75 } + } + } + +} diff --git a/resource/interface/eventwindow.gui b/resource/interface/eventwindow.gui new file mode 100644 index 0000000..248af5f --- /dev/null +++ b/resource/interface/eventwindow.gui @@ -0,0 +1,2222 @@ +guiTypes = { + windowType = + { + name = "EventWindowCharacter" + backGround="Background" + position = { x=-160 y=-280 } + size = { x=770 y=620 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + click_to_front = yes + + guiButtonType = + { + name = "Background" + quadTextureSprite ="GFX_event_normal_area" + } + iconType = + { + name ="event_bg" + spriteType = "GFX_event_normal_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="title_extension_top" + spriteType = "GFX_event_normal_extension_top" + position = { x= 0 y = -35 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="event_extension_1" + spriteType = "GFX_event_normal_extension" + position = { x= 1 y = 436 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_2" + spriteType = "GFX_event_normal_extension" + position = { x= 1 y = 476 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_3" + spriteType = "GFX_event_normal_extension" + position = { x= 1 y = 516 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="event_picture" + spriteType = "GFX_evt_throne_room" + position = { x= 27 y = 47 } + Orientation = "UPPER_LEFT" + } + + ### colored frames. + iconType = + { + name ="event_frame" + spriteType = "GFX_event_normal_frame_diplomacy" + position = { x= 24 y = 209 } + Orientation = "UPPER_LEFT" + } + + ### portraits. + guiButtonType = + { + name ="EventWindowMainChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 39 y = 174 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowMainChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 31 y = 165 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowMainChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 95 y = 212 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowMainChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 105 y = 196 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowMainChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 91 y = 170 } + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = + { + name ="EventWindowFromChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 389 y = 174 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowFromChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 381 y = 165 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowFromChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 364 y = 212 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowFromChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 374 y = 196 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowFromChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 441 y = 170 } + Orientation = "UPPER_LEFT" + } + ### + + instantTextBoxType = + { + name = "Title" + position = { x = 26 y = -7 } + textureFile = "" + font = "vic_36_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 450 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = + { + name = "Description" + position = { x = 41 y = 258 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 416 + maxHeight = 140 + format = centre + fixedsize = yes + } + + editBoxType = { + name = "NameEditBox" + position = { x = 150 y = 320 } + textureFile = "gfx\\interface\\small_tiles_dialog.dds" + font = "vic_22_black" + borderSize = {x = 4 y = 4} + cursor = { x=4 y=3 } + text = "UI_MISSING_TEXT" + size = { x=200 y=40} + } + + instantTextBoxType = + { + name = "AdjectiveLabel" + position = { x = 30 y = 367 } + font = "vic_22_black" + text = "RENAME_ADJECTIVE" + format = right + maxWidth = 120 + fixedsize = yes + } + + editBoxType = { + name = "NameEditBox2" + position = { x = 150 y = 355 } + textureFile = "gfx\\interface\\small_tiles_dialog.dds" + font = "vic_22_black" + borderSize = {x = 4 y = 4} + cursor = { x=4 y=3 } + text = "UI_MISSING_TEXT" + size = { x=200 y=40} + } + + guiButtonType = { + name ="random_name_button" + quadTextureSprite = "GFX_newborn_name_buttons" # Changed in code + position = { x= 181 y = 358 } + } + + guiButtonType = { + name ="random_name_button2" + quadTextureSprite = "GFX_newborn_name_buttons" # Changed in code + position = { x= 350 y = 325 } + } + + guiButtonType = { + name ="parent_name_button" + quadTextureSprite = "GFX_newborn_name_buttons" # Changed in code + position = { x= 216 y = 358 } + } + + guiButtonType = { + name ="grand_parent_name_button" + quadTextureSprite = "GFX_newborn_name_buttons" # Changed in code + position = { x= 251 y = 358 } + } + + guiButtonType = { + name ="dynasty_name_button" + quadTextureSprite = "GFX_newborn_name_buttons" # Changed in code + position = { x= 286 y = 358 } + } + + guiButtonType = { + name ="Message_GoTo" + quadTextureSprite = "GFX_standard_button_148" + buttonText = "GOTO" + buttonFont = "vic_18" + position = { x= 79 y = 430 } + clicksound = generic_click_04 + } + guiButtonType = { + name ="Message_Ok" + quadTextureSprite = "GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + position = { x= 275 y = 430 } + shortcut = "ENTER" + clicksound = generic_click_04 + } + guiButtonType = { + name ="Message_Cancel" + quadTextureSprite = "GFX_standard_button_148" + buttonText = "CANCEL" + buttonFont = "vic_18" + position = { x= 75 y = 430 } + shortcut = "ESCAPE" + clicksound = generic_click_04 + } + guiButtonType = { + name ="Message_Settings" + quadTextureSprite = "GFX_mw_settings" + position = { x= 446 y = 370 } + pdx_tooltip = "MESSPOPUP_SETTINGS" + pdx_tooltip_delayed = "MESSPOPUP_SETTINGS_DELAYED" + clicksound = generic_click_04 + } + + instantTextBoxType = + { + name = "CountdownText" + position = { x = 20 y = 415 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + + # options: + guiButtonType = { + name = "EventOptionButton1" + position = { x = 14 y = 431 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText1" + position = { x = 27 y = 441 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + allwaystransparent = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits1" + position = { x = 288 y = 433 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + OverlappingElementsBoxType = { + name = "related_traits1" + position = { x = 288 y = 437 } + size = { x=195 y=40 } + format = right + } + ### + guiButtonType = { + name = "EventOptionButton2" + position = { x = 14 y = 471 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText2" + position = { x = 27 y = 481 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits2" + position = { x = 288 y = 473 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + OverlappingElementsBoxType = { + name = "related_traits2" + position = { x = 288 y = 477 } + size = { x=193 y=40 } + format = right + } + ### + guiButtonType = { + name = "EventOptionButton3" + position = { x = 14 y = 511 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText3" + position = { x = 27 y = 521 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits3" + position = { x = 288 y = 513 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + OverlappingElementsBoxType = { + name = "related_traits3" + position = { x = 288 y = 517 } + size = { x=195 y=40 } + format = right + } + ### + guiButtonType = { + name = "EventOptionButton4" + position = { x = 14 y = 551 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText4" + position = { x = 27 y = 561 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits4" + position = { x = 288 y = 553 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + OverlappingElementsBoxType = { + name = "related_traits4" + position = { x = 288 y = 557 } + size = { x=195 y=40 } + format = right + } + } + + + windowType = + { + name = "EventWindowLongCharacter" + backGround="Background" + position = { x=-160 y=-280 } + size = { x=870 y=620 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + click_to_front = yes + + guiButtonType = + { + name = "Background" + quadTextureSprite ="GFX_event_long_area" + } + iconType = + { + name ="event_bg" + spriteType = "GFX_event_long_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="title_extension_top" + spriteType = "GFX_event_normal_extension_top" + position = { x= 0 y = -35 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="event_extension_1" + spriteType = "GFX_event_normal_extension" + position = { x= 1 y = 537 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_2" + spriteType = "GFX_event_normal_extension" + position = { x= 1 y = 577 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_3" + spriteType = "GFX_event_normal_extension" + position = { x= 1 y = 617 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="event_picture" + spriteType = "GFX_evt_throne_room" + position = { x= 27 y = 48 } + Orientation = "UPPER_LEFT" + } + + ### colored frames. + iconType = + { + name ="event_frame" + spriteType = "GFX_event_long_frame_diplomacy" + position = { x= 24 y = 209 } + Orientation = "UPPER_LEFT" + } + + ### portraits. + guiButtonType = + { + name ="EventWindowMainChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 39 y = 174 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowMainChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 31 y = 165 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowMainChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 95 y = 212 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowMainChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 105 y = 196 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowMainChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 91 y = 170 } + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = + { + name ="EventWindowFromChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 389 y = 174 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowFromChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 381 y = 165 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowFromChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 364 y = 212 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowFromChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 374 y = 196 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowFromChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 441 y = 170 } + Orientation = "UPPER_LEFT" + } + ### + + instantTextBoxType = + { + name = "Title" + position = { x = 26 y = -7 } + textureFile = "" + font = "vic_36_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 450 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = + { + name = "Description" + position = { x = 41 y = 258 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 416 + maxHeight = 240 + format = centre + fixedsize = yes + } + + editBoxType = { + name = "NameEditBox" + position = { x = 150 y = 320 } + textureFile = "gfx\\interface\\small_tiles_dialog.dds" + font = "vic_22_black" + borderSize = {x = 4 y = 4} + cursor = { x=4 y=3 } + text = "UI_MISSING_TEXT" + size = { x=200 y=40} + } + guiButtonType = { + name ="Message_GoTo" + quadTextureSprite = "GFX_standard_button_148" + buttonText = "GOTO" + buttonFont = "vic_18" + position = { x= 79 y = 430 } + clicksound = generic_click_04 + } + guiButtonType = { + name ="Message_Ok" + quadTextureSprite = "GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + position = { x= 275 y = 430 } + shortcut = "ENTER" + clicksound = generic_click_04 + } + guiButtonType = { + name ="Message_Settings" + quadTextureSprite = "GFX_mw_settings" + position = { x= 446 y = 370 } + pdx_tooltip = "MESSPOPUP_SETTINGS" + pdx_tooltip_delayed = "MESSPOPUP_SETTINGS_DELAYED" + clicksound = generic_click_04 + } + + instantTextBoxType = + { + name = "CountdownText" + position = { x = 20 y = 415 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + + # options: + guiButtonType = { + name = "EventOptionButton1" + position = { x = 14 y = 531 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText1" + position = { x = 27 y = 541 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + allwaystransparent = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits1" + position = { x = 288 y = 533 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + OverlappingElementsBoxType = { + name = "related_traits1" + position = { x = 288 y = 537 } + size = { x=195 y=40 } + format = right + } + ### + guiButtonType = { + name = "EventOptionButton2" + position = { x = 14 y = 571 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText2" + position = { x = 27 y = 581 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits2" + position = { x = 288 y = 573 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + OverlappingElementsBoxType = { + name = "related_traits2" + position = { x = 288 y = 577 } + size = { x=195 y=40 } + format = right + } + ### + guiButtonType = { + name = "EventOptionButton3" + position = { x = 14 y = 611 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText3" + position = { x = 27 y = 621 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits3" + position = { x = 288 y = 613 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + OverlappingElementsBoxType = { + name = "related_traits3" + position = { x = 288 y = 617 } + size = { x=195 y=40 } + format = right + } + ### + guiButtonType = { + name = "EventOptionButton4" + position = { x = 14 y = 651 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText4" + position = { x = 27 y = 661 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits4" + position = { x = 288 y = 653 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + OverlappingElementsBoxType = { + name = "related_traits4" + position = { x = 288 y = 657 } + size = { x=195 y=40 } + format = right + } + } + + + ##### EVENT LETTER + windowType = + { + name = "EventWindowLetter" + backGround="Background" + position = { x=-120 y=-230 } + size = { x=770 y=620 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + click_to_front = yes + + guiButtonType = + { + name = "Background" + quadTextureSprite ="GFX_event_letter_area" + } + iconType = + { + name ="event_bg" + spriteType = "GFX_event_letter_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + ###extensions + + iconType = + { + name ="event_extension_1" + spriteType = "GFX_event_letter_extension" + position = { x= 9 y = 285 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_2" + spriteType = "GFX_event_letter_extension" + position = { x= 9 y = 325 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_3" + spriteType = "GFX_event_letter_extension" + position = { x= 9 y = 365 } + Orientation = "UPPER_LEFT" + } + + ### colored frames. + iconType = + { + name ="event_frame" + spriteType = "GFX_event_letter_frame_diplomacy" + position = { x= 42 y = 25 } + Orientation = "UPPER_LEFT" + } + + ### portraits. + + guiButtonType = + { + name ="EventWindowFromChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 82 y = 62 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowFromChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 74 y = 53 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowFromChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 66 y = 101 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="used_favor" + quadTextureSprite = "GFX_use_favor" + position = { x= 140 y = 113 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowFromChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 76 y = 85 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowFromChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 134 y = 58 } + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = + { + name ="EventWindowRegardingChar1_portrait" + quadTextureSprite = "GFX_char_50" + position = { x = 63 y = 162 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowRegardingChar1_portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 57 y = 155 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowRegardingChar1_shield" + quadTextureSprite = "GFX_shield_small" + position = { x= 53 y = 192 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowRegardingChar1_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 59 y = 180 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowRegardingChar1_portrait_relation" + spriteType = "GFX_overlay_char_relation_50" + position = { x= 96 y = 158 } + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = + { + name ="EventWindowRegardingChar2_portrait" + quadTextureSprite = "GFX_char_50" + position = { x = 126 y = 162 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowRegardingChar2_portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 120 y = 155 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowRegardingChar2_shield" + quadTextureSprite = "GFX_shield_small" + position = { x= 116 y = 192 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowRegardingChar2_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 122 y = 180 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowRegardingChar2_portrait_relation" + spriteType = "GFX_overlay_char_relation_50" + position = { x= 159 y = 158 } + Orientation = "UPPER_LEFT" + } + + #### SEAL #40 px offset down for each option. + + guiButtonType = { + name ="seal" + quadTextureSprite = "GFX_seal" + position = { x= 427 y = 275 } + Orientation = "UPPER_LEFT" + } + + ##### + + ### REMOVE + instantTextBoxType = + { + name = "Title" + position = { x = 9999 y = 39 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 640 + maxHeight = 32 + + format = centre + } + ### + + instantTextBoxType = + { + name = "Description" + position = { x = 193 y = 48 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 315 + maxHeight = 180 + format = centre + fixedsize = yes + } + + guiButtonType = { + name ="Message_GoTo" + quadTextureSprite = "GFX_standard_button_148" + buttonText = "GOTO" + buttonFont = "vic_18" + position = { x= 101 y = 239 } + clicksound = generic_click_04 + } + guiButtonType = { + name ="Message_Ok" + quadTextureSprite = "GFX_standard_button_148" + buttonText = "OK" + buttonFont = "vic_18" + position = { x= 328 y = 239 } + clicksound = generic_click_04 + } + guiButtonType = { + name ="Message_Settings" + quadTextureSprite = "GFX_mw_settings" + position = { x= 503 y = 198 } + pdx_tooltip = "MESSPOPUP_SETTINGS" + pdx_tooltip_delayed = "MESSPOPUP_SETTINGS_DELAYED" + clicksound = generic_click_04 + } + + instantTextBoxType = + { + name = "CountdownText" + position = { x = 45 y = 275 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + + # options: + guiButtonType = { + name = "EventOptionButton1" + position = { x = 40 y = 236 } + quadTextureSprite ="GFX_event_letter_option" + } + instantTextBoxType = + { + name = "EventOptionText1" + position = { x = 53 y = 246 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + allwaystransparent = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits1" + position = { x = 346 y = 238 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "EventOptionButton2" + position = { x = 40 y = 276 } + quadTextureSprite ="GFX_event_letter_option" + } + instantTextBoxType = + { + name = "EventOptionText2" + position = { x = 53 y = 286 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits2" + position = { x = 346 y = 278 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "EventOptionButton3" + position = { x = 40 y = 316 } + quadTextureSprite ="GFX_event_letter_option" + } + instantTextBoxType = + { + name = "EventOptionText3" + position = { x = 53 y = 326 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits3" + position = { x = 346 y = 318 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "EventOptionButton4" + position = { x = 40 y = 356 } + quadTextureSprite ="GFX_event_letter_option" + } + instantTextBoxType = + { + name = "EventOptionText4" + position = { x = 53 y = 366 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits4" + position = { x = 346 y = 358 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + } + + #### NARRATIVE EVENT + windowType = + { + name = "EventWindowNarrative" + backGround="Background" + position = { x=-120 y=-385 } + size = { x=770 y=620 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + click_to_front = yes + + guiButtonType = + { + name = "Background" + quadTextureSprite ="GFX_event_narrative_area" + } + iconType = + { + name ="event_bg" + spriteType = "GFX_event_narrative_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_1" + spriteType = "GFX_event_narrative_extension" + position = { x= 3 y = 569 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_2" + spriteType = "GFX_event_narrative_extension" + position = { x= 3 y = 609 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_3" + spriteType = "GFX_event_narrative_extension" + position = { x= 3 y = 649 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="event_picture" + spriteType = "GFX_evt_throne_room" + position = { x= 47 y = 46 } + Orientation = "UPPER_LEFT" + } + + ### colored frames. + iconType = + { + name ="event_frame" + spriteType = "GFX_event_narrative_frame_diplomacy" + position = { x= 22 y = 210 } + Orientation = "UPPER_LEFT" + } + + ### portraits. + guiButtonType = + { + name ="EventWindowMainChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 39 y = 174 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowMainChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 31 y = 165 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowMainChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 95 y = 212 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowMainChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 105 y = 196 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowMainChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 91 y = 170 } + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = + { + name ="EventWindowFromChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 430 y = 174 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowFromChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 422 y = 165 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowFromChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 405 y = 212 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowFromChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 415 y = 196 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowFromChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 482 y = 170 } + Orientation = "UPPER_LEFT" + } + ##### + + instantTextBoxType = + { + name = "decorative_letter" + position = { x = 0 y = 270 } + textureFile = "" + font = "decorative" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 120 + maxHeight = 120 + format = right + } + + instantTextBoxType = + { + name = "Title" + position = { x = 126 y = 269 } + textureFile = "" + font = "vic_36_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 376 + maxHeight = 40 + fixedsize = yes + format = left + } + + instantTextBoxType = + { + name = "Description_firstpart" + position = { x = 127 y = 315 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 376 + maxHeight = 40 + format = left + } + + instantTextBoxType = + { + name = "Description" + position = { x = 40 y = 350 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 200 + format = left + fixedsize = yes + } + + # options: + guiButtonType = { + name = "EventOptionButton1" + position = { x = 22 y = 564 } + quadTextureSprite ="GFX_event_letter_option" + } + instantTextBoxType = + { + name = "EventOptionText1" + position = { x = 35 y = 572 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + allwaystransparent = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits1" + position = { x = 348 y = 566 } + size = { x=180 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = { + name = "EventOptionButton2" + position = { x = 22 y = 604 } + quadTextureSprite ="GFX_event_letter_option" + } + instantTextBoxType = + { + name = "EventOptionText2" + position = { x = 35 y = 612 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits2" + position = { x = 348 y = 606 } + size = { x=180 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = { + name = "EventOptionButton3" + position = { x = 22 y = 644 } + quadTextureSprite ="GFX_event_letter_option" + } + instantTextBoxType = + { + name = "EventOptionText3" + position = { x = 35 y = 652 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits3" + position = { x = 348 y = 646 } + size = { x=180 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = { + name = "EventOptionButton4" + position = { x = 22 y = 684 } + quadTextureSprite ="GFX_event_letter_option" + } + instantTextBoxType = + { + name = "EventOptionText4" + position = { x = 35 y = 692 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits4" + position = { x = 348 y = 686 } + size = { x=180 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = + { + name = "CountdownText" + position = { x = 50 y = 255 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + } + + ###### PROVINCE EVENT + windowType = + { + name = "EventWindowProvince" + backGround="Background" + position = { x=-160 y=-280 } + size = { x=770 y=620 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + click_to_front = yes + + guiButtonType = + { + name = "Background" + quadTextureSprite ="GFX_event_normal_area" + } + iconType = + { + name ="event_bg" + spriteType = "GFX_event_normal_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="title_extension_top" + spriteType = "GFX_event_normal_extension_top" + position = { x= 0 y = -35 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="event_extension_1" + spriteType = "GFX_event_normal_extension" + position = { x= 1 y = 436 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_2" + spriteType = "GFX_event_normal_extension" + position = { x= 1 y = 476 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="event_extension_3" + spriteType = "GFX_event_normal_extension" + position = { x= 1 y = 516 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="event_picture" + spriteType = "GFX_evt_throne_room" + position = { x= 27 y = 47 } + Orientation = "UPPER_LEFT" + } + + ### colored frames. + iconType = + { + name ="event_frame" + spriteType = "GFX_event_normal_frame_diplomacy" + position = { x= 24 y = 209 } + Orientation = "UPPER_LEFT" + } + + ### portraits. + guiButtonType = + { + name ="EventWindowMainChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 39 y = 174 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowMainChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 31 y = 165 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowMainChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 95 y = 212 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowMainChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 105 y = 196 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowMainChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 91 y = 170 } + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = + { + name ="EventWindowFromChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 389 y = 174 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowFromChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 381 y = 165 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowFromChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 364 y = 212 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowFromChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 374 y = 196 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowFromChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 441 y = 170 } + Orientation = "UPPER_LEFT" + } + ### + + instantTextBoxType = + { + name = "Title" + position = { x = 26 y = -7 } + textureFile = "" + font = "vic_36_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 450 + maxHeight = 32 + format = centre + fixedsize = yes + } + + instantTextBoxType = + { + name = "Description" + position = { x = 41 y = 258 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 400 + maxHeight = 200 + format = centre + fixedsize = yes + } + + # options: + guiButtonType = { + name = "EventOptionButton1" + position = { x = 14 y = 431 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText1" + position = { x = 27 y = 441 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + allwaystransparent = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits1" + position = { x = 288 y = 433 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = { + name = "EventOptionButton2" + position = { x = 14 y = 471 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText2" + position = { x = 27 y = 481 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits2" + position = { x = 288 y = 473 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = { + name = "EventOptionButton3" + position = { x = 14 y = 511 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText3" + position = { x = 27 y = 521 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits3" + position = { x = 288 y = 513 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = { + name = "EventOptionButton4" + position = { x = 14 y = 551 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText4" + position = { x = 27 y = 561 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits4" + position = { x = 288 y = 553 } + size = { x=200 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = + { + name = "CountdownText" + position = { x = 20 y = 415 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + } + } + + ## char entry 34 + windowType = { + name = "character_34" + backGround ="" + position = { x=0 y=0 } + size = { x = 40 y = 40 } + moveable = 0 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + + guiButtonType = { + name ="EventOption_portrait" + quadTextureSprite= "GFX_char_34" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + + guiButtonType = { + name ="EventOptionCharFrame" + quadTextureSprite = "GFX_charframe_34" + position = { x= -5 y = -6 } + Orientation = "UPPER_LEFT" + } + } + + windowType = { + name = "EventWindowSocietyQuest" + position = { x = -160 y = -280 } + size = { x = 770 y = 620 } + moveable = 1 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + orientation = "CENTER" + click_to_front = yes + background = "area" + + # Window area + guiButtonType = { + name = "area" + quadTextureSprite = "GFX_event_window_society_quest_area" + } + + # Portrait frame + iconType = { + name ="EventWindowFromChar_portrait_bg" + spriteType = "GFX_society_portrait_ring_the_assassins" # Changed in code + position = { x= 69 y = 65 } + alwaystransparent = yes + } + + # Portrait + guiButtonType = { + name = "EventWindowFromChar_portrait" + quadTextureSprite = "GFX_char_100" + position = { x = 73 y = 68 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + + # Background + iconType = { + name = "event_bg" + quadTextureSprite = "GFX_event_window_society_quest_background_the_assassins" # Changed in code + alwaysTransparent = yes + } + + # Target Portrait Frame + iconType = { + name ="target_portrait_bg" + spriteType = "GFX_target_portrait_frame" + position = { x= 106 y = 257 } + alwaystransparent = yes + } + + # Target Portrait + guiButtonType = { + name = "target_portrait" + quadTextureSprite = "GFX_char_34" + position = { x = 107 y = 260 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + + # Target Shield + guiButtonType = { + name = "target_shield" + quadTextureSprite = "GFX_shield_medium" + position = { x = 94 y = 250 } + } + + # Description + instantTextBoxType = { + name = "Description" + position = { x = 185 y = 70 } + textureFile = "" + font = "vic_22_black" + borderSize = { x = 0 y = 0 } + text = "UI_MISSING_TEXT" + maxWidth = 330 + maxHeight = 220 + format = centre + fixedsize = yes + } + + # Option 1 + guiButtonType = { + name = "EventOptionButton1" + position = { x = 299 y = 325 } + quadTextureSprite = "GFX_event_window_society_quest_accept" + } + instantTextBoxType = { + name = "EventOptionText1" + position = { x = 299 y = 333 } + textureFile = "" + font = "vic_18_black" + borderSize = { x = 0 y = 0 } + text = "UI_MISSING_TEXT" + maxWidth = 244 + maxHeight = 32 + format = center + fixedsize = yes + alwaysTransparent = yes + } + + # Option 2 + guiButtonType = { + name = "EventOptionButton2" + position = { x = 48 y = 325 } + quadTextureSprite = "GFX_event_window_society_quest_decline" + } + instantTextBoxType = { + name = "EventOptionText2" + position = { x = 48 y = 333 } + font = "vic_18_black" + borderSize = { x = 0 y = 0 } + text = "UI_MISSING_TEXT" + maxWidth = 244 + maxHeight = 32 + format = center + fixedsize = yes + } + } + + #### NARRATIVE EVENT + windowType = + { + name = "EventWindowOffmap" + backGround="Background" + position = { x=-300 y=-460 } + size = { x=770 y=620 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + click_to_front = yes + + guiButtonType = + { + name = "Background" + quadTextureSprite ="GFX_event_narrative_area" + } + # Background + iconType = { + name = "event_bg" + quadTextureSprite = "GFX_event_window_society_quest_background_the_assassins" # Changed in script + alwaysTransparent = yes + } + iconType = + { + name ="event_picture" + spriteType = "GFX_evt_throne_room" + position = { x= 80 y = 109 } + Orientation = "UPPER_LEFT" + } + + ### portraits. + guiButtonType = + { + name ="EventWindowMainChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 78 y = 229 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowMainChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 70 y = 220 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowMainChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 134 y = 267 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowMainChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 144 y = 251 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowMainChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 130 y = 225 } + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = + { + name ="EventWindowFromChar_portrait" + quadTextureSprite = "GFX_char_75" + position = { x = 455 y = 229 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "EventWindowFromChar_portrait_frame" + quadTextureSprite = "GFX_charframe_75" + position = { x= 447 y = 220 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="EventWindowFromChar_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 430 y = 267 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="EventWindowFromChar_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 440 y = 251 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="EventWindowFromChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_75" + position = { x= 507 y = 225 } + Orientation = "UPPER_LEFT" + } + ##### + + instantTextBoxType = + { + name = "decorative_letter" + position = { x = 85 y = 300 } + textureFile = "" + font = "decorative" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 120 + maxHeight = 120 + format = left + } + + instantTextBoxType = + { + name = "Title" + position = { x = 161 y = 319 } + textureFile = "" + font = "vic_36_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 376 + maxHeight = 40 + fixedsize = yes + format = left + } + + instantTextBoxType = + { + name = "Description_firstpart" + position = { x = 162 y = 355 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 360 + maxHeight = 40 + format = left + } + + instantTextBoxType = + { + name = "Description" + position = { x = 86 y = 391 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 436 + maxHeight = 200 + format = left + fixedsize = yes + } + + # options: + guiButtonType = { + name = "EventOptionButton4" + position = { x = 85 y = 494 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText4" + position = { x = 98 y = 502 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + allwaystransparent = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits4" + position = { x = 345 y = 492 } + size = { x=180 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = { + name = "EventOptionButton3" + position = { x = 85 y = 534 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText3" + position = { x = 98 y = 542 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits3" + position = { x = 345 y = 532 } + size = { x=180 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = { + name = "EventOptionButton2" + position = { x = 85 y = 574 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText2" + position = { x = 98 y = 582 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits2" + position = { x = 345 y = 574 } + size = { x=180 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + ### + guiButtonType = { + name = "EventOptionButton1" + position = { x = 85 y = 614 } + quadTextureSprite ="GFX_event_normal_option" + } + instantTextBoxType = + { + name = "EventOptionText1" + position = { x = 98 y = 622 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 470 + maxHeight = 32 + format = left + fixedsize = yes + } + OverlappingElementsBoxType = + { + name = "EventOptionPortraits1" + position = { x = 345 y = 614 } + size = { x=180 y=40 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = + { + name = "CountdownText" + position = { x = 50 y = 670 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 456 + maxHeight = 32 + format = left + fixedsize = yes + text = "UI_MISSING_TEXT" + } + } +} + diff --git a/resource/interface/fonts.gfx b/resource/interface/fonts.gfx new file mode 100644 index 0000000..e2002b2 --- /dev/null +++ b/resource/interface/fonts.gfx @@ -0,0 +1,789 @@ +spriteTypes = { + spriteType = { + name = "GFX_icon_font_gold" + texturefile = "gfx\\interface\\icon_font_gold.tga" + } + + spriteType = { + name = "GFX_icon_font_custom" + texturefile = "gfx\\interface\\icon_font_custom.tga" + noOfFrames = 5 + } +} + +bitmapfonts = { + + +# Use "common" as main font. +# Only use "small" or "small_bold" in exceptional cases +# use "headline" for all page headlines + + + bitmapfont = { + name = "headline" +# fontname = "headline" + fontname = "sourceHanSerif24bold" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + } + + bitmapfont = { + name = "headline_small" +# fontname = "headline_small" + fontname = "sourceHanSerif18bold" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + + bitmapfont = { + name = "common" +# fontname = "common" + fontname = "yumincho20" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + Z = { 3 122 23 } + M = { 255 250 117 } + K = { 113 5 5 } + C = { 55 65 17 } + F = { 111 62 9 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "ToolTip_Font" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + Z = { 3 122 23 } + M = { 255 250 117 } + K = { 113 5 5 } + C = { 55 65 17 } + F = { 111 62 9 } + L = { 195 176 145 } + } + } + + bitmapfont = { + name = "bookantiqua16" +# fontname = "bookantiqua16" + fontname = "yumincho16" + color = 0xff000000 + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "bookantiqua16bold" +# fontname = "bookantiqua16bold" + fontname = "yumincho16bold" + color = 0xff000000 + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "common_white" +# fontname = "common" + fontname = "yumincho20" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + bitmapfont = { + name = "common_bold" +# fontname = "common_bold" + fontname = "yumincho20bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "common_bold_white" +# fontname = "common_bold" + fontname = "yumincho20bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "small" +# fontname = "arial15" + fontname = "yugothic15" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "small_white" +# fontname = "arial15" + fontname = "yugothic15" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "small_bold" +# fontname = "arial15bold" + fontname = "yugothic15bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "small_bold_white" +# fontname = "arial15bold" + fontname = "yugothic15bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "small_button_txt" +# fontname = "small_button_txt" + fontname = "Meiryo14" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + + + colorcodes = { + W = { 255 255 255 } + B = { 100 100 255 } + G = { 50 255 50 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + P = { 255 0 255 } + L = { 195 176 145 } + } + + } + + bitmapfont = { + name = "tahoma_60" +# fontname = "Mapfont" + fontname = "aoyagireisyo60" +# fontname = "crap" + color = 0xff333333 + } + + bitmapfont = { + name = "AnimatedMapText" +# fontname = "common" + fontname = "yumincho20" + color = 0xff7799ff + } + + ################## + ################## + + bitmapfont = { + name = "vic_18_black" +# fontname = "vic_18" + fontname = "YuMincho18Demi" + color = 0xff000000 + + color_override = { + G = { 24 112 26 } + R = { 124 24 24 } + Y = { 0 0 0 } + } + } + + bitmapfont = { + name = "vic_18_black_y" +# fontname = "vic_18" + fontname = "YuMincho18Demi" + color = 0xff000000 + + color_override = { + G = { 24 112 26 } + R = { 124 24 24 } + Y = { 219 203 71 } + } + } + + bitmapfont = { + name = "vic_18" +# fontname = "vic_18" + fontname = "YuMincho18Demi" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 0 0 255 } + G = { 0 159 3 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + L = { 195 176 145 } + } + + color_override = { + G = { 44 171 50 } + R = { 181 61 61 } + Y = { 219 203 71 } + } + } + + bitmapfont = { + name = "vic_18_no_special" +# fontname = "vic_18" + fontname = "YuMincho18Demi" + color = 0xffffffff + effect = no + + colorcodes = { + W = { 255 255 255 } + B = { 0 0 255 } + G = { 0 159 3 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + L = { 195 176 145 } + } + + color_override = { + G = { 44 171 50 } + R = { 181 61 61 } + Y = { 219 203 71 } + } + } + + + bitmapfont = { + name = "vic_22_black" +# fontname = "vic_22" + fontname = "sourceHanSerif22" + color = 0xff000000 + + color_override = { + G = { 24 112 26 } + R = { 124 24 24 } + Y = { 0 0 0 } + } + } + + bitmapfont = { + name = "vic_22" +# fontname = "vic_22" + fontname = "sourceHanSerif22" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 0 0 255 } + G = { 0 159 3 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + L = { 195 176 145 } + } + + color_override = { + G = { 44 171 50 } + R = { 181 61 61 } + Y = { 219 203 71 } + } + } + + bitmapfont = { + name = "vic_22bold" + fontname = "sourceHanSerif22b" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 0 0 255 } + G = { 0 159 3 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + L = { 195 176 145 } + } + + color_override = { + G = { 44 171 50 } + R = { 181 61 61 } + Y = { 219 203 71 } + } + } + + bitmapfont = { + name = "vic_36_black" +# fontname = "vic_36" + fontname = "sourceHanSerif36" + color = 0xff000000 + + color_override = { + G = { 24 112 26 } + R = { 124 24 24 } + Y = { 0 0 0 } + } + } + + bitmapfont = { + name = "vic_36" +# fontname = "vic_36" + fontname = "sourceHanSerif36" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 0 0 255 } + G = { 0 159 3 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + L = { 195 176 145 } + } + + color_override = { + G = { 44 171 50 } + R = { 181 61 61 } + Y = { 219 203 71 } + } + } + + bitmapfont = { + name = "Arial12_bold_black" +# fontname = "Arial12_bold" + fontname = "yugothic14bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + + color_override = { + G = { 24 112 26 } + R = { 124 24 24 } + Y = { 0 0 0 } + } + + } + + bitmapfont = { + name = "Arial12_bold" +# fontname = "Arial12_bold" + fontname = "yugothic14bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + + colorcodes = { + W = { 255 255 255 } + B = { 0 0 255 } + G = { 0 159 3 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + L = { 195 176 145 } + } + + color_override = { + G = { 44 171 50 } + R = { 181 61 61 } + Y = { 219 203 71 } + } + } + + bitmapfont = { + name = "Arial12_black" +# fontname = "Arial12" + fontname = "msgothic12" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + + color_override = { + G = { 24 112 26 } + R = { 124 24 24 } + Y = { 255 189 0 } + } + + } + + bitmapfont = { + name = "Arial12_black_no_special" +# fontname = "Arial12" + fontname = "msgothic12" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + effect = no + + color_override = { + G = { 24 112 26 } + R = { 124 24 24 } + Y = { 255 189 0 } + } + + } + + bitmapfont = { + name = "Arial12" +# fontname = "Arial12" + fontname = "msgothic12" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + colorcodes = { + W = { 255 255 255 } + B = { 0 0 255 } + G = { 0 159 3 } + R = { 255 50 50 } + b = { 0 0 0 } + g = { 176 176 176 } + Y = { 255 189 0 } + L = { 195 176 145 } + } + + color_override = { + G = { 44 171 50 } + R = { 181 61 61 } + Y = { 219 203 71 } + } + } + + bitmapfont = { + name = "decorative" +# fontname = "decorative" + fontname = "GenkaiMincho100" + color = 0xffffffff + } + bitmapfont = { + name = "decorative_color" +# fontname = "decorative_color" + fontname = "GenkaiMincho100" +# color = 0xffffffff + color = 0xffff0000 + } + + bitmapfont = { + name = "Main_24" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + } + + bitmapfont = { + name = "Main_24_black" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + } + + bitmapfont = { + name = "pie_headline_20" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + } + + bitmapfont = { + name = "messagelog" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffff99 + } + + bitmapfont = { + name = "Main_16" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + } + + bitmapfont = { + name = "Main_16_white_bold" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + } + + bitmapfont = { + name = "Main_16_black" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + } + + + bitmapfont = { + name = "Main_14" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + } + bitmapfont = { + name = "Main_14_plain" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + } + + + bitmapfont = { + name = "Main_14_grey" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffbbbbbb + } + + bitmapfont = { + name = "Main_16_plain" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + } + bitmapfont = { + name = "Main_14_black" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + } + bitmapfont = { + name = "Main_14_red" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffff0000 + } + bitmapfont = { + name = "Main_14_bold" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + } + bitmapfont = { + name = "Main_14_orange" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffbb00 + } + + + + bitmapfont = { + name = "garamond_14" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + } + bitmapfont = { + name = "garamond_14_bold" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffffff + } + + bitmapfont = { + name = "garamond_14_bold_orange" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xffffc000 + } + + bitmapfont = { + name = "ledger" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "YuMincho18Demi" + color = 0xff000000 + } + + bitmapfont = { + name = "ledger_headline" +# fontname = "crap" + fontname = "yugothic13bold" + fontname_gui_scaled = "yugothic13bold" + color = 0xff000000 + } + +## bitmapfont = { +## name = "messagelog" +## fontname = "crap" +## color = 0xffffff99 +## } + + + +} diff --git a/resource/interface/frontend.gui b/resource/interface/frontend.gui new file mode 100644 index 0000000..1639fc9 --- /dev/null +++ b/resource/interface/frontend.gui @@ -0,0 +1,7013 @@ +guiTypes = { + + ### CHAPTER ENTRY (NEW) + windowType = { + name ="tutorial_chapter_entry" + backGround="" + position = { x=-210 y =-250 } + size = { x=322 y =154 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "CENTER" + + + guiButtonType = { + name = "button" + position = { x = -204 y = -20 } + quadTextureSprite ="GFX_frontend_tutorial_military" + clicksound = tutorial_click + } + + iconType = + { + name ="icon" + spriteType = "GFX_frontend_tutorial_book_strip" + position = { x= -187 y =-8 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="image" + spriteType = "GFX_frontend_tutorial_image_strip" + position = { x= -185 y =35 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + + name ="label" + position = { x = -189 y = -4 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "tut_menu_0" + format = centre + maxWidth = 300 + maxHeight = 50 + } + + instantTextBoxType = { + + name ="text" + position = { x = -89 y = 36 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "tut_menu_0_description" + format = left + maxWidth = 180 + maxHeight = 100 + } + } + + ###### PICK ERA SCREEN + windowType = { + name = "pick_era_screen" + backGround="" + position = { x=-524 y=-366 } + size = { x=1024 y=720 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + iconType ={ + name ="bg" + spriteType = "GFX_pick_era_bg" + position = { x= 0 y =0 } + } + iconType ={ + name ="era_info_bg" + spriteType = "GFX_pick_era_info_bg" + position = { x= 259 y =123 } + } + + instantTextBoxType = { + name = "header" + position = { x = 147 y = 21 } + font = "vic_22" + text = "PICK_YOUR_STARTING_ERA" + maxWidth = 750 + maxHeight = 30 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "text" + position = { x = 147 y = 89 } + font = "vic_18_black" + text = "PICK_STARTING_ERA_TEXT" + maxWidth = 750 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ### era windows + windowType = { + name = "era_window_1" + position = { x=75 y=121 } + moveable = 0 + fullScreen = no + Orientation = "UPPER_LEFT" + + guiButtonType = { + name = "picture" + position = { x=0 y=0} + quadTextureSprite ="GFX_pick_era_image_1" + clicksound = bookmark_click + } + iconType ={ + name ="unowned_border" + spriteType = "GFX_pick_era_image_unowned" + position = { x=0 y=43 } + alwaystransparent = yes + } + instantTextBoxType = { + name = "dlc_requirement" + position = { x = 10 y = 110 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + format = centre + alwaystransparent = yes + } + iconType ={ + name ="load_progress" + spriteType = "GFX_pick_era_progress" + position = { x= 7 y =7 } + } + instantTextBoxType = { + name = "label" + position = { x = 10 y = 9 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + instantTextBoxType = { + name = "year" + position = { x = 10 y = 26 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + iconType ={ + name ="alt_start_ornament" + spriteType = "GFX_alt_era_ornament" + position = { x= 26 y =185 } + } + guiButtonType = { + name ="shattered_start" + spriteType = "GFX_alt_era_shattered_button" + position = { x= 51 y =190 } + pdx_tooltip = "SHATTERED_WORLD_TOOLTIP" + pdx_tooltip_delayed = "SHATTERED_WORLD_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="random_start" + spriteType = "GFX_alt_era_random_button" + position = { x= 88 y =190 } + pdx_tooltip = "RANDOM_WORLD_TOOLTIP" + pdx_tooltip_delayed = "RANDOM_WORLD_TOOLTIP_DELAYED" + } + + iconType ={ + name ="pick_era_ornament" + spriteType = "GFX_pick_era_ornament" + position = { x= 45 y =185 } + } + guiButtonType = { + name = "required_dlc_icon" + quadTextureSprite ="GFX_dlc_icon_sword_of_islam" + position = { x=71 y=191 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + } + ### + windowType = { + name = "era_window_2" + position = { x=256 y=121 } + moveable = 0 + fullScreen = no + Orientation = "UPPER_LEFT" + + guiButtonType = { + name = "picture" + position = { x=0 y=0} + quadTextureSprite ="GFX_pick_era_image_2" + clicksound = bookmark_click + } + iconType ={ + name ="unowned_border" + spriteType = "GFX_pick_era_image_unowned" + position = { x=0 y=43 } + alwaystransparent = yes + } + instantTextBoxType = { + name = "dlc_requirement" + position = { x = 10 y = 110 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + format = centre + alwaystransparent = yes + } + iconType ={ + name ="load_progress" + spriteType = "GFX_pick_era_progress" + position = { x= 7 y =7 } + } + instantTextBoxType = { + name = "label" + position = { x = 10 y = 9 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + instantTextBoxType = { + name = "year" + position = { x = 10 y = 26 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + iconType ={ + name ="alt_start_ornament" + spriteType = "GFX_alt_era_ornament" + position = { x= 26 y =185 } + } + guiButtonType = { + name ="shattered_start" + spriteType = "GFX_alt_era_shattered_button" + position = { x= 51 y =190 } + pdx_tooltip = "SHATTERED_WORLD_TOOLTIP" + pdx_tooltip_delayed = "SHATTERED_WORLD_TOOLTIP_DELAYED" + clicksound = click_shattered_world + } + guiButtonType = { + name ="random_start" + spriteType = "GFX_alt_era_random_button" + position = { x= 88 y =190 } + pdx_tooltip = "RANDOM_WORLD_TOOLTIP" + pdx_tooltip_delayed = "RANDOM_WORLD_TOOLTIP_DELAYED" + clicksound = click_random_world + } + + iconType ={ + name ="pick_era_ornament" + spriteType = "GFX_pick_era_ornament" + position = { x= 45 y =185 } + } + guiButtonType = { + name = "required_dlc_icon" + quadTextureSprite ="GFX_dlc_icon_sword_of_islam" + position = { x=71 y=191 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + } + ### + windowType = { + name = "era_window_3" + position = { x=437 y=121 } + moveable = 0 + fullScreen = no + Orientation = "UPPER_LEFT" + + guiButtonType = { + name = "picture" + position = { x=0 y=0} + quadTextureSprite ="GFX_pick_era_image_3" + clicksound = bookmark_click + } + instantTextBoxType = { + name = "dlc_requirement" + position = { x = 10 y = 160 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + format = centre + alwaystransparent = yes + } + iconType ={ + name ="load_progress" + spriteType = "GFX_pick_era_progress" + position = { x= 7 y =7 } + } + instantTextBoxType = { + name = "label" + position = { x = 10 y = 9 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + instantTextBoxType = { + name = "year" + position = { x = 10 y = 26 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + iconType ={ + name ="alt_start_ornament" + spriteType = "GFX_alt_era_ornament" + position = { x= 26 y =185 } + } + guiButtonType = { + name ="shattered_start" + spriteType = "GFX_alt_era_shattered_button" + position = { x= 51 y =190 } + pdx_tooltip = "SHATTERED_WORLD_TOOLTIP" + pdx_tooltip_delayed = "SHATTERED_WORLD_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="random_start" + spriteType = "GFX_alt_era_random_button" + position = { x= 88 y =190 } + pdx_tooltip = "RANDOM_WORLD_TOOLTIP" + pdx_tooltip_delayed = "RANDOM_WORLD_TOOLTIP_DELAYED" + } + } + ### + windowType = { + name = "era_window_4" + position = { x=618 y=121 } + moveable = 0 + fullScreen = no + Orientation = "UPPER_LEFT" + + guiButtonType = { + name = "picture" + position = { x=0 y=0} + quadTextureSprite ="GFX_pick_era_image_4" + clicksound = bookmark_click + } + instantTextBoxType = { + name = "dlc_requirement" + position = { x = 10 y = 160 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + format = centre + alwaystransparent = yes + } + iconType ={ + name ="load_progress" + spriteType = "GFX_pick_era_progress" + position = { x= 7 y =7 } + } + instantTextBoxType = { + name = "label" + position = { x = 10 y = 9 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + instantTextBoxType = { + name = "year" + position = { x = 10 y = 26 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + iconType ={ + name ="alt_start_ornament" + spriteType = "GFX_alt_era_ornament" + position = { x= 26 y =185 } + } + guiButtonType = { + name ="shattered_start" + spriteType = "GFX_alt_era_shattered_button" + position = { x= 51 y =190 } + pdx_tooltip = "SHATTERED_WORLD_TOOLTIP" + pdx_tooltip_delayed = "SHATTERED_WORLD_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="random_start" + spriteType = "GFX_alt_era_random_button" + position = { x= 88 y =190 } + pdx_tooltip = "RANDOM_WORLD_TOOLTIP" + pdx_tooltip_delayed = "RANDOM_WORLD_TOOLTIP_DELAYED" + } + } + ### + windowType = { + name = "era_window_5" + position = { x=799 y=121 } + moveable = 0 + fullScreen = no + Orientation = "UPPER_LEFT" + + guiButtonType = { + name = "picture" + position = { x=0 y=0} + quadTextureSprite ="GFX_pick_era_image_5" + clicksound = bookmark_click + } + instantTextBoxType = { + name = "dlc_requirement" + position = { x = 10 y = 160 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + format = centre + alwaystransparent = yes + } + iconType ={ + name ="load_progress" + spriteType = "GFX_pick_era_progress" + position = { x= 7 y =7 } + } + instantTextBoxType = { + name = "label" + position = { x = 10 y = 9 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + instantTextBoxType = { + name = "year" + position = { x = 10 y = 26 } + font = "vic_18" + text = "" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + format = centre + } + iconType ={ + name ="alt_start_ornament" + spriteType = "GFX_alt_era_ornament" + position = { x= 26 y =185 } + } + guiButtonType = { + name ="shattered_start" + spriteType = "GFX_alt_era_shattered_button" + position = { x= 51 y =190 } + pdx_tooltip = "SHATTERED_WORLD_TOOLTIP" + pdx_tooltip_delayed = "SHATTERED_WORLD_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="random_start" + spriteType = "GFX_alt_era_random_button" + position = { x= 88 y =190 } + pdx_tooltip = "RANDOM_WORLD_TOOLTIP" + pdx_tooltip_delayed = "RANDOM_WORLD_TOOLTIP_DELAYED" + } + } + + + ### + instantTextBoxType = { + name = "era_info" + position = { x=292 y=142 } + font = "vic_18_black" + text = "" + maxWidth = 640 + maxHeight = 170 + alwaystransparent = yes + } + + OverlappingElementsBoxType = { + name = "era_characters" + position = { x=119 y=370 } + size = { x=930 y=32 } + format = left + } + + instantTextBoxType = { + name = "character_info" + position = { x=105 y=523 } + font = "vic_18_black" + text = "" + maxWidth = 830 + maxHeight = 110 + } + ### + guiButtonType = { + name = "back" + position = { x=84 y=658} + quadTextureSprite ="GFX_big_button_220" + buttonText = "BACK" + buttonFont = "vic_18" + clicksound = menu_click + } + guiButtonType = { + name = "custom_game" + position = { x=493 y=658} + quadTextureSprite ="GFX_big_button_220" + buttonText = "CUSTOM_GAME" + buttonFont = "vic_18" + clicksound = menu_click + } + guiButtonType = { + name = "start_game" + position = { x=739 y=658} + quadTextureSprite ="GFX_big_button_220" + buttonText = "START_GAME" + buttonFont = "vic_18" + clicksound = menu_click + } + guiButtonType ={ + name = "start_game_required_dlc" + quadTextureSprite = "GFX_dlc_icon_sword_of_islam" + position = { x=755 y=669} + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + } + + ### ERA CHARACTER ENTRY + windowType = { + name = "era_character_entry" + backGround="" + position = { x=0 y=0 } + size = { x=158 y= 57 } + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + iconType ={ + name ="selected" + spriteType = "GFX_pick_era_selected_char" + position = { x= -16 y =-17 } + } + guiButtonType = { + position = { x= -32 y = 31 } + name = "shield" + quadTextureSprite ="GFX_shield_medium" + } + + guiButtonType = { + name ="portrait" + quadTextureSprite = "GFX_char_100" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType ={ + name = "portrait_frame" + quadTextureSprite = "GFX_charframe_100" + position = { x= -8 y = -9 } + Orientation = "UPPER_LEFT" + } + + iconType ={ + name ="name_bg" + spriteType = "GFX_pick_era_portrait_banner" + position = { x= -30 y =80 } + } + + instantTextBoxType = { + name = "name" + position = { x=-4 y=95 } + font = "vic_18_black" + text = "" + maxWidth = 105 + maxHeight = 50 + format = center + } + + guiButtonType ={ + name = "required_dlc" + quadTextureSprite = "GFX_dlc_icon_sword_of_islam" + position = { x=73 y=-5 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + } + + ##### + textBoxType = { + name = "select_nation_label" + position = { x = 50 y = 30 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "FE_NATION_TO_PLAY" + maxWidth = 280 + maxHeight = 160 + format = left + } + + ### COUNTRY SELECTION PANEL + windowType = { + name ="country_selection_panel" + backGround= "Background" + position = { x=0 y =0} + size = { x=320 y = 960} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_frontend_tile" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + #### MULTIPLAYER MENU + windowType = { + name ="multiplayer_menu" + backGround="" + position = { x=-511 y=-280 } + size = { x=1022 y=560 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + Orientation = "CENTER" + + guiButtonType = { + name = "join_direct" + position = { x = 140 y = 506 } + quadTextureSprite ="GFX_standard_button_148" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "CONNECT_TO_IP" + buttonFont = "vic_18" + } + + editBoxType = { + position = { x = 40 y = 105 } + name = "playername" + font = "Arial12" + borderSize = {x = 0 y = 4} + size = { x=190 y=24 } + text = "FE_PLAYER" + orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + + name ="version_label" + position = { x = 52 y = 20 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + format = left + maxWidth = 150 + maxHeight = 40 + } + } + + windowType = { + name ="multiplayer_connect_menu" + backGround="" + position = { x=-210 y =-180} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "CENTER" + + iconType = { + name ="bg" + spriteType = "GFX_matchmaking_joining_bg" + position = { x= 0 y =0 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "info_desc" + position = { x = 31 y = 30 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 320 + maxHeight = 190 + format = left + } + + guiButtonType = { + name = "back" + position = { x = 137 y = 226 } + quadTextureSprite ="GFX_standard_button_112" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "FE_BACK" + buttonFont = "vic_18" + } + + } + + #### TUTORIAL + ############## + + windowType = { + name ="tutorial_panel" + backGround="" + position = { x=-276 y =-202} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "CENTER" + + iconType = + { + name ="frontend_tutorial_bg" + spriteType = "GFX_frontend_tutorial_bg" + position = { x= -226 y = -120 } + Orientation = "UPPER_LEFT" + } + + #tabs + guiButtonType = { + name = "tutorial_tab_basic" + position = { x = -194 y = -96 } + quadTextureSprite ="GFX_frontend_tutorial_tab" + clicksound = character_view_click + } + guiButtonType = { + name = "tutorial_tab_medium" + position = { x = 121 y = -96 } + quadTextureSprite ="GFX_frontend_tutorial_tab" + clicksound = character_view_click + } + guiButtonType = { + name = "tutorial_tab_advanced" + position = { x = 436 y = -96 } + quadTextureSprite ="GFX_frontend_tutorial_tab" + clicksound = character_view_click + } + + iconType = + { + name ="basic_icon" + spriteType = "GFX_frontend_tutorial_basic_icon" + position = { x= -180 y =-87 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="medium_icon" + spriteType = "GFX_frontend_tutorial_medium_icon" + position = { x= 135 y =-87 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="advanced_icon" + spriteType = "GFX_frontend_tutorial_advanced_icon" + position = { x= 450 y =-87 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name ="basic_text" + position = { x = -199 y = -81 } + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "FE_BASIC" + format = centre + maxWidth = 310 + maxHeight = 50 + } + instantTextBoxType = { + name ="medium_text" + position = { x = 116 y = -81 } + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "FE_MEDIUM" + format = centre + maxWidth = 310 + maxHeight = 50 + } + instantTextBoxType = { + name ="advanced_text" + position = { x = 431 y = -81 } + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "FE_ADVANCED" + format = centre + maxWidth = 310 + maxHeight = 50 + } + + + #### chapters. (OLD) remove? + + ### CHAPTERS BASIC + windowType = { + name ="tutorial_chapters_basic" + backGround="" + position = { x=-210 y =-250} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "CENTER" + } + + ### CHAPTERS window. MEDIUM + windowType = { + name ="tutorial_chapters_medium" + backGround="" + position = { x=-210 y =-250} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "CENTER" + } + + ### CHAPTERS window. ADVANCED + windowType = { + name ="tutorial_chapters_advanced" + backGround="" + position = { x=-210 y =-250} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "CENTER" + + } + + ### + guiButtonType = { + name = "back_button" + position = { x = -156 y = 455 } + quadTextureSprite ="GFX_big_button_220" + buttonText = "FE_BACK" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = { + name = "learning_scenario_button" + position = { x = 166 y = 455 } + quadTextureSprite ="GFX_big_button_220" + buttonText = "LEARNING_SCENARIO" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = { + name = "start_button" + position = { x = 488 y = 455 } + quadTextureSprite ="GFX_big_button_220" + buttonText = "FE_START_ALL_CHAPTERS" + buttonFont = "vic_22" + clicksound = play + } + + } + + + ### MAIN MENU PANEL + windowType = { + name ="mainmenu_panel" + backGround="" + position = { x=0 y =0} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + downsound = "" + fullscreen=yes + + windowType = + { + name ="mainmenu_top_panel" + backGround="" + position = { x=0 y =0} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + Orientation = "UPPER_LEFT" + + iconType = + { + name ="frontend_title" + spriteType = "GFX_frontend_title" + position = { x= 15 y = 5 } + } + iconType = + { + name ="pdx_logo" + spriteType = "GFX_pdx_dev_logo" + position = { x= -155 y = 8 } + Orientation = "UPPER_RIGHT" + } + instantTextBoxType = { + name = "release_d" + position = { x = 15 y = 200 } + maxWidth = 350 + font = "vic_36" + text = "RELEASE_D_WARNING" + } + } + + windowType = + { + name ="mainmenu_top_right_panel" + backGround="" + position = { x=0 y =0} + size = { x=420 y =-500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "UPPER_RIGHT" + } + + windowType = + { + name ="mainmenu_bottom_panel_default" + fullscreen=yes + Orientation = "CENTER" + + iconType = + { + name ="frontend_lower_panel" + spriteType = "GFX_fronted_center_panel_top" + position = { x=-192 y=-220} + } + + iconType = + { + name ="bottom_mainmenu" + spriteType = "GFX_frontend_center_panel_bottom1" + position = { x=-192 y =112} + } + + iconType = + { + name ="bottom_mainmenu_banner" + spriteType = "GFX_frontend_center_panel_bottom1" + position = { x=-192 y =112} + } + + instantTextBoxType = + { + name ="version_label" + position = { x = -85 y = 224 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + format = centre + maxWidth = 170 + maxHeight = 20 + } + + guiButtonType = + { + name = "single_player_menu_button" + position = { x=-116 y=-139} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_SINGLE_PLAYER" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "multi_player_button" + position = { x=-116 y=-89} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_MULTI_PLAYER" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "ingamestore_button" + position = { x = -116 y = -39 } + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_CONTENT_SETTINGS" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "settings_button" + position = { x=-116 y=11} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_OPTIONS" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "credits_button" + position = { x=-116 y=61} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_CREDITS" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = { + name = "exit_button" + position = { x=-116 y=111} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_EXIT" + buttonFont = "vic_22" + clicksound = quit + } + + ###### TEST BUTTONS ###### + + guiButtonType = + { + name = "single_player_button" + position = { x = 335 y = -160 } + quadTextureSprite ="GFX_big_button_176" + buttonText = "FE_NEW_GAME" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "load_game_button" + position = { x = 335 y = -110 } + quadTextureSprite ="GFX_big_button_176" + buttonText = "FE_LOAD_GAME" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "nudge_button" + position = { x = 335 y = -10 } + quadTextureSprite ="GFX_big_button_176" + buttonText = "NUDGE" + buttonFont = "vic_22" + clicksound = menu_click + } + + ######################## + + guiButtonType = + { + name = "homepage_button" + position = { x = -94 y = 170 } + quadTextureSprite ="homepage" + clicksound = menu_click + } + guiButtonType = + { + name = "forum_button" + position = { x = -47 y = 170 } + quadTextureSprite ="forum" + clicksound = menu_click + } + guiButtonType = + { + name = "facebook_button" + position = { x = 0 y = 170 } + quadTextureSprite ="facebook" + clicksound = menu_click + } + guiButtonType = + { + name = "twitter_button" + position = { x = 47 y = 170 } + quadTextureSprite ="twitter" + clicksound = menu_click + } + } + + windowType = + { + name ="mainmenu_bottom_panel_banner" + fullscreen=yes + Orientation = "CENTER" + + iconType = + { + name ="frontend_lower_panel" + spriteType = "GFX_fronted_center_panel_top" + position = { x=-192 y=-220} + } + + iconType = + { + name ="bottom_mainmenu" + spriteType = "GFX_frontend_center_panel_bottom2" + position = { x=-192 y =112} + } + + iconType = + { + name ="bottom_mainmenu_banner" + spriteType = "GFX_frontend_center_panel_bottom3" + position = { x=-192 y =112} + } + + guiButtonType = + { + name = "single_player_menu_button" + position = { x=-116 y=-139} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_SINGLE_PLAYER" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "multi_player_button" + position = { x=-116 y=-89} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_MULTI_PLAYER" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "settings_button" + position = { x=-116 y=-39} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_OPTIONS" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "credits_button" + position = { x=-116 y=11} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_CREDITS" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = { + name = "exit_button" + position = { x=-116 y=61} + quadTextureSprite ="GFX_big_button_232" + buttonText = "FE_EXIT" + buttonFont = "vic_22" + clicksound = quit + } + + guiButtonType = + { + name = "ingamestore_button" + position = { x = -82 y = 209 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "FE_CONTENT_SETTINGS" + buttonFont = "vic_18" + clicksound = menu_click + } + + ###### TEST BUTTONS ###### + + guiButtonType = + { + name = "single_player_button" + position = { x = 335 y = -110 } + quadTextureSprite ="GFX_big_button_176" + buttonText = "FE_NEW_GAME" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "load_game_button" + position = { x = 335 y = -60 } + quadTextureSprite ="GFX_big_button_176" + buttonText = "FE_LOAD_GAME" + buttonFont = "vic_22" + clicksound = menu_click + } + + guiButtonType = + { + name = "nudge_button" + position = { x = 335 y = -10 } + quadTextureSprite ="GFX_big_button_176" + buttonText = "NUDGE" + buttonFont = "vic_22" + clicksound = menu_click + } + + ######################## + + guiButtonType = { + name = "dlc_icon_dlc007" + quadTextureSprite = "GFX_dlc_icon_sword_of_islam" + position = { x=-138 y=139 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "dlc_icon_dlc011" + quadTextureSprite = "GFX_dlc_icon_legacy_of_rome" + position = { x=-103 y=139 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc018" + quadTextureSprite = "GFX_dlc_icon_sunset_invasion" + position = { x=-68 y=139 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc022" + quadTextureSprite = "GFX_dlc_icon_the_republic" + position = { x=-33 y=139 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc024" + quadTextureSprite = "GFX_dlc_icon_the_old_gods" + position = { x=2 y=139 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc032" + quadTextureSprite = "GFX_dlc_icon_sons_of_abraham" + position = { x=37 y=139 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc039" + quadTextureSprite = "GFX_dlc_icon_rajas_of_india" + position = { x=72 y=139 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc045" + quadTextureSprite = "GFX_dlc_icon_charlemagne" + position = { x=107 y=139 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc050" + quadTextureSprite = "GFX_dlc_icon_way_of_life" + position = { x=-119 y=174 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc054" + quadTextureSprite = "GFX_dlc_icon_horse_lords" + position = { x=-84 y=174 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc062" + quadTextureSprite = "GFX_dlc_icon_zeus" + position = { x=-49 y=174 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc066" + quadTextureSprite = "GFX_dlc_icon_reapers_due" + position = { x=-14 y=174 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc069" + quadTextureSprite = "GFX_dlc_icon_monks_and_mystics" + position = { x=21 y=174 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "dlc_icon_dlc073" + quadTextureSprite = "GFX_dlc_icon_jade_dragon" + position = { x=56 y=174 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "dlc_icon_dlc074" + quadTextureSprite = "GFX_dlc_icon_jade_dragon" + position = { x=91 y=174 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "banner_dlc" + quadTextureSprite = "GFX_banner_dlc007" + position = { x=-139 y=239 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + + instantTextBoxType = { + name = "banner_dlc_text" + position = { x=-122 y=268 } + font = "vic_22_black" + text = "" + maxWidth = 244 + maxHeight = 22 + format = centre + fixedsize = yes + alwaystransparent = yes + } + + iconType = { + name = "banner_dlc_icon" + spriteType = "GFX_dlc_icon_sword_of_islam" + position = { x=110 y=288 } + alwaystransparent = yes + } + } + + windowType = + { + name ="mainmenu_links_panel" + fullscreen=no + Orientation = "LOWER_RIGHT" + + guiButtonType = + { + name = "homepage_button" + position = { x = -207 y = -63 } + quadTextureSprite ="homepage" + clicksound = menu_click + } + guiButtonType = + { + name = "forum_button" + position = { x = -160 y = -63 } + quadTextureSprite ="forum" + clicksound = menu_click + } + guiButtonType = + { + name = "facebook_button" + position = { x = -113 y = -63 } + quadTextureSprite ="facebook" + clicksound = menu_click + } + guiButtonType = + { + name = "twitter_button" + position = { x = -66 y = -63 } + quadTextureSprite ="twitter" + clicksound = menu_click + } + } + + windowType = + { + name ="mainmenu_version_panel" + fullscreen=no + Orientation = "LOWER_LEFT" + iconType = + { + name ="version_background" + spriteType = "GFX_frontend_version" + position = { x=18 y =-58} + } + + instantTextBoxType = + { + name ="version_label" + position = { x = 20 y = -45 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + format = center + maxWidth = 144 + maxHeight = 20 + } + } + + listboxType = + { + name ="stories_list" + position = { x=600 y = 700} + backGround="" + size = { x=200 y = 400} + spacing = 2 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 10 y = 10} + Orientation = "UPPER_LEFT" + } + + } + + ### SETTINGS (is this used?) + windowType = { + name ="settings" + backGround="" + position = { x=-391 y =-228} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "CENTER" + + guiButtonType = { + name = "back_button" + position = { x = 150 y = 300 } + quadTextureSprite ="button_type_6" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "FE_BACK" + buttonFont = "small" + } + } + + ### LOBBY + windowType = { + name ="lobby" + backGround="" + position = { x=0 y =0} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + + windowType = + { + name ="left_window" + backGround="" + position = { x=0 y =-32} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + + iconType = + { + name ="left_sidepanel" + spriteType = "GFX_lobby_left_bg" + position = { x= -1 y = 31 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="lobby_int_chars" + spriteType = "GFX_lobby_int_chars" + position = { x= 9 y = 273 } + Orientation = "UPPER_LEFT" + } + instantTextBoxType = + { + name = "interesting_characters_label" + position = { x = 22 y = 290 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "FE_INTERESTING_CHARACTERS" + maxWidth = 212 + maxHeight = 20 + Orientation = "UPPER_LEFT" + format = centre + } + + guiButtonType = { + name = "savedgame_tab" + position = { x = 48 y = 43 } + quadTextureSprite ="GFX_standard_button_164" + buttonFont = "vic_18" + buttonText = "FE_LOAD_GAME" + clicksound = character_view_click + } + ### bookmarks + windowType = + { + name ="bookmarks" + backGround="" + position = { x=0 y =0 } + size = { x=100 y =768} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + + instantTextBoxType = + { + name = "bookmarks_label" + position = { x = 22 y = 85 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "FE_BOOKEDMARKED" + maxWidth = 212 + maxHeight = 20 + format = centre + } + + listboxType = + { + name ="bookmarks_list" + position = { x = -11 y = 106 } + backGround="" + size = { x=239 y =168} + Orientation = "UPPER_LEFT" + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + } + listboxType = + { + name = "Chars_Listbox" + position = { x=20 y = 317 } + backGround="" + size = { x = 200 y = 228 } + Orientation = "UPPER_LEFT" + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + } + } + } + ### RIGHT WINDOW + windowType = + { + name ="right_window" + backGround="" + position = { x=-13 y =-32} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + + iconType = + { + name ="right_sidepanel_char" + spriteType = "GFX_lobby_right_bg" + position = { x= -246 y = 31 } + Orientation = "UPPER_RIGHT" + } + iconType = + { + name ="right_sidepanel_players" + spriteType = "GFX_lobby_mp_bg" + position = { x= -246 y = 31 } + Orientation = "UPPER_RIGHT" + } + iconType = + { + name = "right_sidepanel_republics" + spriteType = "GFX_lobby_republic_bg" + position = { x = -246 y = 31 } + Orientation = "UPPER_RIGHT" + } + + guiButtonType = + { + name = "character_tab" + position = { x = -227 y = 47 } + quadTextureSprite ="GFX_lobby_tab" + Orientation = "UPPER_RIGHT" + clicksound = generic_click_04 + } + + guiButtonType = + { + name = "players_tab" + position = { x = -116 y = 47 } + quadTextureSprite ="GFX_lobby_tab" + Orientation = "UPPER_RIGHT" + clicksound = generic_click_04 + } + + guiButtonType = { + position = { x = -211 y = 43 } + name = "republics_tab" + quadTextureSprite ="GFX_lobby_dlc_tab_republics" + pdx_tooltip = "REPUBLICS" + clicksound = generic_click_04 + Orientation = "UPPER_RIGHT" + } + + instantTextBoxType = + { + name = "character_label" + position = { x = -224 y = 57 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "FE_CHARACTER" + maxWidth = 105 + maxHeight = 20 + Orientation = "UPPER_LEFT" + format = centre + fixedsize = yes + Orientation = "UPPER_RIGHT" + } + + instantTextBoxType = + { + name = "players_label" + position = { x = -101 y = 57 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "FE_PLAYERS" + maxWidth = 65 + maxHeight = 20 + Orientation = "UPPER_LEFT" + format = left + fixedsize = yes + Orientation = "UPPER_RIGHT" + } + instantTextBoxType = + { + name = "players_number" + position = { x = -50 y = 57 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 30 + maxHeight = 20 + Orientation = "UPPER_LEFT" + format = right + fixedsize = yes + Orientation = "UPPER_RIGHT" + } + + ### single player + windowType = + { + name ="singleplayer" + backGround="" + position = { x=-226 y =40} + size = { x=200 y =340} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "UPPER_RIGHT" + + + + instantTextBoxType = { + name = "selected_nation_label" + position = { x = 15 y = 231 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 190 + maxHeight = 12 + fixedsize = yes + format = left + } + instantTextBoxType = { + name = "selected_nation_status_label" + position = { x = 15 y = 246 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 190 + maxHeight = 16 + fixedsize = yes + format = left + } + instantTextBoxType = { + name = "selected_culture" + position = { x = 15 y = 261 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 190 + maxHeight = 16 + fixedsize = yes + format = left + } + instantTextBoxType = { + name = "selected_religion" + position = { x = 15 y = 276 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 190 + maxHeight = 16 + fixedsize = yes + format = left + } + + ### REMOVE + instantTextBoxType = { + name = "selected_fog" + position = { x = 9920 y = 175 } + textureFile = "" + font = "small" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 180 + maxHeight = 160 + format = centre + } + ### + + instantTextBoxType = { + name = "selected_ruler" + position = { x = 20 y = 49 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 180 + maxHeight = 36 + fixedsize = yes + format = centre + } + + guiButtonType = { + position = { x= 10 y = 89 } + name = "dynasty_shield" + quadTextureSprite ="GFX_shield_small" + } + instantTextBoxType = { + name = "selected_dynasty" + position = { x = 43 y = 94 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 160 + maxHeight = 20 + fixedsize = yes + format = left + } + + guiButtonType = { + name ="player_portrait" + quadTextureSprite = "GFX_char_100" + position = { x= 30 y = 119 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "player_portrait_frame" + quadTextureSprite = "GFX_charframe_100" + position = { x= 22 y = 111 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + position = { x= 4 y = 173 } + name = "player_shield" + quadTextureSprite ="GFX_shield_medium" + } + iconType = + { + name ="player_crown" + spriteType = "GFX_shield_crown_strip_medium" + position = { x= 16 y = 150 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name = "player_required_dlc_0" + quadTextureSprite = "GFX_dlc_icon_sword_of_islam" + position = { x=97 y=113 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "player_required_dlc_1" + quadTextureSprite = "GFX_dlc_icon_sword_of_islam" + position = { x=113 y=137 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + guiButtonType = { + name = "player_required_dlc_2" + quadTextureSprite = "GFX_dlc_icon_sword_of_islam" + position = { x=113 y=166 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + + guiButtonType = { + name ="liege_portrait" + quadTextureSprite = "GFX_char_50" + position = { x= 150 y = 132 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "liege_portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 143 y = 124 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + position = { x= 144 y = 164 } + name = "liege_shield" + quadTextureSprite ="GFX_shield_small" + } + + guiButtonType = { + position = { x= 132 y = 189 } + name = "customize" + quadTextureSprite ="GFX_lobby_cust_open" + clicksound = generic_click_04 + } + + instantTextBoxType = { + name = "vassals_label" + position = { x = 20 y = 365 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "FE_VASSALS" + maxWidth = 180 + maxHeight = 32 + format = left + } + instantTextBoxType = { + name = "vassals_amount" + position = { x = 20 y = 365 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 180 + maxHeight = 32 + format = right + } + listboxType = + { + name = "Vassals_Listbox" + position = { x=5 y = 385 } + backGround="" + size = { x = 200 y = 228 } + Orientation = "UPPER_LEFT" + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + } + + # difficulty + + + iconType = + { + name ="difficultybar" + spriteType = "GFX_difficulty_progress" + position = { x= 33 y = 316 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="difficulty" + spriteType = "GFX_lobby_difficulty_overlay" + position = { x= 9 y = 309 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "difficulty_label" + position = { x = 20 y = 297 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "FE_DIFFICULTY" + maxWidth = 180 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ### diplo status + instantTextBoxType = { + name = "diplo_status_label" + position = { x = 13 y = 340 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "FE_DIPLOMACY" + maxWidth = 180 + maxHeight = 20 + format = left + fixedsize = yes + } + + OverlappingElementsBoxType = { + name = "info_list_box" + position = { x = 60 y = 328 } + size = { x = 135 y = 32 } + format = right + spacing = 0 + } + + listboxType = { + name = "recommended_dlc_list" + position = { x=-57 y=50 } + size = { x=44 y=300 } + } + } + + ### players + windowType = + { + name ="players" + backGround="" + position = { x=-226 y =40} + size = { x=200 y =340} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "UPPER_RIGHT" + + listboxType = + { + name = "Players_Listbox" + position = { x=5 y = 62 } + backGround="" + size = { x = 200 y = 513 } + Orientation = "UPPER_LEFT" + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + } + instantTextBoxType = { + name = "checksum" + position = { x = 9 y = 576 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 200 + maxHeight = 24 + format = centre + } + } + + ### republics + windowType = + { + name ="republics" + backGround="" + position = { x=-226 y =40} + size = { x=200 y =340} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "UPPER_RIGHT" + + listboxType = + { + name = "Republics_Listbox" + position = { x=5 y = 67 } + backGround="" + size = { x = 200 y = 549 } + Orientation = "UPPER_LEFT" + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + } + + instantTextBoxType = { + name = "Title" + position = { x = 8 y = 43 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 200 + maxHeight = 20 + format = centre + fixedsize = yes + } + } + } + + ### CUSTOMIZE WINDOW (DLC) + windowType = + { + name ="customize_attribs_window" + backGround="" + position = { x=0 y =0} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + Orientation = "CENTER" + + iconType = + { + name = "background" + spriteType = "GFX_lobby_cust_bg_attr" + position = { x = -280 y = -290 } + Orientation = "UPPER_LEFT" + } + ###### + + guiButtonType = { + position = { x = -256 y = -273 } + name = "apperance" + quadTextureSprite ="GFX_lobby_cust_tab" + clicksound = generic_click_04 + } + guiButtonType = { + position = { x = -84 y = -273 } + name = "coatofarms" + quadTextureSprite ="GFX_lobby_cust_tab" + clicksound = generic_click_04 + } + guiButtonType = { + position = { x = 88 y = -273 } + name = "attributes" + quadTextureSprite ="GFX_lobby_cust_tab" + clicksound = generic_click_04 + } + instantTextBoxType = + { + name = "apperance_label" + position = { x = -248 y = -260 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "RD_APPEARANCE" + maxWidth = 150 + maxHeight = 24 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "coatofarms_label" + position = { x = -76 y = -260 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "RD_COAT_OF_ARMS" + maxWidth = 150 + maxHeight = 24 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "attributes_label" + position = { x = 96 y = -260 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "RD_ATTRIBUTES" + maxWidth = 150 + maxHeight = 24 + format = centre + fixedsize = yes + } + #################### + + guiButtonType = + { + name = "cancel_button" + position = { x = -207 y = 217 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "RD_CANCEL" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + guiButtonType = + { + name = "done" + position = { x = 43 y = 217 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "RD_FINISH" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + ######## + + guiButtonType = + { + name ="player_portrait" + quadTextureSprite = "GFX_char_100" + position = { x= -201 y = -173 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="player_portrait_frame" + quadTextureSprite = "GFX_charframe_100" + position = { x= -209 y = -182 } + Orientation = "UPPER_LEFT" + } + instantTextBoxType = + { + name = "selected_ruler" + position = { x = -230 y = -218 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 390 + maxHeight = 24 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "selected_ruler_age" + position = { x = 45 y = -217 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 160 + maxHeight = 24 + format = right + fixedsize = yes + } + + ################### + + instantTextBoxType = + { + name = "education_label" + position = { x = -231 y = 124 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_EDUCATION" + maxWidth = 120 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "traits_label" + position = { x = 11 y = 124 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_TRAITS" + maxWidth = 120 + maxHeight = 20 + format = centre + fixedsize = yes + } + + guiButtonType = { + position = { x = -205 y = 143 } + name = "edu_background" + quadTextureSprite ="GFX_lobby_cust_add_edu" + pdx_tooltip = "RD_CHANGE_EDUCATIONAL_TRAIT" + clicksound = generic_click_04 + } + + iconType = + { + name ="edu_icon" + spriteType = "GFX_icon_diplomacy" + position = { x = -165 y = 147 } + Orientation = "UPPER_LEFT" + } + + OverlappingElementsBoxType = { + name = "traits" + position = { x = -53 y = 147 } + size = { x=260 y=32 } + format = left + } + guiButtonType = { + position = { x = -93 y = 143 } + name = "add_trait" + quadTextureSprite ="GFX_lobby_cust_add_trait" + pdx_tooltip = "RD_ADD_TRAIT" + clicksound = generic_click_04 + } + guiButtonType = { + position = { x = 205 y = 143 } + name = "clear_traits" + quadTextureSprite ="GFX_lobby_cust_remove_all_traits" + pdx_tooltip = "RD_CLEARTRAITS" + clicksound = generic_click_04 + } + + guiButtonType = + { + name = "reset" + position = { x = 211 y = -223 } + quadTextureSprite ="GFX_lobby_cust_reset" + pdx_tooltip = "RD_RESET" + clicksound = generic_click_04 + } + + ###################### + iconType = + { + name ="diplomacy_icon" + spriteType = "GFX_icon_diplomacy" + position = { x= -47 y = -176 } + Orientation = "UPPER_LEFT" + } + guiButtonType = + { + name = "diplomacy_down" + position = { x = 186 y = -176 } + quadTextureSprite ="GFX_buildview_prev" + pdx_tooltip = "RD_EXTRA_CLICK" + } + guiButtonType = + { + name = "diplomacy_up" + position = { x = 211 y = -176 } + quadTextureSprite ="GFX_buildview_next" + pdx_tooltip = "RD_EXTRA_CLICK" + } + instantTextBoxType = + { + name = "diplomacy_label" + position = { x = -17 y = -170 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_DIPLOMACY" + maxWidth = 120 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "diplomacy_numbers" + position = { x = 68 y = -170 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 110 + maxHeight = 20 + format = right + fixedsize = yes + } + ######## + iconType = + { + name ="martial_icon" + spriteType = "GFX_icon_martial" + position = { x= -47 y = -147 } + Orientation = "UPPER_LEFT" + } + guiButtonType = + { + name = "martial_down" + position = { x = 186 y = -147 } + quadTextureSprite ="GFX_buildview_prev" + pdx_tooltip = "RD_EXTRA_CLICK" + } + guiButtonType = + { + name = "martial_up" + position = { x = 211 y = -147 } + quadTextureSprite ="GFX_buildview_next" + pdx_tooltip = "RD_EXTRA_CLICK" + } + instantTextBoxType = + { + name = "martial_label" + position = { x = -17 y = -141 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_MARTIAL" + maxWidth = 120 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "martial_numbers" + position = { x = 68 y = -141 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 110 + maxHeight = 20 + format = right + fixedsize = yes + } + ######## + iconType = + { + name ="stewardship_icon" + spriteType = "GFX_icon_stewardship" + position = { x= -47 y = -118 } + Orientation = "UPPER_LEFT" + } + guiButtonType = + { + name = "stewardship_down" + position = { x = 186 y = -118 } + quadTextureSprite ="GFX_buildview_prev" + pdx_tooltip = "RD_EXTRA_CLICK" + } + guiButtonType = + { + name = "stewardship_up" + position = { x = 211 y = -118 } + quadTextureSprite ="GFX_buildview_next" + pdx_tooltip = "RD_EXTRA_CLICK" + } + instantTextBoxType = + { + name = "stewardship_label" + position = { x = -17 y = -112 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_STEWARDSHIP" + maxWidth = 120 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "stewardship_numbers" + position = { x = 68 y = -112 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 110 + maxHeight = 20 + format = right + fixedsize = yes + } + ########## + iconType = + { + name ="intrigue_icon" + spriteType = "GFX_icon_intrigue" + position = { x= -47 y = -89 } + Orientation = "UPPER_LEFT" + } + guiButtonType = + { + name = "intrigue_down" + position = { x = 186 y = -89 } + quadTextureSprite ="GFX_buildview_prev" + pdx_tooltip = "RD_EXTRA_CLICK" + } + guiButtonType = + { + name = "intrigue_up" + position = { x = 211 y = -89 } + quadTextureSprite ="GFX_buildview_next" + pdx_tooltip = "RD_EXTRA_CLICK" + } + instantTextBoxType = + { + name = "intrigue_label" + position = { x = -17 y = -83 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_INTRIGUE" + maxWidth = 120 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "intrigue_numbers" + position = { x = 68 y = -83 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 110 + maxHeight = 20 + format = right + fixedsize = yes + } + ########### + iconType = + { + name ="learning_icon" + spriteType = "GFX_icon_learning" + position = { x= -47 y = -60 } + Orientation = "UPPER_LEFT" + } + guiButtonType = + { + name = "learning_down" + position = { x = 186 y = -60 } + quadTextureSprite ="GFX_buildview_prev" + pdx_tooltip = "RD_EXTRA_CLICK" + } + guiButtonType = + { + name = "learning_up" + position = { x = 211 y = -60 } + quadTextureSprite ="GFX_buildview_next" + pdx_tooltip = "RD_EXTRA_CLICK" + } + instantTextBoxType = + { + name = "learning_label" + position = { x = -17 y = -54 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_LEARNING" + maxWidth = 120 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "learning_numbers" + position = { x = 68 y = -54 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 110 + maxHeight = 20 + format = right + fixedsize = yes + } + ########## + guiButtonType = + { + name = "health_down" + position = { x = 186 y = -21 } + quadTextureSprite ="GFX_buildview_prev" + pdx_tooltip = "RD_EXTRA_CLICK" + } + guiButtonType = + { + name = "health_up" + position = { x = 211 y = -21 } + quadTextureSprite ="GFX_buildview_next" + pdx_tooltip = "RD_EXTRA_CLICK" + } + instantTextBoxType = + { + name = "health_label" + position = { x = -43 y = -15 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_HEALTH" + maxWidth = 120 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "health_numbers" + position = { x = 68 y = -15 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 110 + maxHeight = 20 + format = right + fixedsize = yes + } + ############ + guiButtonType = + { + name = "fertility_down" + position = { x = 186 y = 8 } + quadTextureSprite ="GFX_buildview_prev" + pdx_tooltip = "RD_EXTRA_CLICK" + } + guiButtonType = + { + name = "fertility_up" + position = { x = 211 y = 8 } + quadTextureSprite ="GFX_buildview_next" + pdx_tooltip = "RD_EXTRA_CLICK" + } + instantTextBoxType = + { + name = "fertility_label" + position = { x = -43 y = 14 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_FERTILITY" + maxWidth = 120 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "fertility_numbers" + position = { x = 68 y = 14 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 110 + maxHeight = 20 + format = right + fixedsize = yes + } + ########### + guiButtonType = + { + name = "sons_down" + position = { x = 186 y = 47 } + quadTextureSprite ="GFX_buildview_prev" + pdx_tooltip = "RD_CHANGE_SONS" + } + guiButtonType = + { + name = "sons_up" + position = { x = 211 y = 47 } + quadTextureSprite ="GFX_buildview_next" + pdx_tooltip = "RD_CHANGE_SONS" + } + instantTextBoxType = + { + name = "sons_label" + position = { x = -43 y = 53 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_SONS" + maxWidth = 120 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "sons_numbers" + position = { x = 68 y = 53 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 110 + maxHeight = 20 + format = right + fixedsize = yes + } + ########## + guiButtonType = + { + name = "daughters_down" + position = { x = 186 y = 76 } + quadTextureSprite ="GFX_buildview_prev" + pdx_tooltip = "RD_CHANGE_DAUGHTERS" + } + guiButtonType = + { + name = "daughters_up" + position = { x = 211 y = 76 } + quadTextureSprite ="GFX_buildview_next" + pdx_tooltip = "RD_CHANGE_DAUGHTERS" + } + instantTextBoxType = + { + name = "daughters_label" + position = { x = -43 y = 82 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_DAUGHTERS" + maxWidth = 120 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "daughters_numbers" + position = { x = 68 y = 82 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 110 + maxHeight = 20 + format = right + fixedsize = yes + } + + ########## + instantTextBoxType = + { + name = "firstname_label" + position = { x = -213 y = -65 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_FIRST_NAME" + maxWidth = 120 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "dynasty_label" + position = { x = -213 y = -12 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_DYNASTY" + maxWidth = 120 + maxHeight = 20 + format = centre + fixedsize = yes + } + + editBoxType = + { + name = "edit_firstname" + position = { x = -238 y = -52 } + size = { x = 147 y = 32 } + textureFile = "" + font = "vic_22" + borderSize = { x = 4 y = 4 } + cursor = { x = 4 y = 0 } + text = "" + } + + guiButtonType = + { + position = { x= -92 y = -45 } + name = "random_first_name" + quadTextureSprite ="GFX_lobby_cust_random_small" + pdx_tooltip = "RD_RANDOMIZE" + clicksound = generic_click_04 + } + + editBoxType = + { + name = "edit_dynastyname" + position = { x = -238 y = 1 } + size = { x = 147 y = 32 } + textureFile = "" + font = "vic_22" + borderSize = { x = 4 y = 4 } + cursor = { x = 4 y = 0 } + text = "" + } + + guiButtonType = + { + position = { x= -92 y = 8 } + name = "random_dyn_name" + quadTextureSprite ="GFX_lobby_cust_random_small" + pdx_tooltip = "RD_RANDOMIZE" + clicksound = generic_click_04 + } + + ##### + instantTextBoxType = + { + name = "married_label" + position = { x = -239 y = 44 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_MARRIED2" + maxWidth = 70 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "culture_label" + position = { x = -239 y = 69 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_CULTURE" + maxWidth = 70 + maxHeight = 20 + format = left + fixedsize = yes + } + instantTextBoxType = + { + name = "religion_label" + position = { x = -239 y = 94 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_RELIGION" + maxWidth = 70 + maxHeight = 20 + format = left + fixedsize = yes + } + + instantTextBoxType = + { + name = "current_culture" + position = { x = -170 y = 69 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 80 + maxHeight = 20 + format = right + fixedsize = yes + } + instantTextBoxType = + { + name = "current_religion" + position = { x = -170 y = 94 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 80 + maxHeight = 20 + format = right + fixedsize = yes + } + + guiButtonType = + { + position = { x= -85 y = 39 } + name = "is_married" + quadTextureSprite ="GFX_checkbox_default" + pdx_tooltip = "RD_MARRIED" + clicksound = generic_click_04 + } + guiButtonType = + { + position = { x= -85 y = 64 } + name = "change_culture" + quadTextureSprite ="GFX_lobby_cust_change" + pdx_tooltip = "RD_CHANGE_CULTURE" + clicksound = generic_click_04 + } + guiButtonType = + { + position = { x= -85 y = 89 } + name = "change_religion" + quadTextureSprite ="GFX_lobby_cust_change" + pdx_tooltip = "RD_CHANGE_RELIGION" + clicksound = generic_click_04 + } + } + + ### DYNASTY SHIELD CUSTOMIZE WINDOW + windowType = + { + name ="customize_dyn_window" + backGround="" + position = { x=0 y =0} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + Orientation = "CENTER" + + iconType = + { + name = "background" + spriteType = "GFX_lobby_cust_bg_shield" + position = { x = -280 y = -290 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + position = { x = -256 y = -273 } + name = "apperance" + quadTextureSprite ="GFX_lobby_cust_tab" + clicksound = generic_click_04 + } + guiButtonType = { + position = { x = -84 y = -273 } + name = "coatofarms" + quadTextureSprite ="GFX_lobby_cust_tab" + clicksound = generic_click_04 + } + guiButtonType = { + position = { x = 88 y = -273 } + name = "attributes" + quadTextureSprite ="GFX_lobby_cust_tab" + clicksound = generic_click_04 + } + instantTextBoxType = + { + name = "apperance_label" + position = { x = -248 y = -260 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "RD_APPEARANCE" + maxWidth = 150 + maxHeight = 24 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "coatofarms_label" + position = { x = -76 y = -260 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "RD_COAT_OF_ARMS" + maxWidth = 150 + maxHeight = 24 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "attributes_label" + position = { x = 96 y = -260 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "RD_ATTRIBUTES" + maxWidth = 150 + maxHeight = 24 + format = centre + fixedsize = yes + } + ################ + + guiButtonType = { + name ="shield" + quadTextureSprite = "GFX_shield_big" + position = { x= -64 y = -150 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name = "shield_highlight" + spriteType = "GFX_lobby_coa_party_per_pale" + position = { x= -63 y = -149 } + Orientation = "UPPER_LEFT" + } + + ################ + + guiButtonType = { + position = { x= -248 y = -210 } + name = "link_button_top" + quadTextureSprite ="GFX_lobby_cust_link_button" + pdx_tooltip = "RD_LINK_PATTERN" + clicksound = generic_click_04 + } + guiButtonType = { + position = { x= -248 y = 18 } + name = "link_button_bottom" + quadTextureSprite ="GFX_lobby_cust_link_button" + pdx_tooltip = "RD_LINK_COLOR" + clicksound = generic_click_04 + } + + ################ + + iconType = { + name = "template_bg" + spriteType = "GFX_lobby_cust_172" + position = { x= -86 y = -184 } + } + + guiButtonType = + { + name = "template_down" + position = { x = -113 y = -184 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "template_up" + position = { x = 85 y = -184 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "template_label" + position = { x = -81 y = -208 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_LAYOUT" + maxWidth = 160 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "template_numbers" + position = { x = -81 y = -179 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 160 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ################ + + iconType = { + name = "slot1_bg" + spriteType = "GFX_lobby_cust_60" + position = { x= -210 y = -136 } + } + + guiButtonType = + { + name = "slot1_down" + position = { x = -235 y = -136 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot1_up" + position = { x = -154 y = -136 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "slot1_label" + position = { x = -214 y = -154 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_SLOT_1" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot1_numbers" + position = { x = -214 y = -130 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ################ + iconType = { + name = "slot2_bg" + spriteType = "GFX_lobby_cust_60" + position = { x= 151 y = -136 } + } + + guiButtonType = + { + name = "slot2_down" + position = { x = 126 y = -136 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot2_up" + position = { x = 207 y = -136 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "slot2_label" + position = { x = 147 y = -154 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_SLOT_2" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot2_numbers" + position = { x = 147 y = -130 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ################ + iconType = { + name = "slot3_bg" + spriteType = "GFX_lobby_cust_60" + position = { x= -210 y = -62 } + } + + guiButtonType = + { + name = "slot3_down" + position = { x = -235 y = -62 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot3_up" + position = { x = -154 y = -62 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "slot3_label" + position = { x = -214 y = -80 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_SLOT_3" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot3_numbers" + position = { x = -214 y = -56 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ################ + iconType = { + name = "slot4_bg" + spriteType = "GFX_lobby_cust_60" + position = { x= 151 y = -62 } + } + + guiButtonType = + { + name = "slot4_down" + position = { x = 126 y = -62 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot4_up" + position = { x = 207 y = -62 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "slot4_label" + position = { x = 147 y = -80 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_SLOT_4" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot4_numbers" + position = { x = 147 y = -56 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ################ + instantTextBoxType = + { + name = "slot1_label_2" + position = { x = -241 y = 55 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_SLOT_1" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot2_label_2" + position = { x = -241 y = 93 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_SLOT_2" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot3_label_2" + position = { x = -241 y = 131 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_SLOT_3" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot4_label_2" + position = { x = -241 y = 169 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "RD_SLOT_4" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + + instantTextBoxType = + { + name = "color1_label" + position = { x = -148 y = 29 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "RD_COLOR_1" + maxWidth = 85 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "color2_label" + position = { x = -55 y = 29 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "RD_COLOR_2" + maxWidth = 85 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "color3_label" + position = { x = 38 y = 29 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "RD_COLOR_3" + maxWidth = 85 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "emblem_label" + position = { x = 153 y = 29 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "RD_EMBLEM" + maxWidth = 85 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ### + guiButtonType = + { + name = "slot1_color1_down" + position = { x = -153 y = 48 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot1_color1_up" + position = { x = -88 y = 48 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot1_color1_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= -128 y = 48 } + } + iconType = { + name = "slot1_color1_color" + spriteType = "GFX_lobby_cust_color" + position = { x= -124 y = 52 } + } + instantTextBoxType = + { + name = "slot1_color1_number_shadow" + position = { x = -139 y = 56 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot1_color1_number" + position = { x = -140 y = 55 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + guiButtonType = + { + name = "slot1_color2_down" + position = { x = -60 y = 48 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot1_color2_up" + position = { x = 5 y = 48 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot1_color2_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= -35 y = 48 } + } + iconType = { + name = "slot1_color2_color" + spriteType = "GFX_lobby_cust_color" + position = { x= -31 y = 52 } + } + instantTextBoxType = + { + name = "slot1_color2_number_shadow" + position = { x = -46 y = 56 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot1_color2_number" + position = { x = -47 y = 55 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + guiButtonType = + { + name = "slot1_color3_down" + position = { x = 33 y = 48 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot1_color3_up" + position = { x = 98 y = 48 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot1_color3_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= 58 y = 48 } + } + iconType = { + name = "slot1_color3_color" + spriteType = "GFX_lobby_cust_color" + position = { x= 62 y = 52 } + } + instantTextBoxType = + { + name = "slot1_color3_number_shadow" + position = { x = 47 y = 56 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot1_color3_number" + position = { x = 46 y = 55 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + + guiButtonType = + { + name = "slot1_emblem_down" + position = { x = 141 y = 48 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot1_emblem_up" + position = { x = 222 y = 48 } + quadTextureSprite ="GFX_buildview_next" + } + + iconType = { + name = "slot1_emblem_bg" + spriteType = "GFX_lobby_cust_60" + position = { x= 166 y = 48 } + } + instantTextBoxType = + { + name = "slot1_emblem_numbers" + position = { x = 163 y = 54 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ################ + guiButtonType = + { + name = "slot2_color1_down" + position = { x = -153 y = 86 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot2_color1_up" + position = { x = -88 y = 86 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot2_color1_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= -128 y = 86 } + } + iconType = { + name = "slot2_color1_color" + spriteType = "GFX_lobby_cust_color" + position = { x= -124 y = 90 } + } + instantTextBoxType = + { + name = "slot2_color1_number_shadow" + position = { x = -139 y = 94 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot2_color1_number" + position = { x = -140 y = 93 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + guiButtonType = + { + name = "slot2_color2_down" + position = { x = -60 y = 86 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot2_color2_up" + position = { x = 5 y = 86 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot2_color2_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= -35 y = 86 } + } + iconType = { + name = "slot2_color2_color" + spriteType = "GFX_lobby_cust_color" + position = { x= -31 y = 90 } + } + instantTextBoxType = + { + name = "slot2_color2_number_shadow" + position = { x = -46 y = 94 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot2_color2_number" + position = { x = -47 y = 93 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + guiButtonType = + { + name = "slot2_color3_down" + position = { x = 33 y = 86 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot2_color3_up" + position = { x = 98 y = 86 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot2_color3_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= 58 y = 86 } + } + iconType = { + name = "slot2_color3_color" + spriteType = "GFX_lobby_cust_color" + position = { x= 62 y = 90 } + } + instantTextBoxType = + { + name = "slot2_color3_number_shadow" + position = { x = 47 y = 94 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot2_color3_number" + position = { x = 46 y = 93 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + + guiButtonType = + { + name = "slot2_emblem_down" + position = { x = 141 y = 86 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot2_emblem_up" + position = { x = 222 y = 86 } + quadTextureSprite ="GFX_buildview_next" + } + + iconType = { + name = "slot2_emblem_bg" + spriteType = "GFX_lobby_cust_60" + position = { x= 166 y = 86 } + } + instantTextBoxType = + { + name = "slot2_emblem_numbers" + position = { x = 163 y = 92 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ################ + guiButtonType = + { + name = "slot3_color1_down" + position = { x = -153 y = 124 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot3_color1_up" + position = { x = -88 y = 124 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot3_color1_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= -128 y = 124 } + } + iconType = { + name = "slot3_color1_color" + spriteType = "GFX_lobby_cust_color" + position = { x= -124 y = 128 } + } + instantTextBoxType = + { + name = "slot3_color1_number_shadow" + position = { x = -139 y = 132 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot3_color1_number" + position = { x = -140 y = 131 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + guiButtonType = + { + name = "slot3_color2_down" + position = { x = -60 y = 124 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot3_color2_up" + position = { x = 5 y = 124 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot3_color2_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= -35 y = 124 } + } + iconType = { + name = "slot3_color2_color" + spriteType = "GFX_lobby_cust_color" + position = { x= -31 y = 128 } + } + instantTextBoxType = + { + name = "slot3_color2_number_shadow" + position = { x = -46 y = 132 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot3_color2_number" + position = { x = -47 y = 131 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + guiButtonType = + { + name = "slot3_color3_down" + position = { x = 33 y = 124 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot3_color3_up" + position = { x = 98 y = 124 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot3_color3_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= 58 y = 124 } + } + iconType = { + name = "slot3_color3_color" + spriteType = "GFX_lobby_cust_color" + position = { x= 62 y = 128 } + } + instantTextBoxType = + { + name = "slot3_color3_number_shadow" + position = { x = 47 y = 132 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot3_color3_number" + position = { x = 46 y = 131 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + + guiButtonType = + { + name = "slot3_emblem_down" + position = { x = 141 y = 124 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot3_emblem_up" + position = { x = 222 y = 124 } + quadTextureSprite ="GFX_buildview_next" + } + + iconType = { + name = "slot3_emblem_bg" + spriteType = "GFX_lobby_cust_60" + position = { x= 166 y = 124 } + } + instantTextBoxType = + { + name = "slot3_emblem_numbers" + position = { x = 163 y = 130 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + + ################ + guiButtonType = + { + name = "slot4_color1_down" + position = { x = -153 y = 162 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot4_color1_up" + position = { x = -88 y = 162 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot4_color1_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= -128 y = 162 } + } + iconType = { + name = "slot4_color1_color" + spriteType = "GFX_lobby_cust_color" + position = { x= -124 y = 166 } + } + instantTextBoxType = + { + name = "slot4_color1_number_shadow" + position = { x = -139 y = 170 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot4_color1_number" + position = { x = -140 y = 169 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + guiButtonType = + { + name = "slot4_color2_down" + position = { x = -60 y = 162 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot4_color2_up" + position = { x = 5 y = 162 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot4_color2_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= -35 y = 162 } + } + iconType = { + name = "slot4_color2_color" + spriteType = "GFX_lobby_cust_color" + position = { x= -31 y = 166 } + } + instantTextBoxType = + { + name = "slot4_color2_number_shadow" + position = { x = -46 y = 170 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot4_color2_number" + position = { x = -47 y = 169 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + guiButtonType = + { + name = "slot4_color3_down" + position = { x = 33 y = 162 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot4_color3_up" + position = { x = 98 y = 162 } + quadTextureSprite ="GFX_buildview_next" + } + iconType = { + name = "slot4_color3_bg" + spriteType = "GFX_lobby_cust_44" + position = { x= 58 y = 162 } + } + iconType = { + name = "slot4_color3_color" + spriteType = "GFX_lobby_cust_color" + position = { x= 62 y = 166 } + } + instantTextBoxType = + { + name = "slot4_color3_number_shadow" + position = { x = 47 y = 170 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "slot4_color3_number" + position = { x = 46 y = 169 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ### + + guiButtonType = + { + name = "slot4_emblem_down" + position = { x = 141 y = 162 } + quadTextureSprite ="GFX_buildview_prev" + } + guiButtonType = + { + name = "slot4_emblem_up" + position = { x = 222 y = 162 } + quadTextureSprite ="GFX_buildview_next" + } + + iconType = { + name = "slot4_emblem_bg" + spriteType = "GFX_lobby_cust_60" + position = { x= 166 y = 162 } + } + instantTextBoxType = + { + name = "slot4_emblem_numbers" + position = { x = 163 y = 168 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 65 + maxHeight = 20 + format = centre + fixedsize = yes + } + ############# + guiButtonType = + { + name = "cancel_button" + position = { x = -207 y = 217 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "RD_CANCEL" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + guiButtonType = + { + name = "next_button" + position = { x = 43 y = 217 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "RD_NEXT" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + } + + ### CUSTOMIZE WINDOW PORTRAITS + windowType = + { + name ="customize_window" + backGround="" + position = { x=0 y =0} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + Orientation = "CENTER" + + iconType = + { + name = "background" + spriteType = "GFX_lobby_cust_bg" + position = { x = -280 y = -290 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + position = { x = -256 y = -273 } + name = "apperance" + quadTextureSprite ="GFX_lobby_cust_tab" + clicksound = generic_click_04 + } + guiButtonType = { + position = { x = -84 y = -273 } + name = "coatofarms" + quadTextureSprite ="GFX_lobby_cust_tab" + clicksound = generic_click_04 + } + guiButtonType = { + position = { x = 88 y = -273 } + name = "attributes" + quadTextureSprite ="GFX_lobby_cust_tab" + clicksound = generic_click_04 + } + instantTextBoxType = + { + name = "apperance_label" + position = { x = -248 y = -260 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "RD_APPEARANCE" + maxWidth = 150 + maxHeight = 24 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "coatofarms_label" + position = { x = -76 y = -260 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "RD_COAT_OF_ARMS" + maxWidth = 150 + maxHeight = 24 + format = centre + fixedsize = yes + } + instantTextBoxType = + { + name = "attributes_label" + position = { x = 96 y = -260 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "RD_ATTRIBUTES" + maxWidth = 150 + maxHeight = 24 + format = centre + fixedsize = yes + } + #### + guiButtonType = + { + name ="player_portrait" + quadTextureSprite = "GFX_char_150" + position = { x= -75 y = -100 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="player_portrait_frame" + quadTextureSprite = "GFX_charframe_150" + position = { x= -87 y = -113 } + Orientation = "UPPER_LEFT" + } + instantTextBoxType = { + name = "selected_ruler" + position = { x = -84 y = 73 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 170 + maxHeight = 36 + format = centre + } + #### + instantTextBoxType = + { + name = "eyes_label" + position = { x = -233 y = -154 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_EYES" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_eyes_up" + position = { x = -128 y = -137 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "DNA_eyes_numbers" + position = { x = -233 y = -135 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_eyes_down" + position = { x = -249 y = -137 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "nose_label" + position = { x = -233 y = -114 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_NOSE" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_nose_up" + position = { x = -128 y = -97 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "DNA_nose_numbers" + position = { x = -235 y = -95 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_nose_down" + position = { x = -249 y = -97 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "mouth_label" + position = { x = -233 y = -74 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_MOUTH" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_mouth_up" + position = { x = -128 y = -57 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "DNA_mouth_numbers" + position = { x = -233 y = -55 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_mouth_down" + position = { x = -249 y = -57 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "chin_label" + position = { x = -233 y = -34 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_CHIN" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_chin_up" + position = { x = -128 y = -17 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "DNA_chin_numbers" + position = { x = -233 y = -15 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_chin_down" + position = { x = -249 y = -17 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "neck_label" + position = { x = -233 y = 6 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_NECK" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_neck_up" + position = { x = -128 y = 23 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "DNA_neck_numbers" + position = { x = -233 y = 25 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_neck_down" + position = { x = -249 y = 23 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "cheeks_label" + position = { x = -233 y = 46 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_CHEEKS" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_cheeks_up" + position = { x = -128 y = 63 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "DNA_cheeks_numbers" + position = { x = -233 y = 65 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_cheeks_down" + position = { x = -249 y = 63 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "ears_label" + position = { x = -233 y = 86 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_EARS" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_ears_up" + position = { x = -128 y = 103 } + quadTextureSprite ="GFX_buildview_next" + } + + instantTextBoxType = + { + name = "DNA_ears_numbers" + position = { x = -233 y = 105 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_ears_down" + position = { x = -249 y = 103 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "eyecolor_label" + position = { x = -233 y = 126 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_EYE_COLOR" + maxWidth = 108 + maxHeight = 160 + format = centre + } + guiButtonType = + { + name = "DNA_eyecolor_up" + position = { x = -128 y = 143 } + quadTextureSprite ="GFX_buildview_next" + } + guiButtonType = + { + name = "DNA_eyecolor_down" + position = { x = -249 y = 143 } + quadTextureSprite ="GFX_buildview_prev" + } + instantTextBoxType = + { + name = "DNA_eyecolor_numbers" + position = { x = -233 y = 145 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + + + ##### + instantTextBoxType = + { + name = "ethnicity_label" + position = { x = -105 y = -206 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_ETHNICITY" + maxWidth = 200 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_ethnicity_up" + position = { x = 102 y = -187 } + quadTextureSprite ="GFX_lobby_cust_change" + pdx_tooltip = "RD_CHANGE_GRAPHICAL_CULTURE" + clicksound = generic_click_04 + } + + instantTextBoxType = + { + name = "DNA_ethnicity_numbers" + position = { x = -105 y = -187 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 200 + maxHeight = 160 + format = centre + fixedsize = yes + } + + guiButtonType = + { + name = "DNA_gender" + position = { x = -58 y = 129 } + quadTextureSprite ="GFX_lobby_cust_gender" + clicksound = generic_click_04 + } + + ####### + instantTextBoxType = + { + name = "vis_label" + position = { x = 117 y = -17 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 4 y = 4} + text = "RD_VISUALIZE" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + ######## + instantTextBoxType = + { + name = "clothes_label" + position = { x = 117 y = 6 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_CLOTHES" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "Prop_clothes_up" + position = { x = 222 y = 23 } + quadTextureSprite ="GFX_buildview_next" + } + + guiButtonType = + { + name = "Prop_clothes_down" + position = { x = 101 y = 23 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "Prop_clothes_numbers" + position = { x = 117 y = 25 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + ###### + instantTextBoxType = + { + name = "headgear_label" + position = { x = 117 y = 46 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_HEADGEAR" + maxWidth = 108 + maxHeight = 160 + format = centre + } + guiButtonType = + { + name = "Prop_headgear_up" + position = { x = 222 y = 63 } + quadTextureSprite ="GFX_buildview_next" + } + + guiButtonType = + { + name = "Prop_headgear_down" + position = { x = 101 y = 63 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "Prop_headgear_numbers" + position = { x = 117 y = 65 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + ############# + + instantTextBoxType = + { + name = "age_label" + position = { x = 117 y = 86 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_AGE" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "Prop_age_up" + position = { x = 222 y = 103 } + quadTextureSprite ="GFX_buildview_next" + } + + guiButtonType = + { + name = "Prop_age_down" + position = { x = 101 y = 103 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "Prop_age_numbers" + position = { x = 117 y = 105 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + ######## + + instantTextBoxType = + { + name = "bg_label" + position = { x = 117 y = 126 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_BACKGROUND" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "Prop_background_up" + position = { x = 222 y = 143 } + quadTextureSprite ="GFX_buildview_next" + } + + guiButtonType = + { + name = "Prop_background_down" + position = { x = 101 y = 143 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "Prop_background_numbers" + position = { x = 117 y = 145 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + ######### + instantTextBoxType = + { + name = "hairstyle_label" + position = { x = 117 y = -154 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_HAIRSTYLE" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = + { + name = "DNA_hair_up" + position = { x = 222 y = -137 } + quadTextureSprite ="GFX_buildview_next" + } + guiButtonType = + { + name = "DNA_hair_down" + position = { x = 101 y = -137 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "DNA_hair_numbers" + position = { x = 117 y = -135 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + ####### + instantTextBoxType = + { + name = "haircolor_label" + position = { x = 117 y = -114 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_HAIR_COLOR" + maxWidth = 108 + maxHeight = 160 + format = centre + } + guiButtonType = + { + name = "DNA_haircolor_up" + position = { x = 222 y = -97 } + quadTextureSprite ="GFX_buildview_next" + } + guiButtonType = + { + name = "DNA_haircolor_down" + position = { x = 101 y = -97 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "DNA_haircolor_numbers" + position = { x = 117 y = -95 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + ######## + + instantTextBoxType = + { + name = "beard_label" + position = { x = 117 y = -74 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "RD_BEARD" + maxWidth = 108 + maxHeight = 160 + format = centre + } + guiButtonType = + { + name = "DNA_beard_up" + position = { x = 222 y = -57 } + quadTextureSprite ="GFX_buildview_next" + } + + guiButtonType = + { + name = "DNA_beard_down" + position = { x = 101 y = -57 } + quadTextureSprite ="GFX_buildview_prev" + } + + instantTextBoxType = + { + name = "DNA_beard_numbers" + position = { x = 117 y = -55 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + #### + + guiButtonType = { + name ="randomize" + quadTextureSprite = "GFX_lobby_cust_random" + position = { x = 15 y = 129 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "RD_RANDOMIZE" + clicksound = generic_click_04 + } + + guiButtonType = + { + name = "cancel_button" + position = { x = -207 y = 217 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "RD_CANCEL" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + guiButtonType = + { + name = "next_button" + position = { x = 43 y = 217 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "RD_NEXT" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + } + + ### TOP WINDOW + windowType = + { + name ="top_window" + backGround="" + position = { x=0 y =0} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + + iconType = { + name = "shattered_ornament" + spriteType = "GFX_alt_start_ornament" + position = { x= -298 y = 1 } + Orientation = "CENTER_UP" + } + guiButtonType = { + name = "alternate_start_shattered_button" + spriteType = "GFX_alt_shattered_start_button" + position = { x= -241 y = 2 } + Orientation = "CENTER_UP" + pdx_tooltip = "SHATTERED_WORLD_TOOLTIP" + pdx_tooltip_delayed = "SHATTERED_WORLD_TOOLTIP_DELAYED" + clicksound = click_shattered_world + } + iconType = { + name = "random_ornament" + spriteType = "GFX_alt_start_ornament" + position = { x= 99 y = 1 } + Orientation = "CENTER_UP" + } + guiButtonType = { + name = "alternate_start_random_button" + spriteType = "GFX_alt_random_start_button" + position = { x= 156 y = 2 } + Orientation = "CENTER_UP" + pdx_tooltip = "RANDOM_WORLD_TOOLTIP" + pdx_tooltip_delayed = "RANDOM_WORLD_TOOLTIP_DELAYED" + clicksound = click_random_world + } + iconType = + { + name ="frontend_banner1" + spriteType = "GFX_lobby_top_bg" + position = { x= -155 y = 0 } + Orientation = "CENTER_UP" + } + ### datewidget + windowType = + { + name ="datewidget" + backGround="" + position = { x=-190 y =16} + size = { x=200 y =200} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "CENTER_UP" + + + instantTextBoxType = { + name = "year" + position = { x = 258 y = 9 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 54 + maxHeight = 30 + format = centre + } + + + instantTextBoxType = { + name = "daymonth" + position = { x = 100 y = 9 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 4 y = 4} + text = "UI_MISSING_TEXT" + maxWidth = 108 + maxHeight = 160 + format = centre + } + + guiButtonType = { + name = "year_up1" + position = { x = 260 y = -4 } + quadTextureSprite ="GFX_lobby_year_up" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + clicksound = time_forward + + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "year_down1" + position = { x = 260 y = 35 } + quadTextureSprite ="GFX_lobby_year_down" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + clicksound = time_back + + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "year_up2" + position = { x = 280 y = -4 } + quadTextureSprite ="GFX_lobby_year_up" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + clicksound = time_forward + + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "year_down2" + position = { x = 280 y = 35 } + quadTextureSprite ="GFX_lobby_year_down" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + clicksound = time_back + + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "year_up3" + position = { x = 300 y = -4 } + quadTextureSprite ="GFX_lobby_year_up" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + clicksound = time_forward + + + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "year_down3" + position = { x = 300 y = 35 } + quadTextureSprite ="GFX_lobby_year_down" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + clicksound = time_back + + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "month_down" + position = { x = 65 y = 14 } + quadTextureSprite ="GFX_lobby_month_down" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + + clicksound = time_back + + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "day_down" + position = { x = 85 y = 14 } + quadTextureSprite ="GFX_lobby_day_down" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + + clicksound = time_back + + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "month_up" + position = { x = 235 y = 14 } + quadTextureSprite ="GFX_lobby_month_up" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + + clicksound = time_forward + + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "day_up" + position = { x = 215 y = 14 } + quadTextureSprite ="GFX_lobby_day_up" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + + clicksound = time_forward + + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = + { + name = "select_label_sh" + position = { x = 26 y = 79 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 4 y = 4} + text = "FE_SELECT_NATION" + maxWidth = 300 + maxHeight = 30 + format = centre + } + instantTextBoxType = + { + name = "select_label" + position = { x = 25 y = 78 } + textureFile = "" + font = "vic_22" + borderSize = {x = 4 y = 4} + text = "FE_SELECT_NATION" + maxWidth = 300 + maxHeight = 30 + format = centre + } + } + + guiButtonType = + { + position = { x= -127 y = 69 } + name = "mapmode_terrain" + quadTextureSprite ="GFX_mapmode_terrain" + Orientation = "CENTER_UP" + pdx_tooltip = "MAPMODE_TERRAIN" + pdx_tooltip_delayed = "MAPMODE_TERRAIN_DESC" + shortcut = "q" + } + + guiButtonType = + { + position = { x= -99 y = 69 } + name = "mapmode_realms" + quadTextureSprite ="GFX_mapmode_realms" + Orientation = "CENTER_UP" + pdx_tooltip = "MAPMODE_REALM" + pdx_tooltip_delayed = "MAPMODE_REALM_DESC" + shortcut = "w" + } + + guiButtonType = + { + position = { x= -71 y = 69 } + name = "mapmode_defacto_counties" + quadTextureSprite ="GFX_mapmode_counties" + Orientation = "CENTER_UP" + pdx_tooltip ="MAPMODE_DEFACTO_COUNTIES" + pdx_tooltip_delayed = "MAPMODE_DEFACTO_COUNTIES_DESC" + shortcut = "f" + } + + guiButtonType = + { + position = { x= -43 y = 69 } + name = "mapmode_defacto_duchies" + quadTextureSprite ="GFX_mapmode_duchies" + Orientation = "CENTER_UP" + pdx_tooltip ="MAPMODE_DEFACTO_DUCHIES" + pdx_tooltip_delayed = "MAPMODE_DEFACTO_DUCHIES_DESC" + shortcut = "i" + } + + guiButtonType = + { + position = { x= -15 y = 69 } + name = "mapmode_defacto_kingdoms" + quadTextureSprite ="GFX_mapmode_kingdoms" + Orientation = "CENTER_UP" + pdx_tooltip ="MAPMODE_DEFACTO_KINGDOMS" + pdx_tooltip_delayed = "MAPMODE_DEFACTO_KINGDOMS_DESC" + shortcut = "o" + } + + guiButtonType = + { + position = { x= 13 y = 69 } + name = "mapmode_religion" + quadTextureSprite ="GFX_mapmode_religion" + Orientation = "CENTER_UP" + pdx_tooltip ="MAPMODE_RELIGION" + pdx_tooltip_delayed = "MAPMODE_RELIGION_DESC" + shortcut = "r" + } + + guiButtonType = + { + position = { x= 41 y = 69 } + name = "mapmode_culture" + quadTextureSprite ="GFX_mapmode_culture" + Orientation = "CENTER_UP" + pdx_tooltip ="MAPMODE_CULTURE" + pdx_tooltip_delayed = "MAPMODE_CULTURE_DESC" + shortcut = "t" + } + + guiButtonType = + { + position = { x= 69 y = 69 } + name = "mapmode_governments" + quadTextureSprite ="GFX_mapmode_governments" + Orientation = "CENTER_UP" + pdx_tooltip ="MAPMODE_GOVERNMENTS" + pdx_tooltip_delayed = "MAPMODE_GOVERNMENTS_DESC" + shortcut = "h" + } + + ### show only for multiplayer. + iconType = + { + name ="players_mapmode_bg" + spriteType = "GFX_lobby_players_mapmode_bg" + position = { x= 97 y = 64 } + Orientation = "CENTER_UP" + } + guiButtonType = + { + position = { x= 97 y = 69 } + name = "mapmode_players" + quadTextureSprite ="GFX_mapmode_players" + Orientation = "CENTER_UP" + pdx_tooltip ="MAPMODE_PLAYERS" + pdx_tooltip_delayed = "MAPMODE_PLAYERS_DESC" + shortcut = "l" + } + } + + ### BOTTOM WINDOW + windowType = + { + name ="bottom_window" + backGround="" + position = { x=0 y =0} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=yes + + + iconType = + { + name ="chatpanel" + spriteType = "GFX_lobby_bottom_bg" + position = { x= 0 y = -185 } + Orientation = "LOWER_LEFT" + } + + windowType = { + name ="expansion_list_subwindow" + position = { x=22 y =-226 } + Orientation = "LOWER_LEFT" + + OverlappingElementsBoxType = { + name = "expansion_list" + size = { x=800 y=47 } + spacing = -8 + } + } + + editBoxType = + { + position = { x = 3 y = -38 } + name = "lobby_chat_edit" + textureFile = "gfx\\interface\\small_tiles_dialog.dds" + font = "Arial12" + borderSize = {x = 4 y = 4} + size = { x=686 y=32} + text = "" + orientation = "LOWER_LEFT" + cursor = { x=5 y=0 } + } + + listboxType = + { + name ="chatlog" + position = { x = 19 y = -167 } + backGround="" + size = { x= 646 y =112 } + Orientation = "LOWER_LEFT" + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + } + + instantTextBoxType = { + + name ="scenario_description" + position = { x = 15 y = -174 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "" + Orientation = "LOWER_LEFT" + + maxWidth = 652 + maxHeight = 125 + } + + checkboxType = { + name = "ironman_checkbox" + position = { x = -328 y = -107 } + quadTextureSprite ="GFX_ironman_button" + Orientation = "LOWER_RIGHT" + clicksound = menu_click + format = center + pdx_tooltip = "IRONMAN_MODE" + pdx_tooltip_delayed = "IRONMAN_MODE_DESC" + } + + guiButtonType = { + name = "random_character_button" + position = { x = -328 y = -57 } + quadTextureSprite ="GFX_random_char_button" + Orientation = "LOWER_RIGHT" + clicksound = menu_click + pdx_tooltip = "RANDOM_CHARACTER" + pdx_tooltip_delayed = "RANDOM_CHARACTER_DESC" + } + + guiButtonType = + { + name = "observe_button" + position = { x = -226 y = -125 } + quadTextureSprite ="GFX_big_button_220_thin" + buttonText = "OBSERVE" + buttonFont = "vic_18" + Orientation = "LOWER_RIGHT" + clicksound = menu_click + } + + guiButtonType = + { + name = "play_button" + position = { x = -226 y = -92 } + quadTextureSprite ="GFX_big_button_220" + buttonText = "PLAY" + buttonFont = "vic_22" + Orientation = "LOWER_RIGHT" + clicksound = play + } + + iconType = { + name = "ironman_icon" + spriteType = "GFX_ironman_icon" + position = { x = -210 y = -80 } + Orientation = "LOWER_RIGHT" + } + + windowType = { + name = "play_button_positioning_window" + position = { x = -211 y = -81 } + Orientation = "LOWER_RIGHT" + size = { x=70 y=32 } + + OverlappingElementsBoxType = { + name = "required_dlc_list" + size = { x=70 y=32 } + } + } + + guiButtonType = + { + name = "randomlog_button" + position = { x = -256 y = -222 } + quadTextureSprite ="GFX_big_button_220" + buttonText = "Print randomlog" + buttonFont = "vic_22" + Orientation = "LOWER_RIGHT" + clicksound = play + } + + guiButtonType = + { + name = "back_button" + position = { x = -226 y = -43 } + quadTextureSprite ="GFX_big_button_220_thin" + buttonText = "FE_BACK" + buttonFont = "vic_18" + Orientation = "LOWER_RIGHT" + clicksound = menu_click + } + } + + ############# + + } + } + + ################# + windowType = { + name = "lobby_recommended_dlc_entry" + size = { x=44 y=57 } + + guiButtonType = { + name = "dlc_button" + quadTextureSprite = "GFX_lobby_recommend_dlc" + clicksound = generic_click_04 + } + } + + ################# + windowType = { + name = "lobby_expansion_entry" + size = { x=47 y=47 } + + iconType = { + name ="recommendation_frame" + spriteType = "GFX_lobby_recommend_expansion" + } + + guiButtonType = { + name = "dlc_button" + quadTextureSprite = "GFX_dlc_icon_sword_of_islam" + position = { x=8 y=8 } + clicksound = generic_click_04 + } + } + + ################# + windowType = + { + name = "add_trait_window" + backGround="background" + position = { x=-300 y=-200 } + size = { x=140 y=50 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + guiButtonType = + { + name = "background" + position = { x = 100 y = 217 } + quadTextureSprite ="GFX_lobby_cust_select_bg" + } + + listboxType = + { + name ="traits" + position = { x=18 y =12} + backGround="" + size = { x=241 y =300} + Orientation = "UPPER_LEFT" + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + } + + ############# + + guiButtonType = + { + name = "cancel_button" + position = { x = 61 y = 318 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "CLOSE" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + } + + + #### ENTRY FOR SELECTING THINGS IN ATTRIBUTES TAB + windowType = + { + name = "RD_selector_member" + backGround="" + position = { x=0 y=0 } + size = { x=140 y=30 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = + { + name = "background" + position = { x = 10 y = 0 } + quadTextureSprite ="GFX_lobby_cust_select_button_standard" + clicksound = generic_click_04 + } + + iconType = + { + name ="trait_icon" + spriteType = "GFX_icon_martial" + position = { x= 15 y = 2 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = + { + name ="trait_name" + position = { x = 45 y = 6 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 150 + maxHeight = 20 + fixedsize = yes + allwaystransparent = yes + } + + iconType = + { + name ="trait_cost_bg" + spriteType = "GFX_lobby_cust_trait_cost_bg" + position = { x= 195 y = 2 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = + { + name ="trait_cost" + position = { x = 50 y = 6 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 180 + maxHeight = 20 + fixedsize = yes + format = right + allwaystransparent = yes + } + } + + windowType = + { + name = "RD_group_member" + backGround="" + position = { x=0 y=0 } + size = { x=140 y=30 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = + { + name = "background" + position = { x = 0 y = 0 } + quadTextureSprite ="GFX_lobby_cust_select_button_group" + } + + iconType = + { + name ="trait_icon" + spriteType = "GFX_icon_martial" + position = { x= 1 y = 2 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name ="trait_name" + position = { x = 35 y = 6 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 180 + maxHeight = 20 + fixedsize = yes + } + } + + ################## + + listboxType = + { + name ="testbox" + position = { x=0 y =0} + backGround="DefaultDialogBackground" + size = { x=150 y =200} + Orientation = "UPPER_LEFT" + spacing = 2 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 10 y = 10} + } + + windowType = { + name = "testmember" + backGround="" + position = { x=0 y=0 } + size = { x=140 y=50 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + textBoxType = { + name = "Title" + position = { x = 0 y = 0 } + textureFile = "" + font = "small" + borderSize = {x = 4 y = 4} + text = "" + maxWidth = 140 + maxHeight = 32 + } + } + + + + + + #entry for player in multiplayer list... + windowType = { + name = "multiplayer_entry_server" + backGround="" + position = { x=0 y=0 } + size = { x=150 y= 57 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + position = { x= -8 y = 0 } + name = "player_shield" + quadTextureSprite ="GFX_minishield" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + + instantTextBoxType = { + name = "name" + position = { x = 32 y =9 } + format = left + font = "vic_18_black" + maxWidth = 124 + maxHeight = 32 + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "button_kick" + quadTextureSprite = "GFX_button_kick" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=160 y =0} + pdx_tooltip = "KICK_PLAYER" + } + + guiButtonType = { + name = "button_ban" + quadTextureSprite = "GFX_button_ban" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=180 y =0} + } + + instantTextBoxType = { + name = "save_progress" + position = { x = 32 y =40 } + format = left + font = "small" + maxWidth = 256 + maxHeight = 32 + Orientation = "UPPER_LEFT" + } + + + + } + ### mulitplayer player entry + windowType = { + name = "multiplayer_entry" + backGround="" + position = { x=0 y=0 } + size = { x=150 y= 57 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + position = { x= -8 y = 0 } + name = "player_shield" + quadTextureSprite ="GFX_minishield" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + instantTextBoxType = { + name = "name" + position = { x = 32 y =9 } + format = left + font = "small" + maxWidth = 124 + maxHeight = 32 + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "save_progress" + position = { x = 32 y =40 } + format = left + font = "small" + maxWidth = 256 + maxHeight = 32 + Orientation = "UPPER_LEFT" + } + + } + + ### lobby chat text + windowType = { + name = "lobby_chat_text" + backGround="" + position = { x=0 y=0 } + size = { x=632 y= 18 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + instantTextBoxType = { + name = "messagelogtext" + position = { x = 0 y = 0 } + textureFile = "" + font = "vic_18" + borderSize = {x = 1 y = 1} + text = "" + maxWidth = 632 + maxHeight = 18 + + Orientation = "UPPER_LEFT" + } + + } + + ### BOOKMARK ENTRY + windowType = { + name = "bookmark_entry" + backGround="" + position = { x=0 y=0 } + size = { x=320 y= 42 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name = "bookmark" + quadTextureSprite = "GFX_selectdate_bookmark" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + position = { x=0 y =0} + } + + instantTextBoxType = { + name = "title" + position = { x = 40 y = 9 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 1 y = 1} + text = "FE_BOOKMARK_TITLE" + maxWidth = 200 + maxHeight = 18 + fixedsize = yes + alwaystransparent = yes + } + + instantTextBoxType = { + name = "date" + position = { x = 40 y = 23 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 1 y = 1} + text = "FE_BOOKMARK_DATE" + maxWidth = 200 + maxHeight = 18 + fixedsize = yes + alwaystransparent = yes + } + + guiButtonType = { + name = "required_dlc" + quadTextureSprite = "GFX_dlc_icon_sword_of_islam" + position = { x=207 y=10 } + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + } + + ### SAVE DIRECTORY ENTRY + windowType = { + name = "savedirectoryentry" + backGround="" + position = { x=0 y=0 } + size = { x=320 y= 42 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + checkboxType = + { + name = "save_game" + quadTextureSprite = "GFX_selectdate_folder" + position = { x=13 y =0} + } + iconType = + { + name ="save_folder_icon" + spriteType = "GFX_save_folder" + position = { x= 30 y = 7 } + Orientation = "UPPER_LEFT" + } + + #guiButtonType = + #{ + # name ="delete" + # position = { x = 215 y = 14 } + # quadTextureSprite = "GFX_save_delete" + # Orientation = "UPPER_LEFT" + #} + + instantTextBoxType = + { + name = "title" + position = { x = 55 y = 13 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 1 y = 1} + text = "" + maxWidth = 260 + maxHeight = 18 + fixedsize = yes + + Orientation = "UPPER_LEFT" + } + } + + ### SAVE GAME ENTRY + windowType = { + name = "savegameentry" + backGround="" + position = { x=0 y=0 } + size = { x=320 y= 42 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + checkboxType = { + name = "save_game" + quadTextureSprite = "GFX_list_button_save" + position = { x=13 y =0} + } + + guiButtonType = { + name ="shield" + position = { x = 19 y = 6 } + quadTextureSprite = "GFX_shield_small" + Orientation = "UPPER_LEFT" + } + +# iconType = { +# name ="savegame_to_old" +# spriteType = "GFX_combat_end_char_dead" +# position = { x= 190 y = 5 } +# Orientation = "UPPER_LEFT" +# } + + instantTextBoxType = { + name = "title" + position = { x = 53 y = 4 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 1 y = 1} + text = "" + maxWidth = 220 + maxHeight = 18 + fixedsize = yes + + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "date" + position = { x = 53 y = 21 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 1 y = 1} + text = "" + maxWidth = 240 + maxHeight = 18 + fixedsize = yes + + Orientation = "UPPER_LEFT" + } + + iconType = { + name = "cloud_file" + spriteType = "GFX_cloud_file" + position = { x = 248 y = 23 } + } + + iconType = { + name = "ironman_icon" + spriteType = "GFX_ironman_icon" + position = { x = 273 y = 18 } + } + + iconType = { + name = "shattered_icon" + spriteType = "GFX_shattered_save" + position = { x = 273 y = 3 } + pdx_tooltip = "SHATTERED_SAVE_TOOLTIP" + } + + iconType = { + name = "random_world_icon" + spriteType = "GFX_random_world_save" + position = { x = 273 y = 3 } + pdx_tooltip = "RANDOM_WORLD_SAVE_TOOLTIP" + } + + guiButtonType = + { + name ="delete" + position = { x = 296 y = 7 } + quadTextureSprite = "GFX_main_close_button_float" + Orientation = "UPPER_LEFT" + pdx_tooltip = "DELETE" + } + } + + ### Vassal list in country selection ### + + windowType = { + name = "character_list_entry" + backGround="" + position = { x=-5 y=0 } + size = { x=128 y= 57 } + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name ="portrait" + quadTextureSprite = "GFX_char_50" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + + guiButtonType = + { + name = "portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= -6 y = -7 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + position = { x= -10 y = 30 } + name = "shield" + quadTextureSprite ="GFX_shield_small" + } + + instantTextBoxType = { + name = "name" + position = { x = 60 y = 3 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 128 + maxHeight = 54 + fixedsize = yes + + Orientation = "UPPER_LEFT" + } + } + + ### republics list entry + windowType = { + name = "republics_list_entry" + backGround="" + position = { x=-5 y=0 } + size = { x=128 y= 61 } + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name ="portrait" + quadTextureSprite = "GFX_char_50" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + + guiButtonType = + { + name = "portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= -6 y = -7 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + position = { x= -10 y = 30 } + name = "shield" + quadTextureSprite ="GFX_shield_small" + } + + instantTextBoxType = { + name = "name" + position = { x = 60 y = 3 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 128 + maxHeight = 54 + fixedsize = yes + + Orientation = "UPPER_LEFT" + } + } + + ### Player entry + windowType = { + name = "player_list_entry" + backGround="" + position = { x=-5 y=0 } + size = { x=128 y= 57 } + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + position = { x= -10 y = 27 } + name = "shield" + quadTextureSprite ="GFX_shield_small" + } + + guiButtonType = { + name ="portrait" + quadTextureSprite = "GFX_char_50" + position = { x= 0 y = -3 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= -6 y = -10 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "character_name" + position = { x = 57 y = -3 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 135 + maxHeight = 18 + fixedsize = yes + + } + + instantTextBoxType = { + name = "player_name" + position = { x = 61 y = 14 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 135 + maxHeight = 18 + fixedsize = yes + + } + + guiButtonType = { + name = "button_kick" + quadTextureSprite = "GFX_button_kick" + position = { x=140 y =30} + pdx_tooltip = "KICK_PLAYER" + } + + guiButtonType = { + name = "button_ban" + quadTextureSprite = "GFX_button_ban" + position = { x=164 y =30} + } + + instantTextBoxType = { + name = "save_progress" + position = { x = 61 y =33 } + format = left + font = "Arial12_black" + text = "UI_MISSING_TEXT" + maxWidth = 50 + maxHeight = 20 + fixedsize = yes + Orientation = "UPPER_LEFT" + } + } + + ### local game entry + windowType = { + name = "local_game_entry" + backGround="" + position = { x=0 y=0 } + size = { x=128 y= 28 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + checkboxType = { + name = "game" + position = { x=4 y =0} + quadTextureSprite ="GFX_frontend_list_button" + buttonText = "UI_MISSING_TEXT" + buttonFont = "vic_18" + } + + } + + ## local game text + windowType = { + name = "local_game_text" + backGround="" + position = { x=0 y=0 } + size = { x=128 y= 18 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + instantTextBoxType = { + name = "text" + position = { x = 0 y = 0 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "FE_LOCAL_GAMES" + maxWidth = 720 + maxHeight = 18 + + Orientation = "UPPER_LEFT" + } + + } + + ### naming window + windowType = { + name = "naming_window" #used for both player and game name + backGround="Background" + position = { x=-250 y=-40 } + size = { x=500 y=300 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + guiButtonType = { + name = "Background" + quadTextureSprite ="GFX_dialog_tile_bg" + } + + instantTextBoxType = { + name = "Title" + position = { x = 0 y = 36 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 500 + maxHeight = 320 + format = centre + } + + editBoxType = { + position = { x = 100 y = 100 } + name = "edit" + textureFile = "gfx\\interface\\small_tiles_dialog.dds" + font = "Arial12" + borderSize = {x = 4 y = 4} + size = { x=300 y=32 } + text = "FE_MY_GAME" + orientation = "UPPER_LEFT" + cursor = { x=5 y=0 } + } + + guiButtonType = { + name = "ok_host_button" + position = { x=264 y =200} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "FE_CREATE_GAME" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + + guiButtonType = { + name = "back_button" + position = { x=90 y =200} + quadTextureSprite ="GFX_standard_button_148" + buttonText = "FE_CANCEL" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + + } + + windowType = { + name = "local_address_entry" + backGround="" + position = { x=0 y=0 } + size = { x=275 y= 28 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "UPPER_LEFT" + + guiButtonType = { + name = "text" + position = { x = 0 y = 0 } + quadTextureSprite ="GFX_frontend_list_button_large" + buttonText = "" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + } + + ### Favorite IP window + windowType = { + name = "favorite_ip" + backGround="" + position = { x=-266 y=-320 } + size = { x=532 y=264 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + iconType = { + name ="multiplayer_panel" + spriteType = "GFX_multiplayer_panel" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + listboxType = { + name ="adresses" + position = { x = 219 y = 22} + backGround="" + size = { x=275 y =146} + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "add_ip" + position = { x = 50 y = 50 } + quadTextureSprite ="GFX_standard_button_148" + buttonText = "ADD_IP" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "remove_ip" + position = { x = 50 y = 100 } + quadTextureSprite ="GFX_standard_button_148" + buttonText = "REMOVE_IP" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + } + + + ### shield + guiButtonType = { + name ="shield" + position = { x = 0 y = 0 } + quadTextureSprite = "GFX_shield_medium" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + Orientation = "UPPER_LEFT" + } + + positionType = { + name = "shield_offset" + position = { x = 70 y = 00 } + } + + + + guiButtonType = { + name ="war_shield" + position = { x = 0 y = 0 } + quadTextureSprite = "GFX_shield_small" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "small" + Orientation = "UPPER_LEFT" + } + + positionType = { + name = "warshield_position" + position = { x = -100 y = 341 } + } + + positionType = { + name = "alliesshield_position" + position = { x = -130 y = 488 } + } + + positionType = { + name = "warshield_offset" + position = { x = 28 y = 00 } + } + + ### connection log text + windowType = { + name = "connection_log_text" + backGround="" + position = { x=0 y=0 } + size = { x=200 y= 18 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + instantTextBoxType = { + name = "text" + position = { x = -50 y = 0 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 375 + maxHeight = 18 + fixedsize = yes + Orientation = "UPPER_LEFT" + } + + } + + + ### story entry + windowType = { + name = "story_entry" + backGround="" + position = { x=0 y=0 } + size = { x=360 y= 64 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + + guiButtonType = { + name = "button" + position = { x = 0 y = 0 } + quadTextureSprite ="GFX_standard_button_148" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "" + buttonFont = "vic_18" + } + + + + + instantTextBoxType = { + name = "title" + position = { x = 65 y = 1 } + format = right + textureFile = "" + font = "vic_22" + borderSize = {x = 4 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 200 + maxHeight = 24 + Orientation = "UPPER_LEFT" + } + instantTextBoxType = { + name = "desc" + position = { x = 65 y = 17 } + format = right + textureFile = "" + font = "vic_22" + borderSize = {x = 4 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 200 + maxHeight = 32 + Orientation = "UPPER_LEFT" + } + } + + ### DLC ICON ENTRY + windowType = { + name = "dlc_icon_entry" + backGround="" + position = { x=0 y=0 } + size = { x=36 y= 36 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + iconType = + { + name ="dlc_icon" + spriteType = "GFX_dlc_icon_sword_of_islam" + position = { x= 0 y =0 } + } + + } + + ### Ironman / Saveselect window + windowType = { + name = "IronmanSaveSelectDialog" + backGround="" + position = { x=-225 y =-230 } + size = { x=440 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + Orientation = "CENTER" + + iconType = { + name ="menu" + spriteType = "GFX_file_selection_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "back" + position = { x = 387 y = 24 } + quadTextureSprite ="GFX_main_back_button" + } + + guiButtonType = { + name = "local_tab" + position = { x = 49 y = -26 } + quadTextureSprite ="GFX_settings_tab_new" + } + + instantTextBoxType={ + position = {x = 48 y = -16 } + name = "local_tab_label" + borderSize = {x = 0 y = 0} + maxWidth = 64 + maxHeight = 18 + text = "FE_LOCAL" + font = "vic_18" + format = centre + fixedsize = yes + } + + guiButtonType = { + name = "remote_tab" + position = { x = 5000 y = -5000 } + quadTextureSprite ="GFX_settings_tab_new" + } + + instantTextBoxType={ + position = {x = 5000 y = -5000 } + name = "remote_tab_label" + borderSize = {x = 0 y = 0} + maxWidth = 0 + maxHeight = 0 + text = "FE_REMOTE" + font = "vic_18" + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "saves_dirs" + position = { x = 70 y = 25 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 4} + text = "" + maxWidth = 300 + maxHeight = 16 + format = left + fixedsize = yes + } + + listboxType = { + name ="games" + position = { x=52 y =52} + backGround="" + size = { x=340 y =294} + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + Orientation = "UPPER_LEFT" + } + + instantTextBoxType= { + position = {x = 126 y = 353 } + name = "filename_label" + font = "vic_18" + borderSize = {x = 8 y = 0} + maxWidth = 188 + maxHeight = 18 + text = "MENU_BAR_SAVE_GAME_FILENAME" + orientation = "UPPER_LEFT" + format = centre + } + + editBoxType = { + position = { x = 127 y = 365 } + name = "game_name" + textureFile = "gfx/interface/small_tiles_dialog.dds" + font = "vic_18" + borderSize = { x = 4 y = 4 } + size = { x=198 y=42 } + text = "" + orientation = "UPPER_LEFT" + cursor = { x = 4 y = 5 } + } + + guiButtonType = { + name = "cancel" + position = { x = 95 y = 437 } + quadTextureSprite ="GFX_standard_button_112" + buttonText = "SM_BACK" + buttonFont = "vic_18" + } + guiButtonType = { + name = "start" + position = { x = 249 y = 437 } + quadTextureSprite ="GFX_standard_button_112" + buttonText = "IRONMAN_START" + buttonFont = "vic_18" + } + } + + ### HOST WINDOW + windowType = { + name = "host_window" + backGround="" + position = { x=-250 y=-200 } + size = { x=500 y=380 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + iconType = + { + name ="hosting_bg" + spriteType = "GFX_hosting_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Title" + position = { x = 107 y = 13 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "MATCHMAKING_SERVER_HOST_TITLE" + maxWidth = 300 + maxHeight = 20 + format = centre + fixedsize = yes + } + + # Put these editboxes in reverse order here so tab jumps in the "correct" way + # Did not fix in code since it was "to" legacy and there already seemed to exist workarounds like this that would break if fixed + instantTextBoxType = { + name = "desc_title" + position = { x = 104 y = 236 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "MATCHMAKING_SERVER_DESC" + maxWidth = 400 + maxHeight = 320 + } + + editBoxType = { + position = { x = 104 y = 258 } + name = "desc" + font = "Arial12" + borderSize = {x = 0 y = 4} + size = { x=300 y=24 } + text = "" + orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "tags_title" + position = { x = 104 y = 179 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "MATCHMAKING_SERVER_HOST_TAGS" + maxWidth = 400 + maxHeight = 320 + } + + editBoxType = { + position = { x = 104 y = 201 } + name = "tags" + font = "Arial12" + borderSize = {x = 0 y = 4} + size = { x=300 y=24 } + text = "" + orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "password_title" + position = { x = 104 y = 122 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "MATCHMAKING_SERVER_PASSWORD" + maxWidth = 400 + maxHeight = 320 + } + + editBoxType = { + position = { x = 104 y = 144 } + name = "password" + font = "Arial12" + borderSize = {x = 0 y = 4} + size = { x=300 y=24 } + text = "" + orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "edit_title" + position = { x = 104 y = 65 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "MATCHMAKING_SERVER_NAME" + maxWidth = 400 + maxHeight = 320 + } + + editBoxType = { + position = { x = 104 y = 87 } + name = "edit" + font = "Arial12" + borderSize = {x = 0 y = 4} + size = { x=300 y=24 } + text = "FE_MY_GAME" + orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "back_button" + position = { x=116 y=323} + quadTextureSprite ="GFX_standard_button_112" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "FE_CANCEL" + buttonFont = "vic_18" + } + guiButtonType = { + name = "ok_host_button" + position = { x=286 y=323} + quadTextureSprite ="GFX_standard_button_112" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "HOST_BUTTON" + buttonFont = "vic_18" + } + + } + + ### CONNECT WINDOW + windowType = { + name = "connect_window" + backGround="" + position = { x=-250 y=-200 } + size = { x=500 y=280 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + iconType = + { + name ="connecting_bg" + spriteType = "GFX_connecting_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Title" + position = { x = 107 y = 13 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "MATCHMAKING_SERVER_CONNECT_TITLE" + maxWidth = 300 + maxHeight = 20 + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "password_title" + position = { x = 104 y = 122 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "MATCHMAKING_SERVER_PASSWORD" + maxWidth = 400 + maxHeight = 320 + } + + editBoxType = { + position = { x = 104 y = 144 } + name = "password" + font = "Arial12" + borderSize = {x = 0 y = 4} + size = { x=300 y=24 } + text = "" + + orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "edit_title" + position = { x = 104 y = 65 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "MATCHMAKING_SERVER_CONNECT_ADDRESS" + maxWidth = 400 + maxHeight = 320 + } + + editBoxType = { + position = { x = 104 y = 87 } + name = "edit" + font = "Arial12" + borderSize = {x = 0 y = 4} + size = { x=300 y=24 } + text = "" + orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "info_text" + position = { x = 104 y = 176 } + textureFile = "" + font = "vic_18" + borderSize = {x = 4 y = 4} + text = "" + maxWidth = 500 + maxHeight = 320 + } + + guiButtonType = { + name = "ok_join_button" + position = { x=286 y=209} + quadTextureSprite ="GFX_standard_button_112" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "JOIN_BUTTON" + buttonFont = "vic_18" + } + + guiButtonType = { + name = "back_button" + position = { x=116 y=209} + quadTextureSprite ="GFX_standard_button_112" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "FE_CANCEL" + buttonFont = "vic_18" + } + } + + windowType = { + name = "welcome_screen" + backGround="" + position = { x=-364 y=-250 } + size = { x=728 y=612 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + iconType = { + name = "welcome_screen_bg" + spriteType = "GFX_welcome_screen_bg" + position = { x = 0 y = 0 } + } + + instantTextBoxType = { + name = "header" + position = { x = 201 y = 62 } + font = "vic_36" + text = "WELCOME_HEADER" + maxWidth = 600 + maxHeight = 30 + } + + instantTextBoxType = { + name = "text" + position = { x = 105 y = 300 } + font = "vic_22" + text = "WELCOME_TEXT" + maxWidth = 528 + maxHeight = 150 + } + + instantTextBoxType = { + name = "first_play_recommend" + position = { x = 105 y = 390 } + font = "vic_22" + text = "WELCOME_FIRST_PLAY_RECOMMEND" + maxWidth = 528 + maxHeight = 100 + } + + guiButtonType = { + name = "learning_scenario_button" + position = { x=245 y=500} + quadTextureSprite ="GFX_big_button_220" + buttonText = "WELCOME_PLAY_LEARNING_SCENARIO" + buttonFont = "vic_22" + } + + guiButtonType = { + name = "normal_game_button" + position = { x=470 y=500} + quadTextureSprite ="GFX_big_button_220" + buttonText = "WELCOME_PLAY_NORMAL_GAME" + buttonFont = "vic_22" + } + + guiButtonType = { + name = "dont_show_again_button" + position = { x=50 y=519} + quadTextureSprite ="GFX_checkbox_default" + } + + instantTextBoxType = { + name = "dont_show_again_text" + position = { x = 78 y = 524 } + font = "vic_18" + text = "DONT_SHOW_AGAIN" + maxWidth = 480 + maxHeight = 20 + } + } +} diff --git a/resource/interface/menubar.gui b/resource/interface/menubar.gui new file mode 100644 index 0000000..72f25f1 --- /dev/null +++ b/resource/interface/menubar.gui @@ -0,0 +1,1238 @@ +guiTypes = { + eu3dialogtype = + { + name = "CharacterInteractionWindow" + background = "" + position = { x=0 y=0 } + size = { x=100 y=100 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "UPPER_LEFT" + + guiButtonType = + { + name ="GotoChar" + quadTextureSprite = "GFX_charaction_main_character_big" + position = { x = 0 y = 0 } + } + + guiButtonType = + { + name ="GotoLocation" + quadTextureSprite = "GFX_charaction_sub_empty_big" + position = { x = 0 y = 0 } + } + + guiButtonType = + { + name ="Messages" + quadTextureSprite = "GFX_charaction_sub_empty_big" + position = { x = 0 y = 0 } + } + + guiButtonType = + { + name ="GotoDiplomacy" + quadTextureSprite = "GFX_charaction_main_diplomacy_big" + position = { x = 0 y = 0 } + } + + guiButtonType = + { + name ="GotoDiplomacySub1" + quadTextureSprite = "GFX_charaction_sub_empty_big" + position = { x = 0 y = 0 } + } + + guiButtonType = + { + name ="GotoDiplomacySub2" + quadTextureSprite = "GFX_charaction_sub_empty_big" + position = { x = 0 y = 0 } + } + + guiButtonType = + { + name ="GotoDiplomacySub3" + quadTextureSprite = "GFX_charaction_sub_empty_big" + position = { x = 0 y = 0 } + } + + guiButtonType = + { + name ="GotoDiplomacySub4" + quadTextureSprite = "GFX_charaction_sub_empty_big" + position = { x = 0 y = 0 } + } + + guiButtonType = + { + name ="GotoDiplomacySub5" + quadTextureSprite = "GFX_charaction_sub_empty_big" + position = { x = 0 y = 0 } + } + + guiButtonType = + { + name ="GotoCharRel" + quadTextureSprite = "GFX_charaction_sub_empty_big" + position = { x = 0 y = 0 } + } + } + + positionType = { + name = "CharacterInteractionWindow_P34_I0" + position = { x = -42 y = 20 } + } + positionType = { + name = "CharacterInteractionWindow_P34_I1" + position = { x = -25 y = 38 } + } + positionType = { + name = "CharacterInteractionWindow_P34_I2" + position = { x = 0 y = 42 } + } + positionType = { + name = "CharacterInteractionWindow_P34_I3" + position = { x = 25 y = 38 } + } + positionType = { + name = "CharacterInteractionWindow_P34_I4" + position = { x = 42 y = 20 } + } + + positionType = { + name = "CharacterInteractionWindow_P50_I0" + position = { x = -42 y = 20 } + } + positionType = { + name = "CharacterInteractionWindow_P50_I1" + position = { x = -25 y = 38 } + } + positionType = { + name = "CharacterInteractionWindow_P50_I2" + position = { x = 0 y = 42 } + } + positionType = { + name = "CharacterInteractionWindow_P50_I3" + position = { x = 25 y = 38 } + } + positionType = { + name = "CharacterInteractionWindow_P50_I4" + position = { x = 42 y = 20 } + } + + positionType = { + name = "CharacterInteractionWindow_P75_I0" + position = { x = -46 y = 37 } + } + positionType = { + name = "CharacterInteractionWindow_P75_I1" + position = { x = -24 y = 52 } + } + positionType = { + name = "CharacterInteractionWindow_P75_I2" + position = { x = 0 y = 56 } + } + positionType = { + name = "CharacterInteractionWindow_P75_I3" + position = { x = 24 y = 52 } + } + positionType = { + name = "CharacterInteractionWindow_P75_I4" + position = { x = 46 y = 37 } + } + + positionType = { + name = "CharacterInteractionWindow_P100_I0" + position = { x = -56 y = 67 } + } + positionType = { + name = "CharacterInteractionWindow_P100_I1" + position = { x = -35 y = 77 } + } + positionType = { + name = "CharacterInteractionWindow_P100_I2" + position = { x = 0 y = 82 } + } + positionType = { + name = "CharacterInteractionWindow_P100_I3" + position = { x = 35 y = 77 } + } + positionType = { + name = "CharacterInteractionWindow_P100_I4" + position = { x = 56 y = 67 } + } + + positionType = { + name = "CharacterInteractionWindow_P150_I0" + position = { x = -56 y = 77 } + } + positionType = { + name = "CharacterInteractionWindow_P150_I1" + position = { x = -30 y = 87 } + } + positionType = { + name = "CharacterInteractionWindow_P150_I2" + position = { x = 0 y = 92 } + } + positionType = { + name = "CharacterInteractionWindow_P150_I3" + position = { x = 30 y = 87 } + } + positionType = { + name = "CharacterInteractionWindow_P150_I4" + position = { x = 56 y = 77 } + } + + windowType = + { + name = "ButtonMenuWindow" + backGround="" + position = { x= 0 y = 0 } + size = { x=0 y = 0 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name ="ButtonMenuButton" + quadTextureSprite = "GFX_charaction_main_character_big" + position = { x = 0 y = 0 } + } + + ### MESSAGEWINDOW + eu3dialogtype = + { + name = "MessageWindow" + background = "" + position = { x=-332 y=65 } + size = { x=332 y=185 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "UPPER_RIGHT" + + iconType = + { + name ="Background" + spriteType = "GFX_mw_bg" + position = { x=40 y=-1 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="Background_Flash" + spriteType = "GFX_mw_bg_flash" + position = { x = 65 y = 38 } + Orientation = "UPPER_LEFT" + } + + ### portraits + iconType = + { + name = "SecondChar_bg" + spriteType = "GFX_mw_portrait_bg" + position = { x = 41 y = 70 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name ="FirstChar_portrait" + quadTextureSprite = "GFX_char_50" + position = { x = 50 y = 18 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "FirstChar_portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 44 y = 11 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name = "FirstChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_50" + position = { x = 86 y = 19 } + Orientation = "UPPER_LEFT" + } + guiButtonType = + { + name = "FirstChar_portrait_status" + spriteType = "GFX_overlay_char_status_50" + position = { x = 43 y = 19 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name ="SecondChar_portrait" + quadTextureSprite = "GFX_char_50" + position = { x = 50 y = 84 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = + { + name = "SecondChar_portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 44 y = 77 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name = "SecondChar_portrait_relation" + spriteType = "GFX_overlay_char_relation_50" + position = { x = 86 y = 85 } + Orientation = "UPPER_LEFT" + } + guiButtonType = + { + name = "SecondChar_portrait_status" + spriteType = "GFX_overlay_char_status_50" + position = { x = 43 y = 85 } + Orientation = "UPPER_LEFT" + } + + ### + instantTextBoxType = + { + name = "Date" + position = { x = 110 y = 17 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 105 + maxHeight = 20 + format = left + fixedsize = yes + } + + instantTextBoxType = + { + name = "Text" + position = { x = 114 y = 44 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 180 + maxHeight = 100 + format = centre + fixedsize = yes + } + + iconType = + { + name = "mw_button_bg" + spriteType = "GFX_mw_button_bg" + position = { x = 204 y = 6 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name = "Next" + position = { x=271 y=12 } + quadTextureSprite ="GFX_mw_discard" + clicksound = click_03 + } + + guiButtonType = + { + name = "OpenList" + position = { x=244 y=12 } + quadTextureSprite ="GFX_mw_openlist" + clicksound = click_03 + } + + guiButtonType = + { + name = "Action" + position = { x=217 y=12 } + quadTextureSprite ="GFX_mw_goto" + clicksound = click_03 + } + + ### remove + guiButtonType = + { + name = "Close" + position = { x = 9275 y = 8 } + quadTextureSprite = "GFX_toggleopen_icons" + } + ### + + windowType = { + name = "Tabs" + backGround="" + position = { x= 1 y = 0 } + size = { x=512 y = 512 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "UPPER_LEFT" + + iconType = { + name = "tab_bg" + spriteType = "GFX_mw_tab_bg" + position = { x = 299 y = 0 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name = "HighPriorityTab" + position = { x = 301 y = 5 } + quadTextureSprite ="GFX_mw_tab_1" + clicksound = generic_click_04 + } + iconType = + { + name ="HighPriorityTabFlash" + spriteType = "GFX_mw_tab_flash" + position = { x=307 y=11 } + } + iconType = + { + name = "HighPriorityTabIcon" + spriteType = "GFX_high_prio_message_icon" + position = { x = 307 y = 22 } + } + instantTextBoxType = + { + name = "HighPriorityTabAmmount" + position = { x = 304 y = 41 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 25 + maxHeight = 20 + format = centre + } + + guiButtonType = + { + name = "LowPriorityTab" + position = { x = 301 y = 76 } + quadTextureSprite ="GFX_mw_tab_1" + clicksound = generic_click_04 + } + iconType = + { + name ="LowPriorityTabFlash" + spriteType = "GFX_mw_tab_flash" + position = { x=307 y=82 } + Orientation = "UPPER_LEFT" + } + iconType = { + name = "LowPriorityTabIcon" + spriteType = "GFX_low_prio_message_icon" + position = { x = 307 y = 93 } + } + instantTextBoxType = + { + name = "LowPriorityTabAmmount" + position = { x = 304 y = 112 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 25 + maxHeight = 20 + format = centre + } + + } + + ### list + windowType = + { + name = "List" + backGround="" + position = { x= -270 y = 0 } + size = { x=260 y = 120 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "UPPER_LEFT" + click_to_front = yes + + iconType = + { + name ="Background" + spriteType = "GFX_mw_list_bg" + position = { x=0 y=0 } + Orientation = "UPPER_LEFT" + } + instantTextBoxType={ + position = { x=12 y=13 } + name = "label" + font = "vic_18" + borderSize = {x = 0 y = 0} + maxWidth = 260 + maxHeight = 20 + text = "MW_LIST_LABEL" + orientation = "UPPER_LEFT" + format = centre + fixedsize = yes + } + + guiButtonType = + { + name = "Close" + position = { x = 282 y = 8 } + quadTextureSprite = "GFX_main_close_button" + clicksound = click_03 + } + + listboxType = + { + name ="messages" + position = { x=27 y =43} + backGround="" + size = { x=258 y =242} + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + Orientation = "UPPER_LEFT" + } + } + } + #### + + positionType = { + name = "interface_messagewindow_in_move" + position = { x = 275 y = 0 } #238 + } + + ### list entry + windowType = + { + name = "MessageListWindow_entry" + backGround="" + position = { x=0 y=0 } + size = { x=128 y= 22 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name = "message" + position = { x=0 y=0 } + quadTextureSprite ="GFX_messagewindow_listed_bg" + clicksound = generic_click_04 + } + + instantTextBoxType={ + position = { x=12 y=3 } + name = "text" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + maxWidth = 236 + maxHeight = 20 + text = "" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + } + + ### menu + windowType = { + name = "menu" + backGround="" + position = { x= -256 y = -225 } + size = { x=512 y = 512 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + iconType = + { + name ="menu" + spriteType = "GFX_menu" + position = { x= 89 y = 11 } + Orientation = "UPPER_LEFT" + } + + windowType = { + name ="menu_panel" + backGround="" + position = { x=46 y =24} + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = ledger + downsound = "" + fullscreen=no + + guiButtonType = { + name = "menu_save_quicksave" + position = { x = 128 y = 90 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_BAR_QUICK_SAVE" + buttonFont = "vic_18" + clicksound = generic_click_04 + pdx_tooltip = "MENU_BAR_QUICK_SAVE_DEL" + } + + guiButtonType = { + name = "menu_save_button" + position = { x = 128 y = 125 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_BAR_SAVE_GAME" + buttonFont = "vic_18" + clicksound = generic_click_04 + pdx_tooltip = "MENU_BAR_SAVE_GAME_DEL" + } + + guiButtonType = { + name = "menu_options_button" + position = { x = 128 y = 160} + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_BAR_GAME_OPTIONS" + buttonFont = "vic_18" + clicksound = generic_click_04 + pdx_tooltip = "MENU_BAR_GAME_OPTIONS_DEL" + } + + guiButtonType = { + name = "menu_message_button" + position = { x = 128 y = 195} + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_BAR_MESSAGE_SETTINGS" + buttonFont = "vic_18" + clicksound = generic_click_04 + pdx_tooltip = "MENU_BAR_MESSAGE_SETTINGS_DEL" + } + + guiButtonType = { + name = "menu_resign_button" + position = { x = 128 y = 230} + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_BAR_GAME_RESIGN" + buttonFont = "vic_18" + clicksound = quit + pdx_tooltip = "MENU_BAR_RESIGN_DEL" + } + + guiButtonType = { + name = "menu_quit_button" + position = { x = 128 y = 265 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_BAR_QUIT" + buttonFont = "vic_18" + clicksound = quit + pdx_tooltip = "MENU_BAR_EXIT_DEL" + } + + guiButtonType = { + name = "menu_save_and_exit_button" + position = { x = 128 y = 300 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_BAR_SAVE_AND_EXIT" + buttonFont = "vic_18" + clicksound = quit + pdx_tooltip = "MENU_BAR_SAVE_AND_EXIT_DEL" + } + + guiButtonType = { + name = "menu_convert_button" + position = { x = 128 y = 335 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_BAR_GAME_CONVERT" + buttonFont = "vic_18" + clicksound = generic_click_04 + pdx_tooltip = "MENU_BAR_GAME_CONVERT_DEL" + } + + ### banner_extension + windowType = { + name = "banner_extension" + position = { x=43 y=418 } + size = { x=324 y=136 } + + iconType = { + name = "background" + spriteType = "GFX_in_game_settings_banner_background" + } + + guiButtonType = { + name = "banner_dlc" + quadTextureSprite = "GFX_banner_small_dlc007" + size = { x = 26 y = 26 } + position = { x=-124 y=-40 } + Orientation = "CENTER" + pdx_tooltip = "DLC_TOOLTIP" + pdx_tooltip_delayed = "DLC_TOOLTIP_DELAYED" + clicksound = generic_click_04 + } + + iconType = { + name = "banner_dlc_icon" + spriteType = "GFX_dlc_icon_sword_of_islam" + position = { x=100 y=15 } + Orientation = "CENTER" + alwaystransparent = yes + } + } + + guiButtonType = { + name = "menu_close_button" + position = { x = 155 y = 400 } + quadTextureSprite ="GFX_standard_button_112" + buttonText = "MENU_BAR_CLOSE" + buttonFont = "vic_18" +# shortcut = "ESCAPE" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "menu_privacy_button" + position = { x = 277 y = 392 } + quadTextureSprite ="GFX_PrivacyPolicyButton" + clicksound = generic_click_04 + pdx_tooltip = "MENU_BAR_PRIVACY_DEL" + } + + instantTextBoxType = { + name = "version_text" + position = { x = 50 y = 432 } + maxWidth = 320 + maxHeight = 18 + font = "vic_18" + format = centre + } + } + + ## menu save + windowType = { + name ="menu_save" + backGround="" + position = { x=0 y =0 } + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + + iconType = { + name ="menu" + spriteType = "GFX_file_selection_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "back" + position = { x = 387 y = 24 } + quadTextureSprite ="GFX_main_back_button" + } + + guiButtonType = { + name = "local_tab" + position = { x = 49 y = -26 } + quadTextureSprite ="GFX_settings_tab_new" + } + + instantTextBoxType={ + position = {x = 48 y = -16 } + name = "local_tab_label" + borderSize = {x = 0 y = 0} + maxWidth = 64 + maxHeight = 18 + text = "FE_LOCAL" + font = "vic_18" + format = centre + fixedsize = yes + } + + guiButtonType = { + name = "remote_tab" + position = { x = 5000 y = -5000 } + quadTextureSprite ="GFX_settings_tab_new" + } + + instantTextBoxType={ + position = {x = 5000 y = -5000 } + name = "remote_tab_label" + borderSize = {x = 0 y = 0} + maxWidth = 0 + maxHeight = 0 + text = "FE_REMOTE" + font = "vic_18" + format = centre + fixedsize = yes + } + + instantTextBoxType = { + name = "saves_dirs" + position = { x = 70 y = 25 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 4} + text = "" + maxWidth = 300 + maxHeight = 16 + format = left + fixedsize = yes + } + + listboxType = { + name ="games" + position = { x=52 y =52} + backGround="" + size = { x=340 y =294} + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + Orientation = "UPPER_LEFT" + } + + + + instantTextBoxType= { + position = {x = 126 y = 353 } + name = "filename_label" + font = "vic_18" + borderSize = {x = 8 y = 0} + maxWidth = 188 + maxHeight = 18 + text = "MENU_BAR_SAVE_GAME_FILENAME" + orientation = "UPPER_LEFT" + format = centre + } + + editBoxType = { + position = { x = 65 y = 365 } + name = "game_name" + textureFile = "gfx/interface/small_tiles_dialog.dds" + font = "vic_18" + borderSize = { x = 4 y = 4 } + size = { x=298 y=42 } + text = "" + orientation = "UPPER_LEFT" + cursor = { x = 5 y = 5 } + } + + checkboxType = { + name = "checkbox_compressed" + position = { x = 362 y = 375 } + quadTextureSprite = "GFX_checkbox_default" + buttonText = "" + buttonFont = "vic_18" + pdx_tooltip = "CHECKBOX_COMPRESSED_SAVEGAMES" + orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "cancel" + position = { x = 95 y = 442 } + quadTextureSprite ="GFX_standard_button_112" + buttonText = "SM_BACK" + buttonFont = "vic_18" + } + guiButtonType = { + name = "save" + position = { x = 249 y = 442 } + quadTextureSprite ="GFX_standard_button_112" + buttonText = "MENU_BAR_SAVE" + buttonFont = "vic_18" + shortcut = "ENTER" + } + + } + + ## MESSAGE SETTINGS WINDOW + windowType = { + name ="menu_message_settings" + backGround="" + position = { x=0 y =0 } + size = { x=420 y =500} + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + upsound = "" + downsound = "" + fullscreen=no + + iconType = + { + name ="messagesettings_bg" + spriteType = "GFX_messagesettings_bg" + position = { x= -102 y = 72 } + Orientation = "UPPER_LEFT" + } + + + + + instantTextBoxType={ + position = {x = 135 y = 106 } + name = "messagesettings_label" + font = "vic_22" + borderSize = {x = 0 y = 0} + maxWidth = 240 + maxHeight = 24 + text = "MENU_BAR_MESSAGE_SETTINGS" + orientation = "UPPER_LEFT" + format = centre + } + + guiButtonType = { + name = "MessageGroup_Self" + position = { x = 410 y = 100 } + quadTextureSprite ="GFX_msg_group_tab_close" + pdx_tooltip = "MSG_SETTING_CLOSE_BUT" + clicksound = click_03 + } + + guiButtonType = { + name = "MessageGroup_Interest" + position = { x = 446 y = 100 } + quadTextureSprite ="GFX_msg_group_tab_interesting" + pdx_tooltip = "MSG_SETTING_INTEREST_BUT" + clicksound = click_03 + } + + guiButtonType = { + name = "MessageGroup_Other" + position = { x = 482 y = 100 } + quadTextureSprite ="GFX_msg_group_tab_others" + pdx_tooltip = "MSG_SETTING_OTHER_BUT" + clicksound = click_03 + } + + guiButtonType = { + name = "TabAll" + position = { x = -52 y = 155 } + quadTextureSprite ="GFX_messagesettings_category_button" + buttonText = "MENU_MESSAGES_TAB_ALL" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + guiButtonType = { + name = "TabDiplomacy" + position = { x = -52 y = 180 } + quadTextureSprite ="GFX_messagesettings_category_button" + buttonText = "MENU_MESSAGES_TAB_DIPLOMACY" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "TabDynasty" + position = { x = -52 y = 205 } + quadTextureSprite ="GFX_messagesettings_category_button" + buttonText = "MENU_MESSAGES_TAB_DYNASTY" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "TabIntrigue" + position = { x = -52 y = 230 } + quadTextureSprite ="GFX_messagesettings_category_button" + buttonText = "MENU_MESSAGES_TAB_INTRIGUE" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "TabMilitary" + position = { x = -52 y = 255 } + quadTextureSprite ="GFX_messagesettings_category_button" + buttonText = "MENU_MESSAGES_TAB_MILITARY" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "TabGovernment" + position = { x = -52 y = 280 } + quadTextureSprite ="GFX_messagesettings_category_button" + buttonText = "MENU_MESSAGES_TAB_GOVERNMENT" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "TabReligion" + position = { x = -52 y = 305 } + quadTextureSprite ="GFX_messagesettings_category_button" + buttonText = "MENU_MESSAGES_TAB_RELIGION" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "TabOther" + position = { x = -52 y = 330 } + quadTextureSprite ="GFX_messagesettings_category_button" + buttonText = "MENU_MESSAGES_TAB_OTHER" + buttonFont = "vic_18" + clicksound = generic_click_04 + } + + listboxType = + { + name ="settings" + position = { x=40 y =148} + backGround="" + size = { x=510 y =240} + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "reset" + position = { x = 289 y = 430 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_MESSAGES_RESET" + buttonFont = "vic_18" + } + + guiButtonType = { + name = "close" + position = { x = 57 y = 430 } + quadTextureSprite ="GFX_standard_button_164" + buttonText = "MENU_BAR_CLOSE" + buttonFont = "vic_18" + } + } + + } + + #### MESSAGE ENTRY + windowType = { + name = "message_entry" + backGround="" + position = { x=0 y=0 } + size = { x=128 y= 24 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name = "message" + position = { x=7 y =0} + quadTextureSprite ="GFX_messagesettings_listbutton" + } + + instantTextBoxType={ + position = {x = 22 y = 3 } + name = "text" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + maxWidth = 320 + maxHeight = 20 + text = "" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + + guiButtonType = { + name = "messageicon_priority1" + position = { x=362 y =0} + quadTextureSprite ="GFX_messageicon_priority1" + clicksound = click_03 + } + + guiButtonType = { + name = "messageicon_priority2" + position = { x=386 y =0} + quadTextureSprite ="GFX_messageicon_priority2" + clicksound = click_03 + } + + guiButtonType = { + name = "messageicon_priority3" + position = { x=410 y =0} + quadTextureSprite ="GFX_messageicon_priority3" + clicksound = click_03 + } + + guiButtonType = { + name = "messageicon_priority4" + position = { x=434 y =0} + quadTextureSprite ="GFX_messageicon_priority4" + clicksound = click_03 + } + + guiButtonType = { + name = "messageicon_priority5" + position = { x=458 y =0} + quadTextureSprite ="GFX_messageicon_priority5" + clicksound = click_03 + } + + guiButtonType = { + name = "messageicon_pause" + position = { x=482 y =0} + quadTextureSprite ="GFX_messageicon_priority6" + clicksound = click_03 + } + + } + + ### MSG CATEGORY ENTRY + windowType = { + name = "message_category_entry" + backGround="" + position = { x=0 y=0 } + size = { x=128 y= 20 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + guiButtonType = { + name = "message" + position = { x=0 y =0} + quadTextureSprite ="GFX_messagesettings_listbutton" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "UI_MISSING_TEXT" + buttonFont = "small_white" + } + + instantTextBoxType={ + position = {x = 0 y = 0 } + name = "text" + font = "small_white" + borderSize = {x = 0 y = 0} + maxWidth = 350 + maxHeight = 16 + text = "" + orientation = "UPPER_LEFT" + format = left + fixedsize = yes + } + } + + ### FIND PROVINCE ENTRY + windowType = { + name = "find_province_entry" + backGround="" + position = { x=0 y=0 } + size = { x=128 y= 24 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + checkboxType = { + name = "title_box" + position = { x=22 y =0} + quadTextureSprite ="GFX_list_button" + buttonText = "" + buttonFont = "vic_18_black" + } + + checkboxType = { + name = "region_box" + position = { x=22 y =0} + quadTextureSprite ="GFX_region_list_button" + buttonText = "" + buttonFont = "vic_18_black" + } + } + + windowType = { + name = "browser_window" + position = { x=-318 y=-242 } + size = { x=635 y=545 } + orientation="CENTER" + + browserType = { + name = "browser" + spriteType = "GFX_dummy_browser" + position = { x = 18 y = 45 } + size = { x = 600 y = 432 } + } + + iconType = { + name = "background" + spriteType = "GFX_browser_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name = "back" + quadTextureSprite = "GFX_browser_back" + position = { x = 17 y = 12 } + tooltipText = "BROWSER_BACK" + size = { x = 26 y = 26 } + } + + guiButtonType = + { + name = "forward" + quadTextureSprite = "GFX_browser_forward" + position = { x = 45 y = 12 } + size = { x = 26 y = 26 } + tooltipText = "BROWSER_FORWARD" + } + + guiButtonType = + { + name = "reload" + quadTextureSprite = "GFX_browser_refresh" + position = { x = 73 y = 12 } + size = { x = 26 y = 26 } + tooltipText = "BROWSER_RELOAD" + } + + guiButtonType = + { + name = "close" + position = { x = 230 y = 484 } + quadTextureSprite = "GFX_big_button_176" + buttonText = "OK" + buttonFont = "vic_18" + } + } +} \ No newline at end of file diff --git a/resource/interface/province.gui b/resource/interface/province.gui new file mode 100644 index 0000000..347c1db --- /dev/null +++ b/resource/interface/province.gui @@ -0,0 +1,2180 @@ +guiTypes = { + + windowType = { + name = "province" + backGround ="" + position = { x=0 y=-624 } + size = { x=1024 y=224 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + orientation = "LOWER_LEFT" + upsound = click + + iconType = { + name ="bg_province" + spriteType = "GFX_province_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "make_capital" + quadTextureSprite = "GFX_province_make_capitol" + position = { x = 52 y = 8 } + Orientation = "UPPER_LEFT" + clicksound = generic_click_04 + } + iconType = { + name ="capital_icon" + spriteType = "GFX_province_capitol_icon" + position = { x= 52 y = 8 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "button_raise_levy" + position = { x=180 y=354 } + quadTextureSprite ="GFX_military_troop_strip_1" + Orientation = "UPPER_LEFT" + shortcut = "z" + } + + guiButtonType = { + name = "button_raise_ships" + position = { x=220 y=354 } + quadTextureSprite ="GFX_military_troop_strip_1" + Orientation = "UPPER_LEFT" + shortcut = "c" + } + + iconType = { + name = "hospital_level_icon" + position = { x=255 y=352 } + quadTextureSprite ="GFX_hospital_level_strip" + Orientation = "UPPER_LEFT" + } + + iconType = { + name = "major_modifier_icon" + position = { x=290 y=352 } + quadTextureSprite ="GFX_major_modifiers_strip" + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="loot_progress" + spriteType = "GFX_lootprogress" + position = { x= 176 y = 291 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="loot_progress_frame" + spriteType = "GFX_loot_progress_frame" + position = { x= 174 y = 287 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name = "loot_protected_icon" + spriteType = "GFX_loot_protected_icon" + position = { x = 174 y = 290 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "pv_county_shield" + position = { x= 0 y = 22 } + quadTextureSprite ="GFX_shield_medium" + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="county_crown" + spriteType = "GFX_shield_crown_strip_medium" + position = { x= 12 y = -1 } + Orientation = "UPPER_LEFT" + } + + editBoxType = { + name = "province_name" + position = { x = 72 y = 5 } + textureFile = "" + font = "vic_22bold" + borderSize = {x = 4 y = 4} + text = "" + size = { x=300 y=32 } # { x=156 y=32 } + cursor = { x=4 y=1 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "show_region_info" + position = { x=242 y=13 } + quadTextureSprite ="GFX_show_region_info_icon" + Orientation = "UPPER_LEFT" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "button_close" + position = { x = 320 y = 6 } + quadTextureSprite ="GFX_main_close_button" + shortcut = "ESCAPE" + } + + guiButtonType = { + name = "make_crown_focus" + position = { x=216 y=13 } + quadTextureSprite ="GFX_crown_focus_icon" + Orientation = "UPPER_LEFT" + clicksound = generic_click_04 + } + + guiButtonType = { + name = "province_tier_shield1" + position = { x= 212 y = 46 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="province_tier_shield1_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 218 y = 34 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "province_tier_shield2" + position = { x= 238 y = 46 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="province_tier_shield2_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 244 y = 34 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "province_tier_shield3" + position = { x= 260 y = 22 } + quadTextureSprite ="GFX_shield_medium" + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="province_tier_shield3_crown" + spriteType = "GFX_shield_crown_strip_medium" + position = { x= 272 y = -1 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="ruler_portrait" + quadTextureSprite = "GFX_char_100" + position = { x = 64 y = 69 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="ruler_portrait_frame" + quadTextureSprite = "GFX_charframe_100" + position = { x= 56 y = 60 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="ruler_portrait_status" + spriteType = "GFX_overlay_char_status_100" + position = { x= 63 y = 68 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="ruler_portrait_relation" + spriteType = "GFX_overlay_char_relation_100" + position = { x= 133 y = 68 } + Orientation = "UPPER_LEFT" + } + + ##### Ally Order button & list + guiButtonType = { + name = "take_province_order_button" + position = { x = 311 y = 29 } + spriteType ="GFX_ally_order_button" + clicksound = generic_click_01 + alwaystransparent = no + } + + windowType = { + name = "province_ally_order_window" + backGround ="" + position = { x = 344 y = 71 } + size = { x = 188 y = 434 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + + iconType = { + name ="ally_order_window_bg" + spriteType = "GFX_ally_order_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + listboxType = { + name = "ally_order_member_list" + position = { x = 0 y = 15 } + backGround="" + size = { x= 360 y= 410 } + spacing = 0 + scrollbartype = "standardlistbox_slider" + borderSize = {x = 0 y = 0} + } + } + + OverlappingElementsBoxType = { + name = "info_list_box" + position = { x = 28 y = 179 } + size = { x = 160 y = 32 } + format = left + spacing = 0 + } + + OverlappingElementsBoxType = { + name = "temp_mods_box" + position = { x = 10 y = 225 } + size = { x=168 y= 32 } + Orientation = "UPPER_LEFT" + format = left + spacing = 0 + } + OverlappingElementsBoxType = { + name = "diseases_box" + position = { x = 165 y = 224 } + size = { x = 96 y = 32 } + format = right + spacing = 0 + } + + + ##### + + OverlappingElementsBoxType = { + name = "settlements_1_box" + position = { x = 6 y = 400 } + size = { x=520 y=128 } + format = left + spacing = 0 + } + OverlappingElementsBoxType = { + name = "settlements_2_box" + position = { x = 6 y = 508 } + size = { x=520 y=128 } + format = left + spacing = 0 + } + + ###### + + guiButtonType = { + name = "kingdom_shield" + position = { x= 16 y = 269 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name = "duchy_shield" + position = { x= 16 y = 304 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="crown_1" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 22 y = 257 } + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="crown_2" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 22 y = 292 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "kingdom" + position = { x = 47 y = 273 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 115 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + instantTextBoxType = { + name = "duchy" + position = { x = 47 y = 306 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 115 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + textBoxType = { + name = "label_culture" + position = { x = 20 y = 331 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "CULTURE" + maxWidth = 70 + maxHeight = 14 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + instantTextBoxType = { + name = "culture" + position = { x = 75 y = 332 } + textureFile = "" + font = "Arial12_bold_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 90 + maxHeight = 14 + format = right + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + textBoxType = { + name = "label_religion" + position = { x = 20 y = 345 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "RELIGION" + maxWidth = 70 + maxHeight = 14 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + instantTextBoxType = { + name = "religion" + position = { x = 85 y = 346 } + textureFile = "" + font = "Arial12_bold_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 80 + maxHeight = 14 + format = right + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + textBoxType = { + name = "label_supply_limit" + position = { x = 20 y = 359 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "SUPPLY" + maxWidth = 70 + maxHeight = 14 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + instantTextBoxType = { + name = "supply_limit" + position = { x = 85 y = 360 } + textureFile = "" + font = "Arial12_bold_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 80 + maxHeight = 14 + format = right + Orientation = "UPPER_LEFT" + fixedsize = yes + } + textBoxType = { + name = "label_revoltrisk" + position = { x = 20 y = 373 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "PLOTS_REVOLTRISK" + maxWidth = 90 + maxHeight = 14 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + instantTextBoxType = { + name = "revoltrisk" + position = { x = 85 y = 374 } + textureFile = "" + font = "Arial12_bold_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 80 + maxHeight = 14 + format = right + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + iconType = { + name = "icon_miltech" + spriteType = "GFX_icon_miltech" + position = { x = 174 y = 312 } + } + instantTextBoxType = { + name = "miltech_value" + position = { x = 200 y = 321 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 20 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + iconType = { + name = "icon_ecotech" + spriteType = "GFX_icon_ecotech" + position = { x = 221 y = 313 } + } + instantTextBoxType = { + name = "ecotech_value" + position = { x = 250 y = 321 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 20 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + iconType = { + name = "icon_cultech" + spriteType = "GFX_icon_cultech" + position = { x = 271 y = 313 } + } + instantTextBoxType = { + name = "cultech_value" + position = { x = 300 y = 321 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 20 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + iconType = { + name ="icon_tax" + spriteType = "GFX_icon_wealth" + position = { x= 172 y = 263 } + } + + instantTextBoxType = { + name = "total_tax_value" + position = { x = 218 y = 269 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 100 + maxHeight = 20 + format = right + Orientation = "UPPER_LEFT" + fixedsize = yes + } + + iconType = { + name ="icon_strait" + spriteType = "GFX_icon_strait" + position = { x= 300 y = 229 } + } + iconType = { + name ="icon_route" + spriteType = "GFX_icon_route" + position = { x= 268 y = 229 } + } + + ###### Siege interface + windowType = { + name = "siege_window" + backGround="" + position = { x=0 y=0 } + size = { x=370 y=512 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "LOWER_LEFT" + + iconType = + { + name ="siege_bg" + spriteType = "GFX_combat_siege_bg" + position = { x= 6 y = 1 } + Orientation = "UPPER_LEFT" + } + guiButtonType = + { + name ="siege_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 2 y = -3 } + Orientation = "UPPER_LEFT" + } + instantTextBoxType = { + name = "label_siegename" + position = { x = 17 y = 7 } + font = "vic_18" + text = "" + maxWidth = 300 + maxHeight = 20 + fixedsize = yes + format = centre + } + + ### attackers + + windowType = { + name = "siege_attackers" + backGround="" + position = { x=0 y=0 } + size = { x=370 y=512 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "UPPER_LEFT" + + guiButtonType = { + name ="leader_portrait" + quadTextureSprite= "GFX_char_50" + position = { x= 15 y = 45 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="leader_portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 9 y = 38 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name ="leader_shield" + quadTextureSprite = "GFX_shield_small" + position = { x= 5 y = 74 } + Orientation = "UPPER_LEFT" + } + + #iconType = + #{ + # name ="tactic_strip" + # spriteType = "GFX_combat_tactic_strip" + # position = { x= 296 y = 52 } + # Orientation = "UPPER_LEFT" + #} + + iconType = + { + name ="morale" + spriteType = "GFX_combat_siege_morale" + position = { x= 71 y = 38 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "light_infantry_total" + position = { x = 70 y = 85 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 32 + maxHeight = 20 + format = centre + } + instantTextBoxType = { + name = "pikemen_total" + position = { x = 102 y = 85 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 32 + maxHeight = 20 + format = centre + } + instantTextBoxType = { + name = "archers_total" + position = { x = 134 y = 85 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 32 + maxHeight = 20 + format = centre + } + instantTextBoxType = { + name = "heavy_infantry_total" + position = { x = 166 y = 85 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 32 + maxHeight = 20 + format = centre + } + instantTextBoxType = { + name = "light_cavalry_total" + position = { x = 198 y = 85 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 32 + maxHeight = 20 + format = centre + } + instantTextBoxType = { + name = "special_troops_total" + position = { x = 262 y = 85 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 32 + maxHeight = 20 + format = centre + } + instantTextBoxType = { + name = "knights_total" + position = { x = 230 y = 85 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 32 + maxHeight = 20 + format = centre + } + + + iconType = { + name ="light_infantry" + spriteType = "GFX_unitpanel_unitstrip_small" + position = { x= 73 y = 58 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="pikemen" + spriteType = "GFX_unitpanel_unitstrip_small" + position = { x= 105 y = 58 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="archers" + spriteType = "GFX_unitpanel_unitstrip_small" + position = { x= 137 y = 58 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="heavy_infantry" + spriteType = "GFX_unitpanel_unitstrip_small" + position = { x= 169 y = 58 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="light_cavalry" + spriteType = "GFX_unitpanel_unitstrip_small" + position = { x= 201 y = 58 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="special_troops" + spriteType = "GFX_unitpanel_specialtroops_smallstrip" + position = { x= 265 y = 58 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="knights" + spriteType = "GFX_unitpanel_unitstrip_small" + position = { x= 233 y = 58 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "label_attackers" + position = { x = 76 y = 38 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "SIEGE_ATTACKERS" + maxWidth = 150 + maxHeight = 24 + fixedsize = yes + format = left + allwaystransparent = yes + } + instantTextBoxType = { + name = "units_total" + position = { x = 200 y = 38 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 70 + maxHeight = 24 + format = right + allwaystransparent = yes + } + + iconType = { + name ="to_few_men" + spriteType = "GFX_icon_siege_tofewmen" + position = { x= 273 y = 36 } + Orientation = "UPPER_LEFT" + } + + } + + guiButtonType = { + name = "assault" + position = {x= 303 y = -2 } + quadTextureSprite ="GFX_siege_assault_button" + Orientation = "UPPER_LEFT" + clicksound = generic_click_02 + shortcut = "c" + } + + + ### defenders + + windowType = { + name = "siege_defenders" + backGround="" + position = { x=0 y=69 } + size = { x=370 y=512 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "UPPER_LEFT" + + guiButtonType = { + name ="leader_portrait" + quadTextureSprite= "GFX_char_50" + position = { x= 15 y = 45 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="leader_portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 9 y = 38 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name ="leader_shield" + quadTextureSprite = "GFX_shield_small" + position = { x= 5 y = 74 } + Orientation = "UPPER_LEFT" + } + + #iconType = + #{ + # name ="tactic_strip" + # spriteType = "GFX_combat_tactic_strip" + # position = { x= 296 y = 52 } + # Orientation = "UPPER_LEFT" + #} + + iconType = + { + name ="morale" + spriteType = "GFX_combat_siege_morale" + position = { x= 71 y = 38 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="garrison_icon" + spriteType = "GFX_combat_siege_end_garrison" + position = { x= 81 y = 65 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="levy_icon" + spriteType = "GFX_combat_siege_end_levy" + position = { x= 195 y = 65 } + Orientation = "UPPER_LEFT" + } + instantTextBoxType = { + name = "garrison_amount" + position = { x = 100 y = 69 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 60 + maxHeight = 20 + format = right + } + instantTextBoxType = { + name = "levy_amount" + position = { x = 212 y = 69 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 60 + maxHeight = 20 + format = right + } + + + instantTextBoxType = { + name = "label_defenders" + position = { x = 76 y = 38 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "SIEGE_DEFENDERS" + maxWidth = 150 + maxHeight = 24 + fixedsize = yes + format = left + allwaystransparent = yes + } + instantTextBoxType = { + name = "units_total" + position = { x = 200 y = 38 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 70 + maxHeight = 24 + format = right + allwaystransparent = yes + } + + iconType = { + name ="fort_icon" + spriteType ="GFX_buildview_fort_icon" + position = { x = 303 y = 30 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "fort_level_text" + position = { x = 286 y = 50 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 60 + maxHeight = 25 + format = centre + fixedsize = yes + Orientation = "UPPER_LEFT" + } + + } + + } + ### END OF SIEGE + + guiButtonType = { + name = "province_toggle_siege" + position = { x= 307 y = 368 } + quadTextureSprite ="GFX_province_toggle_siege" + Orientation = "UPPER_LEFT" + clicksound = generic_click_04 + shortcut = "z" + } + + + ### PROVINCE EXTENDED VIEW + windowType = { + name = "province_extension" + backGround ="" + position = { x=344 y=-373 } + size = { x=1024 y=345 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + orientation = "LOWER_LEFT" + + iconType = { + name ="bg_province_extended" + spriteType = "GFX_province_bg_extended_2" + position = { x= -1 y = 157 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="bg_province_extended_reapers" + spriteType = "GFX_province_bg_extended_3" + position = { x= -1 y = 157 } + Orientation = "UPPER_LEFT" + } + + # TRADE POST + + windowType = { + name = "trade_window" + backGround ="" + position = { x=-1 y=549 } + size = { x=1024 y=224 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + orientation = "UPPER_LEFT" + + instantTextBoxType = { + name = "trade_post_title" + position = { x = 13 y = -14 } + textureFile = "" + font = "vic_22" + text = "PV_TRADE_POST" + maxWidth = 300 + maxHeight = 20 + format = centre + fixedsize = yes + } + + guiButtonType = { + name = "holding" + position = { x = 23 y = 26 } + quadTextureSprite = "GFX_trade_post" + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "republic_shield" + position = { x= 132 y = 23 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="republic_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 138 y = 11 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "family_shield" + position = { x= 136 y = 57 } + quadTextureSprite ="GFX_CoA_small" + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "primary_shield" + position = { x= 132 y = 57 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="primary_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 138 y = 45 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="control_shield" + quadTextureSprite = "GFX_shield_small" + position = { x = 10 y = 15 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="progress_bg1" + spriteType = "GFX_levy_progress_bg" + position = { x= 24 y = 102 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="garrison_size" + spriteType = "GFX_levyprogress_1" + position = { x= 28 y = 107 } + Orientation = "UPPER_LEFT" + } + iconType = { + name = "garrison_icon" + spriteType = "GFX_combat_siege_end_garrison" + position = { x= 7 y = 97 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "republic_name" + position = { x = 165 y = 27 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 140 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + instantTextBoxType = { + name = "family_name" + position = { x = 165 y = 57 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 140 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + iconType = { + name ="tax_icon" + spriteType ="GFX_icon_wealth" + position = { x = 126 y = 87 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="fort_icon" + spriteType ="GFX_buildview_fort_icon" + position = { x = 196 y = 88 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "FORT_LEVEL" + } + iconType = { + name ="garrison_icon2" + spriteType = "GFX_combat_siege_end_garrison" + position = { x= 254 y = 89 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "GARRISON_SIZE" + } + + instantTextBoxType = { + name = "settlement_Taxinfo" + position = { x = 153 y = 94 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 50 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "settlement_Fortlevel" + position = { x = 224 y = 94 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 32 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + pdx_tooltip = "FORT_LEVEL" + } + + instantTextBoxType = { + name = "settlement_GarrisonSize" + position = { x = 275 y = 94 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 40 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + pdx_tooltip = "GARRISON_SIZE" + } + + ### trade zone + instantTextBoxType = { + name = "TradeZone_label" + position = { x = 25 y = 138 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "TRADE_ZONE" + maxWidth = 120 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="tradezone_value_icon" + spriteType = "GFX_trade_zone_value" + position = { x= 117 y = 134 } + } + + instantTextBoxType = { + name = "tradezone_value" + position = { x = 147 y = 138 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 40 + maxHeight = 25 + format = left + fixedsize = yes + } + + iconType = { + name ="tradezone_size_icon" + spriteType = "GFX_trade_zone_size" + position = { x= 187 y = 138 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "tradezone_size" + position = { x = 213 y = 138 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 30 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="tradezone_income_icon" + spriteType ="GFX_icon_wealth" + position = { x = 241 y = 132 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "tradezone_income" + position = { x = 267 y = 138 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 45 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + } + + ### family income + instantTextBoxType = { + name = "FamilyIncome_label" + position = { x = 25 y = 176 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "TOTAL_TRADE_FAMILY" + maxWidth = 120 + maxHeight = 25 + format = left + fixedsize = yes + } + iconType = { + name ="Family_size_icon" + spriteType = "GFX_trade_zone_size" + position = { x= 187 y = 176 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "Family_size" + position = { x = 213 y = 176 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 30 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="Family_income_icon" + spriteType ="GFX_icon_wealth" + position = { x = 241 y = 170 } + + } + + instantTextBoxType = { + name = "Family_income" + position = { x = 267 y = 176 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 45 + maxHeight = 25 + format = left + fixedsize = yes + } + + iconType = { + name ="build_progress" + spriteType = "GFX_build_progress" + position = { x= 126 y = 91 } + } + } + + # FORT + + windowType = { + name = "fort_window" + backGround ="" + position = { x=-1 y=400 } + size = { x=1024 y=121 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + orientation = "UPPER_LEFT" + + instantTextBoxType = { + name = "fort_title" + position = { x = 13 y = -14 } + textureFile = "" + font = "vic_22" + text = "PV_FORT" + maxWidth = 300 + maxHeight = 20 + format = centre + fixedsize = yes + } + + guiButtonType = { + name = "holding" + position = { x = 23 y = 26 } + quadTextureSprite = "GFX_fort" + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "republic_shield" + position = { x= 132 y = 23 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="republic_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 138 y = 11 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "primary_shield" + position = { x= 132 y = 57 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="primary_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 138 y = 45 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="progress_bg1" + spriteType = "GFX_levy_progress_bg" + position = { x= 24 y = 102 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="garrison_size" + spriteType = "GFX_levyprogress_1" + position = { x= 28 y = 107 } + Orientation = "UPPER_LEFT" + } + iconType = { + name = "garrison_icon" + spriteType = "GFX_combat_siege_end_garrison" + position = { x= 7 y = 97 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "republic_name" + position = { x = 165 y = 27 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 140 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + instantTextBoxType = { + name = "family_name" + position = { x = 165 y = 57 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 140 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + iconType = { + name ="tax_icon" + spriteType ="GFX_icon_wealth" + position = { x = 126 y = 87 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="fort_icon" + spriteType ="GFX_buildview_fort_icon" + position = { x = 196 y = 88 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "FORT_LEVEL" + } + iconType = { + name ="garrison_icon2" + spriteType = "GFX_combat_siege_end_garrison" + position = { x= 254 y = 89 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "GARRISON_SIZE" + } + + instantTextBoxType = { + name = "settlement_Taxinfo" + position = { x = 153 y = 94 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 50 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "settlement_Fortlevel" + position = { x = 224 y = 94 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 32 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + pdx_tooltip = "FORT_LEVEL" + } + + instantTextBoxType = { + name = "settlement_GarrisonSize" + position = { x = 275 y = 94 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 40 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + pdx_tooltip = "GARRISON_SIZE" + } + + iconType = { + name ="build_progress" + spriteType = "GFX_build_progress" + position = { x= 126 y = 91 } + } + } + + # HOSPITAL + + windowType = { + name = "hospital_window" + backGround ="" + position = { x=-1 y=251 } + size = { x=1024 y=121 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + orientation = "UPPER_LEFT" + + instantTextBoxType = { + name = "hospital_title" + position = { x = 13 y = -14 } + textureFile = "" + font = "vic_22" + text = "PV_HOSPITAL" + maxWidth = 300 + maxHeight = 20 + format = centre + fixedsize = yes + } + + guiButtonType = { + name = "holding" + position = { x = 23 y = 26 } + quadTextureSprite = "GFX_fort" + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "republic_shield" + position = { x= 132 y = 23 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="republic_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 138 y = 11 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name = "primary_shield" + position = { x= 132 y = 57 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="primary_crown" + spriteType = "GFX_shield_crown_strip_small" + position = { x= 138 y = 45 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="progress_bg1" + spriteType = "GFX_levy_progress_bg" + position = { x= 24 y = 102 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="garrison_size" + spriteType = "GFX_levyprogress_1" + position = { x= 28 y = 107 } + Orientation = "UPPER_LEFT" + } + iconType = { + name = "garrison_icon" + spriteType = "GFX_combat_siege_end_garrison" + position = { x= 7 y = 97 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "republic_name" + position = { x = 165 y = 27 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 140 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + instantTextBoxType = { + name = "family_name" + position = { x = 165 y = 57 } + textureFile = "" + font = "vic_22" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 140 + maxHeight = 20 + format = left + Orientation = "UPPER_LEFT" + fixedsize = yes + } + iconType = { + name ="tax_icon" + spriteType ="GFX_icon_wealth" + position = { x = 126 y = 87 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="fort_icon" + spriteType ="GFX_buildview_fort_icon" + position = { x = 196 y = 88 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "FORT_LEVEL" + } + iconType = { + name ="garrison_icon2" + spriteType = "GFX_combat_siege_end_garrison" + position = { x= 254 y = 89 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "GARRISON_SIZE" + } + + instantTextBoxType = { + name = "settlement_Taxinfo" + position = { x = 153 y = 94 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 50 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "settlement_Fortlevel" + position = { x = 224 y = 94 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 32 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + pdx_tooltip = "FORT_LEVEL" + } + + instantTextBoxType = { + name = "settlement_GarrisonSize" + position = { x = 275 y = 94 } + textureFile = "" + font = "vic_18" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 40 + maxHeight = 25 + format = left + fixedsize = yes + Orientation = "UPPER_LEFT" + pdx_tooltip = "GARRISON_SIZE" + } + + iconType = { + name ="build_progress" + spriteType = "GFX_build_progress" + position = { x= 126 y = 91 } + } + } + + iconType = { + name ="province_terrain" + spriteType = "GFX_province_terrain_mountain" + position = { x = 28 y = 170 } + } + } + + guiButtonType = { + name = "province_extend" + position = { x = 343 y = 18 } + quadTextureSprite = "GFX_province_extend" + Orientation = "UPPER_LEFT" + clicksound = click + } + } + + windowType = { + name = "province_extension_non_reapers_pos" + position = { x=344 y=-0 } + } + + windowType = { + name = "trade_window_non_reapers_pos" + position = { x=-1 y=400 } + } + + windowType = { + name = "fort_window_non_reapers_pos" + position = { x=-1 y=251 } + } + + guiButtonType = { + name = "province_extend_non_reapers_pos" + position = { x = 343 y = 167 } + } + + iconType = { + name ="province_terrain_non_reapers_pos" + spriteType = "GFX_province_terrain_mountain" + position = { x = 28 y = 170 } + } + + ### disease entry + windowType = { + name = "disease_entry" + background = "" + position = { x = 0 y = 0 } + size = { x = 32 y = 32 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullscreen = no + + iconType = { + name ="icon" + spriteType = "GFX_disease_icons" + position = { x = 0 y = 0 } + Orientation = "UPPER_LEFT" + } + } + + ### MODIFIER ENTRY + windowType = { + name = "pv_tempmod_entry" + backGround ="" + position = { x=0 y=0 } + size = { x=28 y=28 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + + iconType = + { + name ="strip_temp_mods" + spriteType = "GFX_modifier_icons" + position = { x = 0 y = 0 } + Orientation = "UPPER_LEFT" + } + } + + ############ + windowType = { + name = "prov_diplo_info_entry" + backGround="" + position = { x=0 y=0 } + size = { x=200 y= 13 } + moveable = 0 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + + instantTextBoxType = { + position = { x=0 y =0} + name = "text" + font = "Arial12" + borderSize = {x = 0 y = 0} + maxWidth = 200 + maxHeight = 13 + text = "" + orientation = "UPPER_LEFT" + format = left + } + } + ######## + + positionType = { + name = "pv_toolbar_maximized" + position = { x = 0 y = -265 } + } + + positionType = { + name = "pv_toolbar_minimized" + position = { x = 0 y = -249 } + } + + positionType = { + name = "capital_position" + position = { x = 193 y = 86 } + } + + + ### CHOOSE SETTLEMENT + eu3dialogtype = { + name = "ChooseSettlementDialog" + backGround="Background" + position = { x=-260 y=-190 } + size = { x=520 y=380 } + moveable = 1 + dontRender = "" + horizontalBorder= "" + verticalBorder= "" + fullScreen = no + Orientation = "CENTER" + + guiButtonType = { + name = "Background" + quadTextureSprite ="DefaultDialogBackground" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + } + + textBoxType = { + name = "Title" + position = { x = 10 y = 36 } + textureFile = "" + font = "headline" + borderSize = {x = 4 y = 4} + text = "NEW_SETTLEMENT" + maxWidth = 500 + maxHeight = 32 + format = centre + } + + guiButtonType = { + name = "OptionCastle" + position = { x=152 y =220} + quadTextureSprite ="button_type_4" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "castle" + buttonFont = "common" + } + + guiButtonType = { + name = "OptionCity" + position = { x=152 y =252} + quadTextureSprite ="button_type_4" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "city" + buttonFont = "common" + } + + guiButtonType = { + name = "OptionTemple" + position = { x=152 y =284} + quadTextureSprite ="button_type_4" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "temple" + buttonFont = "common" + } + + guiButtonType = { + name = "OptionTradePost" + position = { x=152 y =316} + quadTextureSprite ="button_type_4" + tooltip = "" + tooltipText ="" + delayedTooltipText = "" + buttonText = "trade_post" + buttonFont = "common" + } + } + + ### SETTLEMENT ENTRY + windowType = { + name = "settlement_entry" + backGround ="" + position = { x=0 y=0 } + size = { x=109 y=109 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + + iconType = { + name = "province_settlement_frame" + spriteType = "GFX_province_settlement_frame" + position = { x= 3 y = 1 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name = "settlement_owner_frame" + spriteType = "GFX_province_settlement_owner_frame" + position = { x= 14 y = 11 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="settlement_placeholder" + quadTextureSprite ="GFX_settlement_castle" + position = { x = 22 y = 19 } + Orientation = "UPPER_LEFT" + clicksound = click + scale = 0.75 + } + + guiButtonType = { + name ="holder_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x = -2 y = -1 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="control_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x = 32 y = -1 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="realm_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x = 67 y = -1 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="progress_bg1" + spriteType = "GFX_levy_progress_bg" + position = { x= 16 y = 90 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="progress_bg2" + spriteType = "GFX_levy_progress_bg" + position = { x= 68 y = 90 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="garrison_size" + spriteType = "GFX_levyprogress_1" + position = { x= 19 y = 95 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="levy_size" + spriteType = "GFX_levyprogress_3" + position = { x= 72 y = 95 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="ourlevy_size" + spriteType = "GFX_levyprogress_2" + position = { x= 72 y = 95 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name = "garrison_icon" + spriteType = "GFX_combat_siege_end_garrison" + position = { x= 1 y = 85 } + Orientation = "UPPER_LEFT" + } + iconType = { + name = "levy_icon" + spriteType = "GFX_combat_siege_end_levy" + position = { x= 52 y = 84 } + Orientation = "UPPER_LEFT" + } + + OverlappingElementsBoxType = { + name = "modifiers" + position = { x = -9 y = 66 } + size = { x = 104 y = 50 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "build_new_text" + position = { x = 9 y = 45 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "PROV_BUILD_NEW" + maxWidth = 90 + maxHeight = 24 + format = centre + fixedsize = yes + } + guiButtonType = { + name ="overwrite_holding" + quadTextureSprite = "GFX_overwrite_holding" + position = { x = 74 y = 39 } + Orientation = "UPPER_LEFT" + } + } + + ### CAPITAL ENTRY + windowType = { + name = "capital_entry" + backGround ="" + position = { x=0 y=0 } + size = { x=111 y=111 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + + iconType = { + name = "province_settlement_frame" + spriteType = "GFX_province_capital_settlement_frame" + position = { x= 10 y = 7 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name = "settlement_owner_frame" + spriteType = "GFX_province_capitol_owner_frame" + position = { x= 12 y = 7 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="settlement_placeholder" + quadTextureSprite ="GFX_settlement_castle" + position = { x = 20 y = 15 } + Orientation = "UPPER_LEFT" + clicksound = click + } + + guiButtonType = { + name ="holder_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x = 1 y = -4 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="control_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x = 42 y = -4 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="realm_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x = 83 y = -4 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="progress_bg1" + spriteType = "GFX_levy_progress_bg" + position = { x= 24 y = 118 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="progress_bg2" + spriteType = "GFX_levy_progress_bg" + position = { x= 81 y = 118 } + Orientation = "UPPER_LEFT" + } + iconType = { + name ="garrison_size" + spriteType = "GFX_levyprogress_1" + position = { x= 28 y = 123 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="levy_size" + spriteType = "GFX_levyprogress_3" + position = { x= 85 y = 123 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="ourlevy_size" + spriteType = "GFX_levyprogress_2" + position = { x= 85 y = 123 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name = "garrison_icon" + spriteType = "GFX_combat_siege_end_garrison" + position = { x= 9 y = 114 } + Orientation = "UPPER_LEFT" + } + iconType = { + name = "levy_icon" + spriteType = "GFX_combat_siege_end_levy" + position = { x= 64 y = 113 } + Orientation = "UPPER_LEFT" + } + + OverlappingElementsBoxType = { + name = "modifiers" + position = { x = 16 y = 86 } + size = { x = 100 y = 50 } + format = right + spacing = 0 + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name ="overwrite_holding" + quadTextureSprite = "GFX_overwrite_holding" + position = { x = 93 y = 47 } + Orientation = "UPPER_LEFT" + } + } + + ### DIPLO SHIELD ENTRY + windowType = { + name = "diplo_status_icon_entry" + backGround ="" + position = { x=0 y=0 } + size = { x=24 y=24 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + + iconType = { + name = "diplo_status_icon" + spriteType = "GFX_province_diplostatus_icon_strip" + position = { x= 6 y = 20 } + Orientation = "UPPER_LEFT" + } + guiButtonType = { + name = "shield" + position = { x= 0 y = 0 } + quadTextureSprite ="GFX_shield_small" + Orientation = "UPPER_LEFT" + } + + } + + ### UNIT ENTRY FOR SIEGE + windowType = { + name = "siege_unit_entry" + backGround ="" + position = { x=0 y=0 } + size = { x=20 y=20 } + moveable = 0 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + + guiButtonType = { + name = "select_unit" + position = { x= 0 y = 0 } + quadTextureSprite ="GFX_siege_unit_entry_bg" + Orientation = "UPPER_LEFT" + } + iconType = + { + name ="unit_morale" + spriteType = "GFX_unitpanel_moralebar_big" + position = { x= 0 y = 5 } + Orientation = "UPPER_LEFT" + rotation = 1.5708 + } + instantTextBoxType = { + name = "army_size" + position = { x = 20 y = 5 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 45 + maxHeight = 20 + format = centre + fixedsize = yes + } + iconType = { + name = "shield" + spriteType = "GFX_shield_medium" + position = { x= 20 y = 20 } + Orientation = "UPPER_LEFT" + } + } + +} diff --git a/resource/interface/succession.gui b/resource/interface/succession.gui new file mode 100644 index 0000000..7312598 --- /dev/null +++ b/resource/interface/succession.gui @@ -0,0 +1,443 @@ +guiTypes = { + + windowType = { + name = "succession" + backGround ="background" + position = { x = -504 y = -360 } + size = { x=1007 y=812 } + moveable = 1 + dontRender = "" + horizontalBorder = "0" + verticalBorder = "" + fullScreen = no + upsound = click + Orientation = "CENTER" + click_to_front = yes + + guiButtonType = { + name = "background" + quadTextureSprite = "GFX_succession_bg_area" + } + iconType = { + name ="succession_bg" + spriteType = "GFX_succession_bg" + position = { x= -20 y = -80 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = + { + name = "dead_decorative_letter" + position = { x = 40 y = 258 } + font = "decorative" + borderSize = {x = 0 y = 0} + maxWidth = 120 + maxHeight = 120 + format = left + } + + instantTextBoxType = + { + name = "heir_decorative_letter" + position = { x = 609 y = 258 } + font = "decorative" + borderSize = {x = 0 y = 0} + maxWidth = 120 + maxHeight = 120 + format = left + } + + instantTextBoxType = { + name = "dead_desc_text" + position = { x = 118 y = 258 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 293 + maxHeight = 134 + #format = centre + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "heir_desc_text" + position = { x = 687 y = 258 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 275 + maxHeight = 134 + #format = centre + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name ="old_ruler_portrait" + quadTextureSprite = "GFX_char_100" + position = { x = 102 y = 105 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + + guiButtonType = + { + name ="old_ruler_portrait_frame" + quadTextureSprite = "GFX_charframe_100" + position = { x= 94 y = 96 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="old_ruler_portrait_dead" + quadTextureSprite = "GFX_overlay_char_dead" + position = { x= 171 y = 180 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_DEAD_TOOLTIP" + } + + instantTextBoxType = { + name = "old_ruler_name" + position = { x = 52 y = 208 } + font = "vic_18_black" + borderSize = {x = 0 y = 0} + maxWidth = 200 + maxHeight = 26 + format = center + Orientation = "UPPER_LEFT" + } + + guiButtonType = + { + name ="new_ruler_portrait" + quadTextureSprite = "GFX_char_100" + position = { x = 808 y = 105 } + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + + guiButtonType = + { + name ="new_ruler_portrait_frame" + quadTextureSprite = "GFX_charframe_100" + position = { x= 800 y = 96 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="new_ruler_shield" + quadTextureSprite = "GFX_shield_big" + position = { x= 440 y = -41 } + Orientation = "UPPER_LEFT" + shortcut = "F1" + } + + iconType = + { + name ="new_ruler_crown" + spriteType = "GFX_shield_crown_strip_big" + position = { x= 472 y = -70 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "new_ruler_name" + position = { x = 756 y = 208 } + font = "vic_18_black" + borderSize = {x = 0 y = 0} + maxWidth = 200 + maxHeight = 26 + format = center + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="event_death_picture" + spriteType = "GFX_evt_throne_room" + position = { x= 279 y = 82 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="death_figure_picture" + spriteType = "GFX_death_figure_default" #Changed in code + position = { x= 242 y = 106 } + Orientation = "UPPER_LEFT" + } + + iconType = + { + name ="succession_title_banner" + spriteType = "GFX_succession_title" + position = { x= 396 y = 50 } + } + + instantTextBoxType = { + name = "header_label" + position = { x = 396 y = 56 } + textureFile = "" + font = "vic_36_black" + borderSize = {x = 0 y = 0} + text = "LABEL_SUCCESSION" + maxWidth = 216 + maxHeight = 54 + format = center + } + + instantTextBoxType = { + name = "lost_titles_label" + position = { x = 98 y = 394 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "LABEL_LOST_TITLES" + maxWidth = 240 + maxHeight = 20 + fixedsize = yes + format = CENTER + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "pretenders_label" + position = { x = 668 y = 394 } + textureFile = "" + font = "vic_22_black" + borderSize = {x = 0 y = 0} + text = "LABEL_SUCC_PRETENDERS" + maxWidth = 240 + maxHeight = 20 + fixedsize = yes + format = CENTER + Orientation = "UPPER_LEFT" + } + + listboxType = + { + name = "successor_listbox" + position = { x = 58 y = 426 } + backGround="" + size = { x = 302 y = 250 } + Orientation = "UPPER_LEFT" + spacing = 1 + scrollbartype = "standardlistbox_slider" + borderSize = { x = 0 y = 0 } + } + listboxType = + { + name = "pretender_listbox" + position = { x = 628 y = 426 } + backGround="" + size = { x = 302 y = 240 } + Orientation = "UPPER_LEFT" + spacing = 1 + scrollbartype = "standardlistbox_slider" + borderSize = { x = 0 y = 0 } + } + + guiButtonType = { + name ="proceed_button" + position = { x=394 y = 691 } + quadTextureSprite ="GFX_big_button_220" + buttonFont = "vic_22" + buttonText = "SO_BE_IT" + shortcut = "ESCAPE" + } + } + + + ### Titles Lost Entry + windowType = { + name = "succession_entry" + backGround ="" + position = { x=0 y=0 } + size = { x = 300 y = 60 } + moveable = 0 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + + iconType = { + name ="succession_entry_bg" + spriteType = "GFX_succession_entry_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="portrait" + quadTextureSprite= "GFX_char_50" + position = { x= 241 y = 4 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 235 y = -3 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "title" + position = { x = 49 y = 6 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 185 + maxHeight = 18 + fixedsize = yes + format = left + } + instantTextBoxType = { + name = "name" + position = { x = 50 y = 21 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 185 + maxHeight = 18 + fixedsize = yes + format = left + } + + instantTextBoxType = { + name = "law_name" + position = { x = 50 y = 37 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "" + maxWidth = 185 + maxHeight = 18 + fixedsize = yes + format = left + } + + guiButtonType = { + name ="shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 7 y = 13 } + Orientation = "UPPER_LEFT" + } + iconType ={ + name ="crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 17 y = -4 } + Orientation = "UPPER_LEFT" + } + } + + ### pretender entry + windowType = { + name = "pretender_entry" + backGround ="" + position = { x=0 y=0 } + size = { x = 300 y = 60 } + moveable = 0 + dontRender = "" + horizontalBorder = "" + verticalBorder = "" + fullScreen = no + + iconType = { + name ="succession_entry_bg" + spriteType = "GFX_succession_entry_bg" + position = { x= 0 y = 0 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="portrait" + quadTextureSprite= "GFX_char_50" + position = { x= 6 y = 4 } + Orientation = "UPPER_LEFT" + pdx_tooltip = "CHARACTER_TOOLTIP" + pdx_tooltip_delayed = "CHARACTER_TOOLTIP_DELAYED" + } + guiButtonType = { + name ="portrait_frame" + quadTextureSprite = "GFX_charframe_50" + position = { x= 0 y = -3 } + Orientation = "UPPER_LEFT" + } + + instantTextBoxType = { + name = "name" + position = { x = 64 y = 6 } + textureFile = "" + font = "vic_18_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 160 + maxHeight = 18 + fixedsize = yes + format = left + } + instantTextBoxType = { + name = "title" + position = { x = 65 y = 21 } + textureFile = "" + font = "Arial12_black" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 160 + maxHeight = 18 + fixedsize = yes + format = left + } + iconType = { + name ="opinion_bg" + spriteType = "GFX_opinion_bg" + position = { x= 165 y = 32 } + Orientation = "UPPER_LEFT" + } + instantTextBoxType = { + name = "opinion" + position = { x = 164 y = 38 } + textureFile = "" + font = "Arial12" + borderSize = {x = 0 y = 0} + text = "UI_MISSING_TEXT" + maxWidth = 35 + maxHeight = 18 + fixedsize = yes + format = centre + } + + guiButtonType = { + name ="shield" + quadTextureSprite = "GFX_shield_small" + position = { x= 60 y = 32 } + Orientation = "UPPER_LEFT" + } + + guiButtonType = { + name ="cb_shield" + quadTextureSprite = "GFX_shield_medium2" + position = { x= 256 y = 13 } + Orientation = "UPPER_LEFT" + } + + iconType ={ + name ="cb_crown" + spriteType = "GFX_shield_crown_strip_medium2" + position = { x= 266 y = -4 } + Orientation = "UPPER_LEFT" + } + + iconType = { + name ="cb_icon" + spriteType = "GFX_cb_icon_strip" + position = { x= 240 y = 7 } + Orientation = "UPPER_LEFT" + } + } +} diff --git a/resource/title.jpg b/resource/title.jpg new file mode 100644 index 0000000000000000000000000000000000000000..790d37d60a13d74044ad1d64d794fa10aef04f96 GIT binary patch literal 9934 zcmeHM2UOEtvj2w!La#xZ5K54yBB7{&1VxY{Qaz23iAy zWC0cd5Lf`j=mOx(eX@f7(11TR5DRmUY*2O%PA=vP_51(}2n=R{fWPgU`F1FC9)Jk2 z3d*P*WfQVG50&+UAtTc6v&$W;X&1I0Bq7vY{3AIycZrCKiOcU%P*hUZ(9}A3=&-iI zaYLgM#wMn}oVKyGvv+WGb-Up1anbWqK;YGD*Mov@L`BEM#>FQjre|bkW#`pxBLhF_i}v08jw6q9{=j z_(?xy@Y4o<+Q5Hd1K^F-jZg*<85lMob%?@6de`MR-#OLj<=7J&*nez$e#grS+y5kc zL}y3#SR8sQ615YQ_nw_WXt`11R!f09jux7(lw$Vud1j4o$f_@TG?V93Nl+ zDue$NE$3kdu(hYPq9|O?=Ept4NuLYGvGjxjx?MerZi26P@Gsk8dFj9Gr~e7zpyL@p zokGmo0E8M$$szU&j@f^Dib|+IqTT)Orpeq<;o+L@yJOjxl_Rndd2Z?cUfVACkF^^$ z3?QS7(#rr`^J^JE=^IOEmX#q4_?-wuQ=<1yt$4xN7{Hg4gKcZE;_Hqp_;DS&x$E>4 zEg|aR#(X??*|^lFubU{IwADK>zh+3e2wv%ff88rbM@ zO#+nItz%g>_X+zz-Pk^Y(5en6owkTGMa`Ze8(}^ZrWgQr1Ruiyrb|&=nlBe*hh0Xf zDE_k@i`y@ZlY_SOBW5qtPV*j?O})5zMCrHD}*mJGzU_>3-y9MA!WRfUZb zF#`5p0@0}^f+H6^WqCQQWIX~e>!VbFXOZj>ew_nH7c2rg%1;HB%vfm*%EPSPEcNTG z3<21mNSHbjHiB9SoDxHQ2^hhwJ-tNF{Jd2~tHR7Kv?4KM^HmIBA#fNpcls}wzBB)$ zBgPc-_&PPWr@d`QNW+&V6We0jT)A1?*Xoj?5@yk2(-9HPk< zMVyamK3{db``|TOEq=bt-v(E+6_g{wt^2yN*=^cXmX^wfAI>*5J<0yK7%cAKaqp#W zYFD zZN1v1=wE?*nV@gH39-KRV8ZCsDU;dSh(tiFU$JjRWx(J6M#13N#1m%OOs5d z_3U7V@z=S8`$eC%v9aqqp(l)o_t#Y$v2;tkRLT`AnkaShD(6O)L`5PwBsuU;8GySl zMbZ1!(|g$1FeMYAgju(wuFlJ*$z7KnW^6bs)9qfJVFg`Rl*kL==^47anc~U$@NUhD z!zj;mK;kJ)>C9~tAMDhV{jyIJ+!CUS0h@^F)VFF2=sfr%^jD9Y#a`mqJ5_}zIo2vO zWV+t3sF;P>s3~0~iwZdh6BK=C-`0iH*W+?729#ZNPJ*`p;+J#L(k)+NIG> z!jUB$CP4UJX^E=tn^*1Dif_%-)pP*>k?|Vrm|xZ!Kx?L643XJ6NJ*1v*^yi-JOAcB zgyn(*!V1Y9c{tiUqa6@rKcu0Rjq`!>l7n&sMF^gu^K+Ze2NJa7o=?R;T~4~H6`*zh zilb;=)J70g;5a)F@&G0X>^ET-Tg6`BkTO=NE8HEEgXqY{*neCbLee zE;E(%r~8{Fs5G6UI9p6y$@ScVte}|jEdL4VNF@6L`tj7`oaY}Y1EgP$j_${$hPr5I z-MD3BZPhK4 zVgv03ybNHhlaHP;F*+VTJNgPkvcy7h2@Jr4$9?(B>Y2%ln_An^T!4ZnuUy(~z{Doe zK{P*{I}f;Yp~_*|O;gT7{l1d-t2Xr&_ssQ@(j#8Is5&{)eZ`_gPEN(5@Ncv`_<1PP z+9AKqY(%_;;^UYB%23j!t-V+APf^o3&b(#?LP1kqt4^;Fbq!G#4Ns)wZyUc_RXo&w z&NccLum1V8RnAZMtB;33C2Uf3v+)O=RJ&-qC6zp(rjBcTv(w)LxxaU<+O6UK&Z#Tp zQ~u8MJB;A%UuYR^vm<&uOiA7;#w>7aF4oVX|JJAfK@{J_A(l6ant^kVQwBQ4AI6j$ zY$WlR63oovH-%Lt%58y2_7^TlcDV=Dt3B%_YZbfqEcBY{R9kewr6?+v6u+5$zMa~S zVZ$0txP}bHzTM!gtK1;vMVsMU$SS@Y^BbcJ=&!3gd!0iJ-^`Hbqu0m*A0+hzb5ru9 z@8GLPvlKy{Ch-0kK)sTmLpdI!vFSFNV|zEcZjAnfcxENrFCwa~4VIbXw7Hd1l&B)~ zwIflnkcCNhk3IyU`r6Jh@1wTpp%8hBP%**TvHoFgdG=dPNGLJeL7z}nol=z+KbQ#| zl#?<+P@Q&o!d{MIV7h4688rU_F+{BNq+5g!2u?W2v3V@q$Tj8BtDZS`%iF$rs*9J5 zDk5O#c;9}qj8py?YB8^e8YrJpJ^_lmo_uzex)YM{prrI+6#3bAef_&A`@M;-2l~fJjmJ9FO{Pg6hFcSJX?eJcz9dYM~i^hvY2a(IKW0jp=W*G-g*8AH;NCW;V zbITH#c2%l;g~{GlQLtI^-tU$MaNZpz4Y3^_?o!z|tr@T__F>|QEmm!87 zrxR1Pd67%?=#ODOiu+8^H*r+KvSnXt=7TueGiJ(yu*Jt>rn9x(M3&ymkSD*cmrd-w zaUq>>$mf8WP9OW{?$@C-kFk@R^F8BxT_)V$o!vVyp!art`OCl#D<$c}p8Mw?QZ{}I z1$U5NydqpC5?h)G`kbf32aSvmyBOShVhL8kHns}U``|o!d}odZ-w(Q>q#2ZDw`0AP z^8B~ys^rD~t_x8I&WqaU#CIQn)>NGrxs+1*N#&xY)!W4|-+W30S^{bSmNIVHzsUf? z-9Kpy7sLiOc^@>dkL~Li-=%mif(3E07-XaWtro^PQrrlO9yQs5l*~?)ERD zEU3p)?;Y&6*x9{aK--_&R;o?+LV3Zrw0)BcHV%JAZJ*Tyf^Ghi=b!uzA1e4UwZtp` z;D+jcNGPn&Sr7hI$p2RtZ3_g4vG~C}Nc! zJ7&<0f?)tLhFAt5iT~J;2+%XzewZl!k^ASe|G#C6pI_a`d0Tar0T9$bG~mkKJ1uI5 zE+?*g-Sv9uU~BJ@uq^MECTU`8Yt4SnSUQrUKRD)hOS6ACUB6TM{&U^muN3lsD@(Kq z18CQ+$3n-$hUp?hA=inMd|mmHWX|4VU2R&P-GNSxLQ#ZGmV?0^D}I5f1W}JXsSM)s zm&_GRyCIRHbEIOR*wYztGbuV<&QHSg3bQn%+}l)lD;m46dqIExkhE0j4l?ZJ>kv!> zS+BO5s!w77omh6tr9)`z5zRX`lP9Ze58U##9+wl_TbK@W%i}vnMt@Nu($LfR1U*EE z1f{2x>hy-H1}9u?(eOkr9Bjy*@$(ERcXNNn{&f{H@nFtOxP7|Kvl7b_Vnf4+7?cKS zjdtckNOjw@H+b_uum?^e2L(nZA6`(~|2Fwau;Vcf&han6j;uxG2K*8B%P(Z#E^V#m zf?Z2`G7IES$j?%eYLW^k8?vMXR9;Blsolu#1Ps&?t`ue$^1bZagpYe{*bieo&!W2m z`af{N*@9F$HqgFgXu>+{s$5NSoLYp`-2VQ#U%Tf3Il+K>r_Rcy;Au&r<0Oyg7`8<%f@(r_U5ehw z&=J$2>nXe?!Hdz_sAi;%o)2fSofffD60hspcqmfiflc>ZIxS*U zHJ#=xYfUu!QdVM~p>Na3GKXJ0gT_#WN#?k&w&Z*;DTcc0I7W$bel+Bx(9m;tcfbVV zWbZAb>D_6!jBeVE=xI_Uc0{Nsa&`+b)b&G7SA2b_AbrNXIrRuq!6si!{4j8y`8O&q zZKT!jTfDG9|CYAQGt-tp&2?h zKf(=9H$;^NLBD2^RNC8EbT3TD>q4s*3Cpp~RzwLn%<1fBcD|Kyy)+?Q3^L3O?`{trzEi4ozu#I47W`RawDn!LITQ zGhMnpnUm0bfrPSu6Bw_H!d-%MYUnh1%Z@i1y28@WBK70I%8AFKB0AOz`LN6!75Lw# z{0{oOS!-j<<0sieD+I$_iTK?mY1(;}D!fM_EbOxa=o-2jxh$rTszOG6EiN;-m@iE} z*xAIxOW?A^&v^;H@}74;XBV83J;@<`z{wrFQ%o*P1h(Zid}!GHC{Jbu!fRAYlsq4I zIpiwtEToZitx`4Z$k&Fq`>v#W6uJ}GhLF4;&pZq(rPz=#T?IAJFKJ|2tA_IeUE*$! zxP+%TUo5Jw`01~?q|N~T47ZcLBlf9t?lLw>-URinQbQn=hg7+NYNnL$?57^1^m>1o z)H!LvKGDombhhjIq_QEb>iGTEW432xzv|pE?pw#Z(&ByB@Turph3CuT6=zSqIYD-B z@q@>QAV)Lehqf1Ggmi(dXQ)p#*AbP!0>N&h9mAH;sVVV53yLdd3`P|u%fBrSv7$s& z_f#)F-Pb}mNjRHlE^zFt)akiu7jT|h@U>d@{vf^L9r$~Pux&Fp|RnM0Bq|aQZBT zcr%uu@Mi6}KSXYc*tcZ$WTqdv(xHadV>)tuW_7Vefp{WC10U}U@SmY7kk`-zM~!T? z0@*$z%VqDhEKC2hBFX#bz|1_lH`5Y2f+C$n#chV|qg6HQ;E{W8@I^~M8P#+e_m^u- zkhyxyNfh#8pIt zp9567G1Dda3d7CbAFvV5vLg=-Kh{)I