1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 |
-- Miscellaneous data
local ARTIFACT_STATE_ALLIANCE_TO_SOUND_ID =
{
[ OBJECTIVE_CONTROL_EVENT_CAPTURED ] =
{
[ ALLIANCE_ALDMERI_DOMINION ] = SOUNDS . ELDER_SCROLL_CAPTURED_BY_ALDMERI ,
[ ALLIANCE_EBONHEART_PACT ] = SOUNDS . ELDER_SCROLL_CAPTURED_BY_EBONHEART ,
[ ALLIANCE_DAGGERFALL_COVENANT ] = SOUNDS . ELDER_SCROLL_CAPTURED_BY_DAGGERFALL ,
} ,
}
local ARTIFACT_EVENT_DESCRIPTIONS =
{
[ OBJECTIVE_CONTROL_EVENT_FLAG_TAKEN ] = function ( artifactName , keepId , playerName , alliance , allianceName , campaignId )
if campaignId ~= 0 then
if keepId ~= 0 then
return zo_strformat ( SI_CAMPAIGN_ARTIFACT_TAKEN , playerName , allianceName , artifactName , GetKeepName ( keepId ) , GetCampaignName ( campaignId ) )
else
return zo_strformat ( SI_CAMPAIGN_ARTIFACT_PICKED_UP , playerName , allianceName , artifactName , GetCampaignName ( campaignId ) )
end
else
if keepId ~= 0 then
else
end
end
end ,
[ OBJECTIVE_CONTROL_EVENT_CAPTURED ] = function ( artifactName , keepId , playerName , alliance , allianceName , campaignId )
local soundId = ARTIFACT_STATE_ALLIANCE_TO_SOUND_ID [ OBJECTIVE_CONTROL_EVENT_CAPTURED ] [ alliance ]
if campaignId ~= 0 then
return zo_strformat ( SI_CAMPAIGN_ARTIFACT_CAPTURED , playerName , allianceName , artifactName , GetKeepName ( keepId ) , GetCampaignName ( campaignId ) ) , soundId
else
return zo_strformat ( SI_ARTIFACT_CAPTURED , playerName , allianceName , artifactName , GetKeepName ( keepId ) ) , soundId
end
end ,
[ OBJECTIVE_CONTROL_EVENT_FLAG_RETURNED ] = function ( artifactName , keepId , playerName , alliance , allianceName , campaignId )
if campaignId ~= 0 then
return zo_strformat ( SI_CAMPAIGN_ARTIFACT_RETURNED , playerName , allianceName , artifactName , GetKeepName ( keepId ) , GetCampaignName ( campaignId ) )
else
return zo_strformat ( SI_ARTIFACT_RETURNED , playerName , allianceName , artifactName , GetKeepName ( keepId ) )
end
end ,
[ OBJECTIVE_CONTROL_EVENT_FLAG_RETURNED_BY_TIMER ] = function ( artifactName , keepId , playerName , alliance , allianceName , campaignId )
if campaignId ~= 0 then
return zo_strformat ( SI_CAMPAIGN_ARTIFACT_RETURNED_BY_TIMER , artifactName , GetKeepName ( keepId ) , GetCampaignName ( campaignId ) )
else
end
end ,
[ OBJECTIVE_CONTROL_EVENT_FLAG_DROPPED ] = function ( artifactName , keepId , playerName , alliance , allianceName , campaignId )
if campaignId ~= 0 then
return zo_strformat ( SI_CAMPAIGN_ARTIFACT_DROPPED , playerName , allianceName , artifactName , GetCampaignName ( campaignId ) )
else
end
end ,
}
function GetAvAArtifactEventDescription ( artifactName , keepId , playerName , playerAlliance , event , campaignId )
return eventHandler ( artifactName , keepId , playerName , playerAlliance , GetColoredAllianceName ( playerAlliance ) , campaignId )
end
end
if campaignId ~= 0 then
return zo_strformat ( SI_CAMPAIGN_KEEP_CAPTURED , GetColoredAllianceName ( newOwner ) , GetKeepName ( keepId ) , GetColoredAllianceName ( oldOwner ) , GetCampaignName ( campaignId ) )
else
return zo_strformat ( SI_KEEP_CAPTURED , GetColoredAllianceName ( newOwner ) , GetKeepName ( keepId ) , GetColoredAllianceName ( oldOwner ) )
end
end
if open then
else
end
end
local CORONATION_SOUND =
{
[ ALLIANCE_ALDMERI_DOMINION ] = SOUNDS . EMPEROR_CORONATED_ALDMERI ,
[ ALLIANCE_EBONHEART_PACT ] = SOUNDS . EMPEROR_CORONATED_EBONHEART ,
[ ALLIANCE_DAGGERFALL_COVENANT ] = SOUNDS . EMPEROR_CORONATED_DAGGERFALL ,
}
local DEPOSED_SOUND =
{
[ ALLIANCE_ALDMERI_DOMINION ] = SOUNDS . EMPEROR_DEPOSED_ALDMERI ,
[ ALLIANCE_EBONHEART_PACT ] = SOUNDS . EMPEROR_DEPOSED_EBONHEART ,
[ ALLIANCE_DAGGERFALL_COVENANT ] = SOUNDS . EMPEROR_DEPOSED_DAGGERFALL ,
}
function GetCoronateEmperorEventDescription ( campaignId , playerCharacterName , playerAlliance , playerDisplayName )
local userFacingName = IsInGamepadPreferredMode ( ) and ZO_FormatUserFacingDisplayName ( playerDisplayName ) or playerCharacterName
return zo_strformat ( SI_CAMPAIGN_CORONATE_EMPEROR , GetCampaignName ( campaignId ) , userFacingName , GetColoredAllianceName ( playerAlliance ) ) , CORONATION_SOUND [ playerAlliance ]
end
function GetDeposeEmperorEventDescription ( campaignId , playerCharacterName , playerAlliance , abdication , playerDisplayName )
local userFacingName = IsInGamepadPreferredMode ( ) and ZO_FormatUserFacingDisplayName ( playerDisplayName ) or playerCharacterName
if abdication then
return zo_strformat ( SI_CAMPAIGN_ABDICATE_EMPEROR , GetCampaignName ( campaignId ) , userFacingName , GetColoredAllianceName ( playerAlliance ) ) , SOUNDS . EMPEROR_ABDICATED
else
return zo_strformat ( SI_CAMPAIGN_DEPOSE_EMPEROR , GetCampaignName ( campaignId ) , userFacingName , GetColoredAllianceName ( playerAlliance ) ) , DEPOSED_SOUND [ playerAlliance ]
end
end
return zo_strformat ( SI_CAMPAIGN_CLAIM_KEEP_EVENT , GetCampaignName ( campaignId ) , GetKeepName ( keepId ) , guildName , playerName ) , SOUNDS . GUILD_KEEP_CLAIMED
end
return zo_strformat ( SI_CAMPAIGN_RELEASE_KEEP_EVENT , GetCampaignName ( campaignId ) , GetKeepName ( keepId ) , guildName , playerName ) , SOUNDS . GUILD_KEEP_RELEASED
end
return zo_strformat ( SI_CAMPAIGN_LOST_KEEP_EVENT , GetCampaignName ( campaignId ) , GetKeepName ( keepId ) , guildName ) , SOUNDS . GUILD_KEEP_LOST
end
-- Return format is
-- Category - The alert category to send the alert to
-- SoundId - An optional sound id to play along with the message
-- Message - The message to alert (either a string or a function that returns a string that will be called every frame)
-- (Optional) Message2 - For combined text, the secondary text to display (either a string or a function that returns a string that will be called every frame)
-- (Optional) icon - An icon to be displayed with the announcement
-- (Optional) expiringCallback - A callback to be called when the announcement has begun fading out
-- (optional) bar params
-- (optional) lifespan of the message to be on the screen in milliseconds
--
-- NOTE: If a later optional return is used, the previous optional returns must be used as well (even if they return nil)
-- If Category or Message is nil, then nothing will be shown. Simply not returning anything tells the system to not do anything.
local CENTER_SCREEN_EVENT_HANDLERS = { }
-- TODO: Remove progress bar validation logic
-- We're trying to track down info for ESO-558876
local INVALID_VALUE = - 1
internalassert ( false , string . format ( "CSAH Bad Bar Params; barType: %d. Triggering Event: %d." , barType or INVALID_VALUE , barParams : GetTriggeringEvent ( ) or INVALID_VALUE ) )
end
end
local function GetRelevantBarParams ( level , previousExperience , currentExperience , championPoints , triggeringEvent )
local championXpToNextPoint
end
if ( championXpToNextPoint ~= nil and currentExperience > previousExperience ) then
local barParams = CENTER_SCREEN_ANNOUNCE : CreateBarParams ( PPB_CP , championPoints , previousExperience , currentExperience )
return barParams
else
if ( levelSize ~= nil and currentExperience > previousExperience ) then
local barParams = CENTER_SCREEN_ANNOUNCE : CreateBarParams ( PPB_XP , level , previousExperience , currentExperience )
return barParams
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_QUEST_ADDED ] = function ( journalIndex , questName , objectiveName )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . QUEST_ACCEPTED )
if iconTexture then
messageParams : SetText ( zo_strformat ( SI_NOTIFYTEXT_QUEST_ACCEPT_WITH_ICON , zo_iconFormat ( iconTexture , "75%" , "75%" ) , questName ) )
else
end
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_QUEST_COMPLETE ] = function ( questName , level , previousExperience , currentExperience , championPoints , questType , zoneDisplayType )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . QUEST_COMPLETED )
if iconTexture then
messageParams : SetText ( zo_strformat ( SI_NOTIFYTEXT_QUEST_COMPLETE_WITH_ICON , zo_iconFormat ( iconTexture , "75%" , "75%" ) , questName ) )
else
end
messageParams : SetBarParams ( GetRelevantBarParams ( level , previousExperience , currentExperience , championPoints , EVENT_QUEST_COMPLETE ) )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_OBJECTIVE_COMPLETED ] = function ( zoneIndex , poiIndex , level , previousExperience , currentExperience , championPoints )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . OBJECTIVE_COMPLETED )
messageParams : SetBarParams ( GetRelevantBarParams ( level , previousExperience , currentExperience , championPoints , EVENT_OBJECTIVE_COMPLETED ) )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_QUEST_CONDITION_COUNTER_CHANGED ] = function ( journalIndex , questName , conditionText , conditionType , currConditionVal , newConditionVal , conditionMax , isFailCondition , stepOverrideText , isPushed , isComplete , isConditionComplete , isStepHidden , isConditionCompleteChanged )
if isStepHidden or ( isPushed and isComplete ) or ( currConditionVal >= newConditionVal ) then
return
end
if newConditionVal ~= currConditionVal and not isFailCondition then
messageParams : SetSound ( isConditionComplete and SOUNDS . QUEST_OBJECTIVE_COMPLETE or SOUNDS . QUEST_OBJECTIVE_INCREMENT )
end
if isConditionComplete and conditionType == QUEST_CONDITION_TYPE_GIVE_ITEM then
elseif stepOverrideText == "" then
if isFailCondition then
if conditionMax > 1 then
messageParams : SetText ( zo_strformat ( SI_ALERTTEXT_QUEST_CONDITION_FAIL , conditionText , newConditionVal , conditionMax ) )
else
end
else
if conditionMax > 1 and newConditionVal < conditionMax then
messageParams : SetText ( zo_strformat ( SI_ALERTTEXT_QUEST_CONDITION_UPDATE , conditionText , newConditionVal , conditionMax ) )
else
end
end
else
if isFailCondition then
else
end
end
if isConditionComplete then
else
end
return messageParams
end
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_SMALL_TEXT , SOUNDS . QUEST_OBJECTIVE_COMPLETE )
return messageParams
end
end
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . ACHIEVEMENT_AWARDED )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_BROADCAST ] = function ( message )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_SMALL_TEXT , SOUNDS . MESSAGE_BROADCAST )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_DISCOVERY_EXPERIENCE ] = function ( subzoneName , level , previousExperience , currentExperience , championPoints )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . OBJECTIVE_DISCOVERED )
if currentExperience > previousExperience then
messageParams : SetBarParams ( GetRelevantBarParams ( level , previousExperience , currentExperience , championPoints , EVENT_DISCOVERY_EXPERIENCE ) )
end
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_POI_DISCOVERED ] = function ( zoneIndex , poiIndex )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . OBJECTIVE_ACCEPTED )
return messageParams
end
local XP_GAIN_SHOW_REASONS =
{
[ PROGRESS_REASON_PVP_EMPEROR ] = true ,
[ PROGRESS_REASON_DUNGEON_CHALLENGE ] = true ,
[ PROGRESS_REASON_OVERLAND_BOSS_KILL ] = true ,
[ PROGRESS_REASON_SCRIPTED_EVENT ] = true ,
[ PROGRESS_REASON_LOCK_PICK ] = true ,
[ PROGRESS_REASON_LFG_REWARD ] = true ,
}
local XP_GAIN_SHOW_SOUNDS =
{
[ PROGRESS_REASON_OVERLAND_BOSS_KILL ] = SOUNDS . OVERLAND_BOSS_KILL ,
[ PROGRESS_REASON_LOCK_PICK ] = SOUNDS . LOCKPICKING_SUCCESS_CELEBRATION ,
}
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_EXPERIENCE_GAIN ] = function ( reason , level , previousExperience , currentExperience , championPoints )
if XP_GAIN_SHOW_REASONS [ reason ] then
local barParams = GetRelevantBarParams ( level , previousExperience , currentExperience , championPoints , EVENT_EXPERIENCE_GAIN )
if barParams then
return messageParams
end
end
if levelSize ~= nil and currentExperience >= levelSize then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . LEVEL_UP )
local barParams = CENTER_SCREEN_ANNOUNCE : CreateBarParams ( PPB_XP , level + 1 , currentExperience - levelSize , currentExperience - levelSize )
return messageParams
end
end
local COMPANION_NAME_COLOR = ZO_ColorDef : New ( GetInterfaceColor ( INTERFACE_COLOR_TYPE_UNIT_REACTION_COLOR , UNIT_REACTION_COLOR_COMPANION ) )
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_COMPANION_EXPERIENCE_GAIN ] = function ( companionId , previousLevel , previousExperience , currentExperience )
if currentLevel > previousLevel then
local secondaryTextLines = { }
table . insert ( secondaryTextLines , zo_strformat ( SI_COMPANION_LEVEL_UP_NAME_CSA , zo_iconFormat ( collectibleIcon , "100%" , "100%" ) , COMPANION_NAME_COLOR : Colorize ( GetCompanionName ( companionId ) ) ) )
if currentNumSlots > previousNumSlots then
end
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . LEVEL_UP )
messageParams : SetText ( GetString ( SI_COMPANION_LEVEL_UP_NOTIFICATION ) , table . concat ( secondaryTextLines , "\n" ) )
return messageParams
end
end
local barParams = CENTER_SCREEN_ANNOUNCE : CreateBarParams ( PPB_CP , championPoints , currentChampionXP , currentChampionXP )
return barParams
end
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . ENLIGHTENED_STATE_GAINED )
messageParams : SetText ( zo_strformat ( SI_ENLIGHTENED_STATE_GAINED_HEADER ) , zo_strformat ( SI_ENLIGHTENED_STATE_GAINED_DESCRIPTION ) )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ENLIGHTENED_STATE_GAINED ] = function ( )
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ENLIGHTENED_STATE_LOST ] = function ( )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . ENLIGHTENED_STATE_LOST )
return messageParams
end
end
local firstActivation = true
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_PLAYER_ACTIVATED ] = function ( )
if firstActivation then
firstActivation = false
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_SKILL_RANK_UPDATE ] = function ( skillType , skillLineIndex , rank )
-- crafting skill updates get deferred if they're increased while crafting animations are in progress
-- ZO_Skills_TieSkillInfoHeaderToCraftingSkill handles triggering the deferred center screen announce in that case
if skillType ~= SKILL_TYPE_RACIAL and ( skillType ~= SKILL_TYPE_TRADESKILL or not ZO_CraftingUtils_IsPerformingCraftProcess ( ) ) then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . SKILL_LINE_LEVELED_UP )
return messageParams
end
end
end
local GUILD_SKILL_SHOW_REASONS =
{
[ PROGRESS_REASON_DARK_ANCHOR_CLOSED ] = true ,
[ PROGRESS_REASON_DARK_FISSURE_CLOSED ] = true ,
[ PROGRESS_REASON_BOSS_KILL ] = true ,
}
local GUILD_SKILL_SHOW_SOUNDS =
{
[ PROGRESS_REASON_DARK_ANCHOR_CLOSED ] = SOUNDS . SKILL_XP_DARK_ANCHOR_CLOSED ,
[ PROGRESS_REASON_DARK_FISSURE_CLOSED ] = SOUNDS . SKILL_XP_DARK_FISSURE_CLOSED ,
[ PROGRESS_REASON_BOSS_KILL ] = SOUNDS . SKILL_XP_BOSS_KILLED ,
}
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_SKILL_XP_UPDATE ] = function ( skillType , skillLineIndex , reason , rank , previousXP , currentXP )
if ( skillType == SKILL_TYPE_GUILD and GUILD_SKILL_SHOW_REASONS [ reason ] ) or reason == PROGRESS_REASON_JUSTICE_SKILL_EVENT then
if rankStartXP ~= nil then
local barParams = CENTER_SCREEN_ANNOUNCE : CreateBarParams ( barType , rank , previousXP - rankStartXP , currentXP - rankStartXP )
else
internalassert ( false , string . format ( "No Rank Start XP %d %d %d %d %d %d" , skillType , skillLineIndex , reason , rank , previousXP , currentXP ) )
end
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ABILITY_PROGRESSION_RANK_UPDATE ] = function ( progressionIndex , rank , maxRank , morph )
if atMorph then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . ABILITY_MORPH_AVAILABLE )
return messageParams
else
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_SMALL_TEXT , SOUNDS . ABILITY_RANK_UP )
return messageParams
end
end
local SUPPRESS_SKILL_POINT_CSA_REASONS =
{
[ SKILL_POINT_CHANGE_REASON_IGNORE ] = true ,
[ SKILL_POINT_CHANGE_REASON_SKILL_RESPEC ] = true ,
[ SKILL_POINT_CHANGE_REASON_SKILL_RESET ] = true ,
}
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_SKILL_POINTS_CHANGED ] = function ( oldPoints , newPoints , oldPartialPoints , newPartialPoints , changeReason )
local numSkillPointsGained = newPoints - oldPoints
-- check if the skill point change was due to skyshards
if oldPartialPoints ~= newPartialPoints or changeReason == SKILL_POINT_CHANGE_REASON_SKYSHARD_INSTANT_UNLOCK then
if numSkillPointsGained < 0 then
return
end
local numSkyshardsGained = ( newPoints * NUM_PARTIAL_SKILL_POINTS_FOR_FULL + newPartialPoints ) - ( oldPoints * NUM_PARTIAL_SKILL_POINTS_FOR_FULL + oldPartialPoints )
-- if only the partial points changed, message out the new count of skyshard pieces
if newPoints == oldPoints then
messageParams : SetText ( largeText , zo_strformat ( SI_SKYSHARD_GAINED_POINTS , newPartialPoints , NUM_PARTIAL_SKILL_POINTS_FOR_FULL ) )
else
-- if there are no leftover skyshard pieces, don't include them in the message
if newPartialPoints == 0 then
else
messageText = zo_strformat ( SI_SKILL_POINT_AND_SKYSHARD_PIECES_GAINED , numSkillPointsGained , newPartialPoints , NUM_PARTIAL_SKILL_POINTS_FOR_FULL )
end
end
return messageParams
elseif numSkillPointsGained > 0 then
if not SUPPRESS_SKILL_POINT_CSA_REASONS [ changeReason ] then
return messageParams
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_LORE_BOOK_LEARNED_SKILL_EXPERIENCE ] = function ( categoryIndex , collectionIndex , bookIndex , guildReputationIndex , skillType , skillLineIndex , rank , previousXP , currentXP )
if guildReputationIndex > 0 then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . BOOK_ACQUIRED )
local barParams = CENTER_SCREEN_ANNOUNCE : CreateBarParams ( barType , rank , previousXP - rankStartXP , currentXP - rankStartXP )
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_LORE_COLLECTION_COMPLETED ] = function ( categoryIndex , collectionIndex , bookIndex , guildReputationIndex , isMaxRank )
if guildReputationIndex == 0 or isMaxRank then
-- Only fire this message if we're not part of the guild or at max level within the guild.
local collectionName , description , numKnownBooks , totalBooks , hidden = GetLoreCollectionInfo ( categoryIndex , collectionIndex )
if not hidden then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . BOOK_COLLECTION_COMPLETED )
messageParams : SetText ( GetString ( SI_LORE_LIBRARY_COLLECTION_COMPLETED_LARGE ) , zo_strformat ( SI_LORE_LIBRARY_COLLECTION_COMPLETED_SMALL , collectionName ) )
return messageParams
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_LORE_COLLECTION_COMPLETED_SKILL_EXPERIENCE ] = function ( categoryIndex , collectionIndex , guildReputationIndex , skillType , skillLineIndex , rank , previousXP , currentXP )
if guildReputationIndex > 0 then
local collectionName , description , numKnownBooks , totalBooks , hidden = GetLoreCollectionInfo ( categoryIndex , collectionIndex )
if not hidden then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . BOOK_COLLECTION_COMPLETED )
local barParams = CENTER_SCREEN_ANNOUNCE : CreateBarParams ( barType , rank , previousXP - rankStartXP , currentXP - rankStartXP )
messageParams : SetText ( GetString ( SI_LORE_LIBRARY_COLLECTION_COMPLETED_LARGE ) , zo_strformat ( SI_LORE_LIBRARY_COLLECTION_COMPLETED_SMALL , collectionName ) )
return messageParams
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_PLEDGE_OF_MARA_RESULT ] = function ( result , characterName , displayName )
if result == PLEDGE_OF_MARA_RESULT_PLEDGED then
messageParams : SetText ( GetString ( SI_RITUAL_OF_MARA_COMPLETION_ANNOUNCE_LARGE ) , zo_strformat ( SI_RITUAL_OF_MARA_COMPLETION_ANNOUNCE_SMALL , ZO_FormatUserFacingDisplayName ( displayName ) , characterName ) )
return messageParams
end
end
if lifespan then
end
return messageParams
end
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ARTIFACT_CONTROL_STATE ] = function ( artifactName , keepId , characterName , playerAlliance , controlEvent , controlState , campaignId , displayName )
local nameToShow = IsInGamepadPreferredMode ( ) and ZO_FormatUserFacingDisplayName ( displayName ) or characterName
local description , soundId = GetAvAArtifactEventDescription ( artifactName , keepId , nameToShow , playerAlliance , controlEvent , campaignId )
return CreateAvAMessageParams ( soundId , description , CENTER_SCREEN_ANNOUNCE_TYPE_ARTIFACT_CONTROL_STATE )
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_DAEDRIC_ARTIFACT_OBJECTIVE_SPAWNED_BUT_NOT_REVEALED ] = function ( daedricArtifactId )
return CreateAvAMessageParams ( SOUNDS . DAEDRIC_ARTIFACT_SPAWNED , description , CENTER_SCREEN_ANNOUNCE_TYPE_DAEDRIC_ARTIFACT_OBJECTIVE_STATE_CHANGED )
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_DAEDRIC_ARTIFACT_OBJECTIVE_STATE_CHANGED ] = function ( objectiveKeepId , objectiveObjectiveId , battlegroundContext , objectiveControlEvent , objectiveControlState , holderAlliance , lastHolderAlliance , pinType , daedricArtifactId , lastObjectiveControlState )
if lastObjectiveControlState == OBJECTIVE_CONTROL_STATE_UNKNOWN and objectiveControlState ~= OBJECTIVE_CONTROL_STATE_UNKNOWN then
-- Revealed (UNKNOWN -> !UNKNOWN)
return CreateAvAMessageParams ( SOUNDS . DAEDRIC_ARTIFACT_REVEALED , description , CENTER_SCREEN_ANNOUNCE_TYPE_DAEDRIC_ARTIFACT_OBJECTIVE_STATE_CHANGED )
elseif lastObjectiveControlState ~= OBJECTIVE_CONTROL_STATE_UNKNOWN and objectiveControlState == OBJECTIVE_CONTROL_STATE_UNKNOWN then
-- Despawned (!UNKNOWN -> UNKNOWN)
return CreateAvAMessageParams ( SOUNDS . DAEDRIC_ARTIFACT_DESPAWNED , description , CENTER_SCREEN_ANNOUNCE_TYPE_DAEDRIC_ARTIFACT_OBJECTIVE_STATE_CHANGED )
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_KEEP_GATE_STATE_CHANGED ] = function ( keepId , open )
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_CORONATE_EMPEROR_NOTIFICATION ] = function ( campaignId , playerCharacterName , playerAlliance , playerDisplayName )
local description , soundId = GetCoronateEmperorEventDescription ( campaignId , playerCharacterName , playerAlliance , playerDisplayName )
return CreateAvAMessageParams ( soundId , description , CENTER_SCREEN_ANNOUNCE_TYPE_CORONATE_EMPEROR , 5000 )
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_DEPOSE_EMPEROR_NOTIFICATION ] = function ( campaignId , playerCharacterName , playerAlliance , abdication , playerDisplayName )
local description , soundId = GetDeposeEmperorEventDescription ( campaignId , playerCharacterName , playerAlliance , abdication , playerDisplayName )
return CreateAvAMessageParams ( soundId , description , CENTER_SCREEN_ANNOUNCE_TYPE_DEPOSE_EMPEROR , 5000 )
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_REVENGE_KILL ] = function ( killedCharacterName , killedDisplayName )
local killedName = IsInGamepadPreferredMode ( ) and ZO_FormatUserFacingDisplayName ( killedDisplayName ) or killedCharacterName
local soundId = nil
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_AVENGE_KILL ] = function ( avengedCharacterName , killedCharacterName , avengedDisplayName , killedDisplayName )
local avengedName = avengedCharacterName
local killedName = killedCharacterName
end
local soundId = nil
end
end
-- Begin Battleground Event Handlers --
local function ShouldShowBattlegroundObjectiveCSA ( objectiveKeepId , objectiveId , battlegroundContext )
return IsBattlegroundObjective ( objectiveKeepId , objectiveId , battlegroundContext ) and GetCurrentBattlegroundState ( ) == BATTLEGROUND_STATE_RUNNING
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_CAPTURE_AREA_STATE_CHANGED ] = function ( objectiveKeepId , objectiveId , battlegroundContext , objectiveName , objectiveControlEvent , objectiveControlState , owningAlliance , pinType )
if objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_CAPTURED then
--150% because the icon textures contain a good bit of empty space
text = zo_strformat ( SI_BATTLEGROUND_CAPTURE_AREA_CAPTURED , GetColoredBattlegroundYourTeamText ( owningAlliance ) , captureAreaIcon )
soundId = SOUNDS . BATTLEGROUND_CAPTURE_AREA_CAPTURED_OWN_TEAM
else
text = zo_strformat ( SI_BATTLEGROUND_CAPTURE_AREA_CAPTURED , GetColoredBattlegroundEnemyTeamText ( owningAlliance ) , captureAreaIcon )
soundId = SOUNDS . BATTLEGROUND_CAPTURE_AREA_CAPTURED_OTHER_TEAM
end
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_CAPTURE_AREA_SPAWNED ] = function ( objectiveKeepId , objectiveId , battlegroundContext , pinType , hasMoved )
--150% because the icon textures contain a good bit of empty space
if hasMoved then
soundId = SOUNDS . BATTLEGROUND_CAPTURE_AREA_MOVED
else
soundId = SOUNDS . BATTLEGROUND_CAPTURE_AREA_SPAWNED
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_CAPTURE_FLAG_STATE_CHANGED ] = function ( objectiveKeepId , objectiveId , battlegroundContext , objectiveName , objectiveControlEvent , objectiveControlState , originalOwnerAlliance , holderAlliance , lastHolderAlliance , pinType )
--150% because the icon textures contain a good bit of empty space
if objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_FLAG_TAKEN then
text = zo_strformat ( SI_BATTLEGROUND_FLAG_PICKED_UP , GetColoredBattlegroundYourTeamText ( holderAlliance ) , flagIcon )
soundId = SOUNDS . BATTLEGROUND_CAPTURE_FLAG_TAKEN_OWN_TEAM
else
text = zo_strformat ( SI_BATTLEGROUND_FLAG_PICKED_UP , GetColoredBattlegroundEnemyTeamText ( holderAlliance ) , flagIcon )
soundId = SOUNDS . BATTLEGROUND_CAPTURE_FLAG_TAKEN_OTHER_TEAM
end
elseif objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_FLAG_DROPPED then
text = zo_strformat ( SI_BATTLEGROUND_FLAG_DROPPED , GetColoredBattlegroundYourTeamText ( lastHolderAlliance ) , flagIcon )
soundId = SOUNDS . BATTLEGROUND_CAPTURE_FLAG_DROPPED_OWN_TEAM
else
text = zo_strformat ( SI_BATTLEGROUND_FLAG_DROPPED , GetColoredBattlegroundEnemyTeamText ( lastHolderAlliance ) , flagIcon )
soundId = SOUNDS . BATTLEGROUND_CAPTURE_FLAG_DROPPED_OTHER_TEAM
end
elseif objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_FLAG_RETURNED or objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_FLAG_RETURNED_BY_TIMER then
return CreatePvPMessageParams ( SOUNDS . BATTLEGROUND_CAPTURE_FLAG_RETURNED , zo_strformat ( SI_BATTLEGROUND_FLAG_RETURNED , flagIcon ) , CENTER_SCREEN_ANNOUNCE_TYPE_BATTLEGROUND_OBJECTIVE )
elseif objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_CAPTURED then
text = zo_strformat ( SI_BATTLEGROUND_FLAG_CAPTURED , GetColoredBattlegroundYourTeamText ( lastHolderAlliance ) , flagIcon )
soundId = SOUNDS . BATTLEGROUND_CAPTURE_FLAG_CAPTURED_BY_OWN_TEAM
else
text = zo_strformat ( SI_BATTLEGROUND_FLAG_CAPTURED , GetColoredBattlegroundEnemyTeamText ( lastHolderAlliance ) , flagIcon )
soundId = SOUNDS . BATTLEGROUND_CAPTURE_FLAG_CAPTURED_BY_OTHER_TEAM
end
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_MURDERBALL_STATE_CHANGED ] = function ( objectiveKeepId , objectiveId , battlegroundContext , objectiveName , objectiveControlEvent , objectiveControlState , holderAlliance , lastHolderAlliance , holderRawCharacterName , holderDisplayName , lastHolderRawCharacterName , lastHolderDisplayName , pinType )
--150% because the icon textures contain a good bit of empty space
if objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_FLAG_TAKEN then
text = zo_strformat ( SI_BATTLEGROUND_MURDERBALL_PICKED_UP , GetColoredBattlegroundYourTeamText ( holderAlliance ) , murderballIcon )
soundId = SOUNDS . BATTLEGROUND_MURDERBALL_TAKEN_OWN_TEAM
else
text = zo_strformat ( SI_BATTLEGROUND_MURDERBALL_PICKED_UP , GetColoredBattlegroundEnemyTeamText ( holderAlliance ) , murderballIcon )
soundId = SOUNDS . BATTLEGROUND_MURDERBALL_TAKEN_OTHER_TEAM
end
elseif objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_FLAG_DROPPED then
text = zo_strformat ( SI_BATTLEGROUND_MURDERBALL_DROPPED , GetColoredBattlegroundYourTeamText ( lastHolderAlliance ) , murderballIcon )
soundId = SOUNDS . BATTLEGROUND_MURDERBALL_DROPPED_OWN_TEAM
else
text = zo_strformat ( SI_BATTLEGROUND_MURDERBALL_DROPPED , GetColoredBattlegroundEnemyTeamText ( lastHolderAlliance ) , murderballIcon )
soundId = SOUNDS . BATTLEGROUND_MURDERBALL_DROPPED_OTHER_TEAM
end
elseif objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_FLAG_RETURNED or objectiveControlEvent == OBJECTIVE_CONTROL_EVENT_FLAG_RETURNED_BY_TIMER then
return CreatePvPMessageParams ( SOUNDS . BATTLEGROUND_MURDERBALL_RETURNED , zo_strformat ( SI_BATTLEGROUND_FLAG_RETURNED , murderballIcon ) , CENTER_SCREEN_ANNOUNCE_TYPE_BATTLEGROUND_OBJECTIVE )
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_BATTLEGROUND_KILL ] = function ( killedPlayerCharacterName , killedPlayerDisplayName , killedPlayerBattlegroundAlliance , killingPlayerCharacterName , killingPlayerDisplayName , killingPlayerBattlegroundAlliance , battlegroundKillType )
if battlegroundId ~= 0 then
if gameType == BATTLEGROUND_GAME_TYPE_DEATHMATCH then
local killedPlayerName = ZO_GetPrimaryPlayerName ( killedPlayerDisplayName , killedPlayerCharacterName )
local coloredKilledPlayerName = GetBattlegroundAllianceColor ( killedPlayerBattlegroundAlliance ) : Colorize ( killedPlayerName )
if battlegroundKillType == BATTLEGROUND_KILL_TYPE_KILLING_BLOW or battlegroundKillType == BATTLEGROUND_KILL_TYPE_ASSIST then
local you = GetBattlegroundAllianceColor ( killingPlayerBattlegroundAlliance ) : Colorize ( GetString ( SI_BATTLEGROUND_YOU ) )
if battlegroundKillType == BATTLEGROUND_KILL_TYPE_KILLING_BLOW then
else
end
return CreatePvPMessageParams ( sound , zo_strformat ( format , you , coloredKilledPlayerName ) , CENTER_SCREEN_ANNOUNCE_TYPE_BATTLEGROUND_OBJECTIVE )
elseif battlegroundKillType == BATTLEGROUND_KILL_TYPE_KILLED_BY_MY_TEAM then
return CreatePvPMessageParams ( SOUNDS . BATTLEGROUND_KILL_KILLED_BY_MY_TEAM , zo_strformat ( format , GetColoredBattlegroundYourTeamText ( killingPlayerBattlegroundAlliance ) , coloredKilledPlayerName ) , CENTER_SCREEN_ANNOUNCE_TYPE_BATTLEGROUND_OBJECTIVE )
elseif battlegroundKillType == BATTLEGROUND_KILL_TYPE_STOLEN_BY_ENEMY_TEAM then
return CreatePvPMessageParams ( SOUNDS . BATTLEGROUND_KILL_STOLEN_BY_ENEMY_TEAM , zo_strformat ( format , GetColoredBattlegroundEnemyTeamText ( killingPlayerBattlegroundAlliance ) , coloredKilledPlayerName ) , CENTER_SCREEN_ANNOUNCE_TYPE_BATTLEGROUND_OBJECTIVE )
end
end
end
end
-- End Battleground Event Handlers --
local g_previousEndlessDungeonProgression = { 0 , 0 , 0 } -- Stage, Cycle, Arc
if stage == 1 and cycle == 1 and arc == 1 then
-- Force the initial CSA to roll over from all 0s to all 1s.
previousStage , previousCycle , previousArc = 0 , 0 , 0
end
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_ROLLING_METER_PROGRESS_TEXT )
local stageNarration , cycleNarration , arcNarration = ZO_EndlessDungeonManager . GetProgressionNarrationDescriptions ( stage , cycle , arc )
local progressData =
{
{
iconTexture = arcIcon ,
narrationDescription = arcNarration ,
initialValue = previousArc ,
finalValue = arc ,
} ,
{
iconTexture = cycleIcon ,
narrationDescription = cycleNarration ,
initialValue = previousCycle ,
finalValue = cycle ,
} ,
{
iconTexture = stageIcon ,
narrationDescription = stageNarration ,
initialValue = previousStage ,
finalValue = stage ,
} ,
}
-- Update the previous progression values.
g_previousEndlessDungeonProgression [ 1 ] = stage
g_previousEndlessDungeonProgression [ 2 ] = cycle
g_previousEndlessDungeonProgression [ 3 ] = arc
return messageParams
end
g_previousEndlessDungeonProgression [ 1 ] = stage
g_previousEndlessDungeonProgression [ 2 ] = cycle
g_previousEndlessDungeonProgression [ 3 ] = arc
end
if ENDLESS_DUNGEON_BUFF_TRACKER_KEYBOARD then
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_DISPLAY_ANNOUNCEMENT ] = function ( primaryText , secondaryText , icon , soundId , lifespanMS , category )
soundId = soundId == "" and SOUNDS . DISPLAY_ANNOUNCEMENT or soundId
local messageParams
if category == CSA_CATEGORY_ENDLESS_DUNGEON_STAGE_STARTED_TEXT then
-- Endless Dungeon Progression CSA special case
if not messageParams then
-- The progression did not change; this should never happen.
return
end
else
-- Standard Display Announcement
end
if soundId then
end
end
if lifespanMS > 0 then
end
-- Sanitize text.
if primaryText == "" then
primaryText = nil
end
if secondaryText == "" then
secondaryText = nil
end
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_RAID_TRIAL_STARTED ] = function ( raidName , isWeekly )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . RAID_TRIAL_STARTED )
return messageParams
end
do
local TRIAL_COMPLETE_LIFESPAN_MS = 10000
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_RAID_TRIAL_COMPLETE ] = function ( raidName , score , totalTime )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_RAID_COMPLETE_TEXT , SOUNDS . RAID_TRIAL_COMPLETED )
local formattedTime = ZO_FormatTimeMilliseconds ( totalTime , TIME_FORMAT_STYLE_COLONS , TIME_FORMAT_PRECISION_SECONDS )
messageParams : SetEndOfRaidData ( { score , formattedTime , wasUnderTargetTime , vitalityBonus , zo_strformat ( SI_REVIVE_COUNTER_REVIVES_USED , currentCount , maxCount ) } )
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_RAID_TRIAL_FAILED ] = function ( raidName , score )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . RAID_TRIAL_FAILED )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_RAID_TRIAL_NEW_BEST_SCORE ] = function ( raidName , score , isWeekly )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_SMALL_TEXT , SOUNDS . RAID_TRIAL_NEW_BEST )
messageParams : SetText ( zo_strformat ( isWeekly and SI_TRIAL_NEW_BEST_SCORE_WEEKLY or SI_TRIAL_NEW_BEST_SCORE_LIFETIME , raidName ) )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_RAID_REVIVE_COUNTER_UPDATE ] = function ( currentCount , countDelta )
-- TODO: revisit this once there is a way to properly handle this in client/server code
return
end
if countDelta < 0 then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . RAID_TRIAL_COUNTER_UPDATE )
messageParams : SetText ( zo_strformat ( SI_REVIVE_COUNTER_UPDATED_LARGE , "EsoUI/Art/Trials/VitalityDepletion.dds" ) )
return messageParams
end
end
do
local TRIAL_SCORE_REASON_TO_ASSETS =
{
[ RAID_POINT_REASON_KILL_MINIBOSS ] = { icon = "EsoUI/Art/Trials/trialPoints_normal.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_NORMAL } ,
[ RAID_POINT_REASON_KILL_BOSS ] = { icon = "EsoUI/Art/Trials/trialPoints_veryHigh.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_VERY_HIGH } ,
[ RAID_POINT_REASON_BONUS_ACTIVITY_LOW ] = { icon = "EsoUI/Art/Trials/trialPoints_veryLow.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_VERY_LOW } ,
[ RAID_POINT_REASON_BONUS_ACTIVITY_MEDIUM ] = { icon = "EsoUI/Art/Trials/trialPoints_low.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_LOW } ,
[ RAID_POINT_REASON_BONUS_ACTIVITY_HIGH ] = { icon = "EsoUI/Art/Trials/trialPoints_high.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_HIGH } ,
[ RAID_POINT_REASON_SOLO_ARENA_PICKUP_ONE ] = { icon = "EsoUI/Art/Trials/trialPoints_veryLow.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_VERY_LOW } ,
[ RAID_POINT_REASON_SOLO_ARENA_PICKUP_TWO ] = { icon = "EsoUI/Art/Trials/trialPoints_low.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_LOW } ,
[ RAID_POINT_REASON_SOLO_ARENA_PICKUP_THREE ] = { icon = "EsoUI/Art/Trials/trialPoints_normal.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_NORMAL } ,
[ RAID_POINT_REASON_SOLO_ARENA_PICKUP_FOUR ] = { icon = "EsoUI/Art/Trials/trialPoints_high.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_HIGH } ,
[ RAID_POINT_REASON_SOLO_ARENA_COMPLETE ] = { icon = "EsoUI/Art/Trials/trialPoints_veryHigh.dds" , soundId = SOUNDS . RAID_TRIAL_SCORE_ADDED_VERY_HIGH } ,
}
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_RAID_TRIAL_SCORE_UPDATE ] = function ( scoreUpdateReason , scoreAmount , totalScore )
local reasonAssets = TRIAL_SCORE_REASON_TO_ASSETS [ scoreUpdateReason ]
if reasonAssets then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , reasonAssets . soundId )
return messageParams
end
end
end
do
local CHAMPION_UNLOCKED_LIFESPAN_MS = 12000
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_CHAMPION_LEVEL_ACHIEVED ] = function ( wasChampionSystemUnlocked )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . CHAMPION_POINT_GAINED )
if wasChampionSystemUnlocked then
local barParams = CENTER_SCREEN_ANNOUNCE : CreateBarParams ( PPB_CP , championPoints , currentChampionXP , currentChampionXP )
else
local championXPGained = 0 ;
for i = 0 , ( totalChampionPoints - 1 ) do
end
end
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_CHAMPION_POINT_GAINED ] = function ( pointDelta )
-- adding one so that we are starting from the first gained point instead of the starting champion points
local startingPoints = endingPoints - pointDelta + 1
local championPointsByType =
{
[ CHAMPION_DISCIPLINE_TYPE_WORLD ] = 0 ,
[ CHAMPION_DISCIPLINE_TYPE_COMBAT ] = 0 ,
[ CHAMPION_DISCIPLINE_TYPE_CONDITIONING ] = 0 ,
}
while startingPoints <= endingPoints do
championPointsByType [ pointType ] = championPointsByType [ pointType ] + 1
startingPoints = startingPoints + 1
end
local pointsLines = { }
if amount > 0 then
end
end
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . CHAMPION_POINT_GAINED )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_INVENTORY_BAG_CAPACITY_CHANGED ] = function ( previousCapacity , currentCapacity , previousUpgrade , currentUpgrade )
if previousCapacity > 0 and previousCapacity ~= currentCapacity and previousUpgrade ~= currentUpgrade then
messageParams : SetText ( GetString ( SI_INVENTORY_BAG_UPGRADE_ANOUNCEMENT_TITLE ) , zo_strformat ( SI_INVENTORY_BAG_UPGRADE_ANOUNCEMENT_DESCRIPTION , previousCapacity , currentCapacity ) )
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_INVENTORY_BANK_CAPACITY_CHANGED ] = function ( previousCapacity , currentCapacity , previousUpgrade , currentUpgrade )
if previousCapacity > 0 and previousCapacity ~= currentCapacity and previousUpgrade ~= currentUpgrade then
messageParams : SetText ( GetString ( SI_INVENTORY_BANK_UPGRADE_ANOUNCEMENT_TITLE ) , zo_strformat ( SI_INVENTORY_BANK_UPGRADE_ANOUNCEMENT_DESCRIPTION , previousCapacity , currentCapacity ) )
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_FORCE_RESPEC ] = function ( respecType )
messageParams : SetText ( GetString ( "SI_RESPECTYPE_POINTSRESETTITLE" , respecType ) , GetString ( "SI_RESPECTYPE" , respecType ) )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_CRAFTED_ABILITY_RESET ] = function ( craftedAbilityId , totalNumReset , isLastReset )
local RESET_GROUPING_THRESHOLD = 5
if totalNumReset < RESET_GROUPING_THRESHOLD then
messageParams : SetText ( GetString ( SI_CRAFTED_ABILITY_RESET_ANNOUNCE_TITLE ) , craftedAbilityData : GetFormattedNameWithSkillLine ( ) )
-- Treat these the same way we treat force respec
return messageParams
elseif isLastReset then
messageParams : SetText ( GetString ( SI_CRAFTED_ABILITIES_RESET_ANNOUNCE_TITLE ) , zo_strformat ( SI_CRAFTED_ABILITIES_RESET_ANNOUNCE_BODY , totalNumReset ) )
-- Treat these the same way we treat force respec
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ACTIVITY_FINDER_ACTIVITY_COMPLETE ] = function ( )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . LFG_COMPLETE_ANNOUNCEMENT )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_TRIBUTE_CLUB_RANK_CHANGED ] = function ( newClubRank )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . TRIBUTE_RANK_CHANGE )
messageParams : SetText ( GetString ( SI_TRIBUTE_CLUB_RANK_CHANGE_ANNOUNCEMENT_TITLE ) , zo_strformat ( SI_TRIBUTE_CLUB_RANK_CHANGE_ANNOUNCEMENT_CONTENT , newClubRank + 1 ) )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_DUEL_COUNTDOWN ] = function ( startTimeMS )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_COUNTDOWN_TEXT , SOUNDS . DUEL_START )
return messageParams
end
do
local DUEL_BOUNDARY_WARNING_LIFESPAN_MS = 2000
local DUEL_BOUNDARY_WARNING_UPDATE_TIME_MS = 2100
local lastEventTime = 0
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_SMALL_TEXT , SOUNDS . DUEL_BOUNDARY_WARNING )
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_DUEL_NEAR_BOUNDARY ] = function ( isInWarningArea )
if isInWarningArea then
EVENT_MANAGER : RegisterForUpdate ( "EVENT_DUEL_NEAR_BOUNDARY" , DUEL_BOUNDARY_WARNING_UPDATE_TIME_MS , CheckBoundary )
if nowEventTime > lastEventTime + DUEL_BOUNDARY_WARNING_UPDATE_TIME_MS then
lastEventTime = nowEventTime
end
else
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_DUEL_FINISHED ] = function ( result , wasLocalPlayersResult , opponentCharacterName , opponentDisplayName )
local userFacingName
if wasLocalPlayersResult then
else
end
local localPlayerWonDuel = ( result == DUEL_RESULT_WON and wasLocalPlayersResult ) or
( result == DUEL_RESULT_FORFEIT and not wasLocalPlayersResult )
local localPlayerForfeitDuel = ( result == DUEL_RESULT_FORFEIT and wasLocalPlayersResult )
local resultSound = nil
if localPlayerWonDuel then
resultSound = SOUNDS . DUEL_WON
elseif localPlayerForfeitDuel then
resultSound = SOUNDS . DUEL_FORFEIT
end
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , resultSound )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_RIDING_SKILL_IMPROVEMENT ] = function ( ridingSkill , previous , current , source )
messageParams : SetText ( GetString ( SI_RIDING_SKILL_ANNOUCEMENT_BANNER ) , zo_strformat ( SI_RIDING_SKILL_ANNOUCEMENT_SKILL_INCREASE , GetString ( "SI_RIDINGTRAINTYPE" , ridingSkill ) , previous , current ) )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ESO_PLUS_FREE_TRIAL_STATUS_CHANGED ] = function ( hasFreeTrial )
local soundId
if hasFreeTrial then
soundId = SOUNDS . ESO_PLUS_TRIAL_STARTED
else
soundId = SOUNDS . ESO_PLUS_TRIAL_ENDED
end
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_OUTFIT_CHANGE_RESPONSE ] = function ( result , actorCategory , outfitIndex )
if result == APPLY_OUTFIT_CHANGES_RESULT_SUCCESS then
if outfitManipulator then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . OUTFIT_CHANGES_APPLIED )
return messageParams
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_DAILY_LOGIN_REWARDS_CLAIMED ] = function ( )
local rewardId , quantity = GetDailyLoginRewardInfoForCurrentMonth ( GetDailyLoginNumRewardsClaimedInMonth ( ) )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . DAILY_LOGIN_REWARDS_CLAIM_ANNOUNCEMENT )
local secondaryText = claimedDailyLoginReward : GetQuantity ( ) > 1 and claimedDailyLoginReward : GetFormattedNameWithStack ( ) or claimedDailyLoginReward : GetFormattedName ( )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ANTIQUITY_LEAD_ACQUIRED ] = function ( antiquityId )
local secondaryText = zo_strformat ( SI_ANTIQUITY_LEAD_ACQUIRED_TEXT , antiquityData : GetColorizedName ( ) )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ANTIQUITY_DIGGING_READY_TO_PLAY ] = function ( )
messageParams : SetText ( GetString ( SI_ANTIQUITIES_DIGGING_ANNOUNCEMENT_BEGIN_TITLE ) , GetString ( SI_ANTIQUITIES_DIGGING_ANNOUNCEMENT_BEGIN_TEXT ) )
return messageParams
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ANTIQUITY_DIGGING_ANTIQUITY_UNEARTHED ] = function ( )
--If the game is over then the end of game summary will handle showing this info
if antiquityData then
local title = zo_strformat ( SI_ANTIQUITIES_DIGGING_ANNOUNCEMENT_ANTIQUITY_UNEARTHED_TITLE , antiquityData : GetColorizedName ( ) )
messageParams : SetText ( title , GetString ( SI_ANTIQUITIES_DIGGING_ANNOUNCEMENT_ANTIQUITY_UNEARTHED_TEXT ) )
return messageParams
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ANTIQUITY_DIGGING_BONUS_LOOT_UNEARTHED ] = function ( )
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ANTIQUITY_SCRYING_RESULT ] = function ( result )
--The map handles the case where you improved and unlocked more goals than before
if result == ANTIQUITY_SCRYING_RESULT_NO_PROGRESS or result == ANTIQUITY_SCRYING_RESULT_NO_ADDITIONAL_PROGRESS then
if antiquityData then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_SCRYING_PROGRESS_TEXT )
messageParams : SetScryingProgressData ( numGoalsAchieved , numGoalsAchieved , antiquityData : GetTotalNumGoals ( ) )
return messageParams
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_TIMED_ACTIVITY_PROGRESS_UPDATED ] = function ( timedActivityIndex , previousProgress , currentProgress , complete )
if complete then
if activityData then
if activityName ~= "" then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . ENDEAVOR_COMPLETED )
return messageParams
end
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_TIMED_ACTIVITY_TYPE_PROGRESS_UPDATED ] = function ( activityType , previousNumComplete , currentNumComplete , complete )
if complete then
local messageTitle = zo_strformat ( SI_TIMED_ACTIVITY_TYPE_COMPLETED_CSA , currentNumComplete , maxNumActivities , activityTypeName )
return messageParams
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_ACHIEVEMENTS_COMPLETED_ON_UPGRADE_TO_ACCOUNT_WIDE ] = function ( numCompletedAchievement )
return messageParams
end
local TRIBUTE_GAME_FLOW_STATE_CHANGE_MESSAGE_LIFESPAN_MS = 3000
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_TRIBUTE_GAME_FLOW_STATE_CHANGE ] = function ( gameFlowState )
if gameFlowState == TRIBUTE_GAME_FLOW_STATE_PATRON_DRAFT then
firstPick = playerType ~= TRIBUTE_PLAYER_TYPE_NPC and ZO_FormatUserFacingDisplayName ( firstPick ) or firstPick
messageParams : SetText ( GetString ( SI_TRIBUTE_DRAFTING_PHASE_ANNOUNCEMENT_TITLE ) , ZO_NORMAL_TEXT : Colorize ( zo_strformat ( SI_TRIBUTE_DRAFTING_PHASE_ANNOUNCEMENT_BODY , firstPick ) ) )
return messageParams
end
elseif gameFlowState == TRIBUTE_GAME_FLOW_STATE_PLAYING then
firstPlay = playerType ~= TRIBUTE_PLAYER_TYPE_NPC and ZO_FormatUserFacingDisplayName ( firstPlay ) or firstPlay
messageParams : SetText ( GetString ( SI_TRIBUTE_PLAYING_PHASE_ANNOUNCEMENT_TITLE ) , ZO_NORMAL_TEXT : Colorize ( zo_strformat ( SI_TRIBUTE_PLAYING_PHASE_ANNOUNCEMENT_BODY , firstPlay ) ) )
return messageParams
end
end
local TRIBUTE_OPPONENT_PRESTIGE_MESSAGE_LIFESPAN_MS = 2000
local TRIBUTE_TURN_STARTED_MESSAGE_LIFESPAN_MS = 1600
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_TRIBUTE_PLAYER_TURN_STARTED ] = function ( isLocalPlayer )
if isLocalPlayer then
local showBeginTurn = true
local opponentPrestige = GetTributePlayerPerspectiveResource ( TRIBUTE_PLAYER_PERSPECTIVE_OPPONENT , TRIBUTE_RESOURCE_PRESTIGE )
--If the opponent has at least the amount of prestige required to win then they are close to a prestige victory
local prestigeMessageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . TRIBUTE_TURN_START_OPPONENT_PRESTIGE_VICTORY_NEAR )
opponentName = playerType ~= TRIBUTE_PLAYER_TYPE_NPC and ZO_FormatUserFacingDisplayName ( opponentName ) or opponentName
local messageTitle = zo_strformat ( SI_TRIBUTE_OPPONENT_PRESTIGE_ANNOUNCEMENT_TITLE , opponentName , opponentPrestige )
prestigeMessageParams : SetText ( messageTitle , ZO_NORMAL_TEXT : Colorize ( GetString ( SI_TRIBUTE_OPPONENT_PRESTIGE_ANNOUNCEMENT_BODY ) ) )
showBeginTurn = false
end
local messageSubheading = nil
local opponentFavorCount = GetNumPatronsFavoringPlayerPerspective ( TRIBUTE_PLAYER_PERSPECTIVE_OPPONENT )
-- Is the opponent 1 favor away from victory (ignoring neutral Patron)?
if opponentFavorCount == ( TRIBUTE_PATRON_DRAFT_ID_MAX_VALUE - 1 ) then
local localPlayerFavorCount = GetNumPatronsFavoringPlayerPerspective ( TRIBUTE_PLAYER_PERSPECTIVE_SELF )
-- If the local player doesn't have favor with the last Patron, the opponent is 1 action away from victory
if localPlayerFavorCount == 0 then
opponentName = playerType ~= TRIBUTE_PLAYER_TYPE_NPC and ZO_FormatUserFacingDisplayName ( opponentName ) or opponentName
messageSubheading = ZO_NORMAL_TEXT : Colorize ( zo_strformat ( SI_TRIBUTE_OPPONENT_FAVOR_ANNOUNCEMENT_BODY , opponentName ) )
--When the opponent is close to both a prestige and patron victory, we want to show both CSAs, so set this back to true
showBeginTurn = true
end
end
--If we are showing the prestige CSA, only show the begin turn CSA if we also need to display the patron victory message
if showBeginTurn then
return messageParams
end
end
end
CENTER_SCREEN_EVENT_HANDLERS [ EVENT_CONSOLIDATED_STATION_SETS_UPDATED ] = function ( craftingStationFurnitureId )
end
local unlockedSetIds = { }
end
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . CONSOLIDATED_SMITHING_SET_ADDED )
local numUnlockedSetIds = # unlockedSetIds
if numUnlockedSetIds == 1 then
local messageSubheading = zo_strformat ( SI_SMITHING_CONSOLIDATED_STATION_SETS_UPDATED_SINGLE_SET_MESSAGE , setName )
return messageParams
elseif numUnlockedSetIds > 1 then
local messageSubheading = zo_strformat ( SI_SMITHING_CONSOLIDATED_STATION_SETS_UPDATED_MULTI_SET_MESSAGE , numUnlockedSetIds )
return messageParams
end
end
end
return CENTER_SCREEN_EVENT_HANDLERS
end
return CENTER_SCREEN_EVENT_HANDLERS [ eventId ]
end
-- Lower-priority events
ZO_CenterScreenAnnounce_SetPriority ( CENTER_SCREEN_ANNOUNCE_TYPE_DAEDRIC_ARTIFACT_OBJECTIVE_STATE_CHANGED )
ZO_CenterScreenAnnounce_SetPriority ( CENTER_SCREEN_ANNOUNCE_TYPE_LORE_COLLECTION_COMPLETED_SKILL_EXPERIENCE )
ZO_CenterScreenAnnounce_SetPriority ( CENTER_SCREEN_ANNOUNCE_TYPE_ENDLESS_DUNGEON_ATTEMPTS_REMAINING_CHANGED )
-- Higher-priority events
-- Miscellaneous event handlers
if not isCompleted then
end
end
-- Quest Advancement displays all the "appropriate" conditions that the player needs to do to advance the current step
local function OnQuestAdvanced ( eventId , questIndex , questName , isPushed , isComplete , mainStepChanged , doesConditionHideAnnouncements )
if not mainStepChanged or doesConditionHideAnnouncements then
return
end
local announceObject = CENTER_SCREEN_ANNOUNCE
local _ , visibility , stepType , stepOverrideText , conditionCount = GetJournalQuestStepInfo ( questIndex , stepIndex )
if visibility == nil or visibility == QUEST_STEP_VISIBILITY_OPTIONAL then
if stepOverrideText ~= "" then
else
for conditionIndex = 1 , conditionCount do
local conditionText , curCount , maxCount , isFailCondition , isConditionComplete , _ , isVisible = GetJournalQuestConditionInfo ( questIndex , stepIndex , conditionIndex )
end
end
end
end
end
end
end
end
-- Center Screen Queueable Handlers
-- Usage: Whenever there is an event type that occurs multiple times within a short timeframe
-- add another table entry with data to help facilitate the combining of the multiple events into a single call
-- updateTimeDelaySeconds: The time delay from when an event that is marked as queueable is received to when the event enters into the regular event queue.
-- The system will restart the time after each new event is received
-- updateParameters: A table of parameter positions that should be overwritten with the latest data from the newest event received.
-- The position is derived from the parameters in the event callback function defined in the CENTER_SCREEN_EVENT_HANDLERS table for the same event.
-- conditionParameters: A table of parameter positions that should be unique amoung any given number of eventIds. For example, if you kill a monster that gives
-- exp and guild rep, they will both come down as skill xp update events, but their skilltype and skillindex values are different, so they should be added the to system independently
-- and not added together for updating
local CENTER_SCREEN_QUEUEABLE_EVENT_HANDLERS = { }
do
local PARAMETER_RIDING_SKILL_TYPE = 1
local PARAMETER_CURRENT_RIDING_SKILL = 3
local PARAMETER_RIDING_SKILL_SOURCE = 4
local PARAMETER_SKILL_TYPE = 1
local PARAMETER_SKILL_INDEX = 2
local PARAMETER_CURRENT_XP = 6
local PARAMETER_CURRENT_CAPACITY = 2
local PARAMETER_CURRENT_UPGRADE = 4
local MEDIUM_UPDATE_INTERVAL_SECONDS = 2
local LONG_UPDATE_INTERVAL_SECONDS = 2.5
local EXTRA_LONG_UPDATE_INTERVAL_SECONDS = 3.1
CENTER_SCREEN_QUEUEABLE_EVENT_HANDLERS [ EVENT_SKILL_XP_UPDATE ] =
{
updateTimeDelaySeconds = LONG_UPDATE_INTERVAL_SECONDS ,
updateParameters = { PARAMETER_CURRENT_XP } ,
conditionParameters = { PARAMETER_SKILL_TYPE , PARAMETER_SKILL_INDEX }
}
CENTER_SCREEN_QUEUEABLE_EVENT_HANDLERS [ EVENT_RAID_REVIVE_COUNTER_UPDATE ] =
{
updateTimeDelaySeconds = LONG_UPDATE_INTERVAL_SECONDS ,
}
CENTER_SCREEN_QUEUEABLE_EVENT_HANDLERS [ EVENT_INVENTORY_BAG_CAPACITY_CHANGED ] =
{
updateTimeDelaySeconds = EXTRA_LONG_UPDATE_INTERVAL_SECONDS ,
updateParameters = { PARAMETER_CURRENT_CAPACITY , PARAMETER_CURRENT_UPGRADE }
}
CENTER_SCREEN_QUEUEABLE_EVENT_HANDLERS [ EVENT_INVENTORY_BANK_CAPACITY_CHANGED ] =
{
updateTimeDelaySeconds = EXTRA_LONG_UPDATE_INTERVAL_SECONDS ,
updateParameters = { PARAMETER_CURRENT_CAPACITY , PARAMETER_CURRENT_UPGRADE }
}
CENTER_SCREEN_QUEUEABLE_EVENT_HANDLERS [ EVENT_RIDING_SKILL_IMPROVEMENT ] =
{
updateTimeDelaySeconds = MEDIUM_UPDATE_INTERVAL_SECONDS ,
updateParameters = { PARAMETER_CURRENT_RIDING_SKILL } ,
conditionParameters = { PARAMETER_RIDING_SKILL_TYPE , PARAMETER_RIDING_SKILL_SOURCE }
}
end
return CENTER_SCREEN_QUEUEABLE_EVENT_HANDLERS
end
return CENTER_SCREEN_QUEUEABLE_EVENT_HANDLERS [ eventId ]
end
-- Center Screen Callback Handlers
-- Usage: When we want to register with a callback object instead of an event
local COLLECTIBLE_EMERGENCY_BACKGROUND = "EsoUI/Art/Guild/guildRanks_iconFrame_selected.dds"
local CENTER_SCREEN_CALLBACK_HANDLERS =
{
{
callbackManager = ZO_COLLECTIBLE_DATA_MANAGER ,
callbackRegistration = "OnCollectionUpdated" ,
if collectionUpdateType == ZO_COLLECTION_UPDATE_TYPE . UNLOCK_STATE_CHANGED then
local nowOwnedCollectibles = collectiblesByUnlockState [ COLLECTIBLE_UNLOCK_STATE_UNLOCKED_OWNED ]
if nowOwnedCollectibles then
if # nowOwnedCollectibles > MAX_INDIVIDUAL_COLLECTIBLE_UPDATES then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . COLLECTIBLE_UNLOCKED )
messageParams : SetText ( GetString ( SI_COLLECTIONS_UPDATED_ANNOUNCEMENT_TITLE ) , zo_strformat ( SI_COLLECTIBLES_UPDATED_ANNOUNCEMENT_BODY , # nowOwnedCollectibles ) )
return messageParams
else
local messageParamsObjects = { }
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . COLLECTIBLE_UNLOCKED )
messageParams : SetText ( GetString ( SI_COLLECTIONS_UPDATED_ANNOUNCEMENT_TITLE ) , zo_strformat ( SI_COLLECTIONS_UPDATED_ANNOUNCEMENT_BODY , collectibleName , categoryName ) )
end
end
end
end
end ,
} ,
{
callbackManager = SKILLS_DATA_MANAGER ,
callbackRegistration = "SkillLineAdded" ,
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_SMALL_TEXT , SOUNDS . SKILL_LINE_ADDED )
return messageParams
end
end ,
} ,
{
callbackManager = COMPANION_SKILLS_DATA_MANAGER ,
callbackRegistration = "SkillLineAdded" ,
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_SMALL_TEXT , SOUNDS . SKILL_LINE_ADDED )
messageParams : SetText ( zo_strformat ( SI_COMPANION_SKILL_LINE_ADDED , announceIcon , skillLineData : GetName ( ) ) )
return messageParams
end
end ,
} ,
{
callbackManager = COMPANION_SKILLS_DATA_MANAGER ,
callbackRegistration = "CompanionSkillUpdateStatusChanged" ,
if companionSkillData : HasUpdatedStatus ( ) and companionSkillData : IsPurchased ( ) and companionSkillData : IsActive ( ) then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . COMPANION_ACTIVE_SKILL_UNLOCKED )
messageParams : SetText ( GetString ( SI_COMPANION_ACTIVE_SKILL_UNLOCKED_CSA ) , progressionData : GetFormattedName ( ) )
return messageParams
end
end ,
} ,
{
callbackManager = ANTIQUITY_DATA_MANAGER ,
callbackRegistration = "SingleAntiquityDigSitesUpdated" ,
-- Only trigger for forward progress
if numGoalsAchieved > 0 and numGoalsAchieved > lastNumGoalsAchieved then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_SCRYING_PROGRESS_TEXT , SOUNDS . SCRYING_PROGRESS_ADDED )
messageParams : SetText ( GetString ( SI_ANTIQUITIES_SCRYING_PROGRESS_UPDATED_HEADER ) , antiquityData : GetColorizedFormattedName ( ) )
messageParams : SetScryingProgressData ( lastNumGoalsAchieved , numGoalsAchieved , antiquityData : GetTotalNumGoals ( ) )
return messageParams
end
end ,
} ,
{
callbackManager = ITEM_SET_COLLECTIONS_DATA_MANAGER ,
callbackRegistration = "SlotsJustUnlocked" ,
if # slotsJustUnlocked > 4 then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . COLLECTIBLE_UNLOCKED )
messageParams : SetText ( GetString ( SI_ITEM_SET_COLLECTIONS_UPDATED_ANNOUNCEMENT_TITLE ) , zo_strformat ( SI_ITEM_SET_COLLECTIONS_UPDATED_ANNOUNCEMENT_BODY , # slotsJustUnlocked ) )
return messageParams
else
local messageParamsObjects = { }
local itemSetCollectionData = ITEM_SET_COLLECTIONS_DATA_MANAGER : GetItemSetCollectionData ( slotJustUnlocked . itemSetId )
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . COLLECTIBLE_UNLOCKED )
messageParams : SetText ( GetString ( SI_ITEM_SET_COLLECTIONS_UPDATED_ANNOUNCEMENT_TITLE ) , zo_strformat ( SI_ITEM_SET_COLLECTION_UPDATED_ANNOUNCEMENT_BODY , pieceName ) )
end
end
end ,
} ,
{
callbackManager = TRIBUTE_DATA_MANAGER ,
callbackRegistration = "ProgressionUpgradeStatusChanged" ,
if refreshReason == ZO_TRIBUTE_PATRON_PROGRESSION_REFRESH_REASON . DATA_CHANGED then
local messageParamsObjects = { }
messageParams : SetText ( zo_strformat ( GetString ( SI_TRIBUTE_CARD_UPGRADED_ANNOUNCEMENT_TITLE ) , patronName ) , zo_strformat ( SI_TRIBUTE_CARD_UPGRADED_ANNOUNCEMENT_BODY , baseCardData : GetColorizedName ( ) , upgradeCardData : GetColorizedName ( ) ) )
end
end
if # messageParamsObjects > 0 then
end
end
end ,
} ,
{
callbackManager = ENDLESS_DUNGEON_MANAGER ,
callbackRegistration = "AttemptsRemainingChanged" ,
if attemptsRemaining <= 0 or previousAttemptsRemaining <= 0 or attemptsRemaining == previousAttemptsRemaining then
-- Suppress the CSA when no attempts remain (as it is no longer relevant)
-- or when there were no attempts remaining previously (initialization).
return nil
end
if attemptsRemaining > previousAttemptsRemaining then
else
messageParams : SetSound ( SOUNDS . ENDLESS_DUNGEON_ATTEMPTS_REMAINING_DECREMENT ) -- Audio specifically for losing an attempt.
end
local subtitleText = zo_strformat ( GetString ( SI_ENDLESS_DUNGEON_ATTEMPTS_REMAINING_CHANGED_ANNOUNCEMENT_SUBTITLE ) , attemptsRemaining )
return messageParams
end ,
} ,
{
callbackManager = ENDLESS_DUNGEON_MANAGER ,
callbackRegistration = "BuffStackCountChanged" ,
if suppressCSA or stackCount == 0 or previousStackCount > stackCount then
-- Suppress the CSA when buff stacks drop off.
return nil
end
local titleText = ZO_CachedStrFormat ( SI_ENDLESS_DUNGEON_BUFF_ADDED_ANNOUNCEMENT_TITLE_FORMATTER , buffTypeString )
messageParams : SetCustomAnimationTimeline ( CENTER_SCREEN_ANNOUNCE : GetEndlessDungeonBuffAddedAnimationTimeline ( ) , function ( csaControl )
local startBeneathControl = csaControl
local endCenteredOnControl = not ZO_EndDunHUDTrackerContainerShowBuffTracker : IsHidden ( ) and ZO_EndDunHUDTrackerContainerShowBuffTracker or nil
-- Play the audio cue associated with this type of Endless Dungeon buff.
if abilityBuffType == ENDLESS_DUNGEON_BUFF_TYPE_VERSE then
elseif abilityBuffType == ENDLESS_DUNGEON_BUFF_TYPE_VISION then
if isAvatarVision then
else
end
end
end )
return messageParams
end ,
} ,
{
callbackManager = SCRIBING_DATA_MANAGER ,
callbackRegistration = "CraftedAbilityLockStateChanged" ,
if isUnlocked then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . CRAFTED_ABILITY_UNLOCKED )
-- Treat these the same way we treat collectibles
messageParams : SetText ( GetString ( SI_CRAFTED_ABILITY_UNLOCKED_ANNOUNCE_TITLE ) , craftedAbilityData : GetFormattedNameWithSkillLine ( ) )
return messageParams
end
end ,
} ,
{
callbackManager = SCRIBING_DATA_MANAGER ,
callbackRegistration = "CraftedAbilityScriptLockStateChanged" ,
if isUnlocked then
local messageParams = CENTER_SCREEN_ANNOUNCE : CreateMessageParams ( CSA_CATEGORY_LARGE_TEXT , SOUNDS . CRAFTED_ABILITY_SCRIPT_UNLOCKED )
-- Treat these the same way we treat collectibles
messageParams : SetText ( GetString ( SI_CRAFTED_ABILITY_SCRIPT_UNLOCKED_ANNOUNCE_TITLE ) , craftedAbilityScriptData : GetFormattedNameWithSlot ( ) )
return messageParams
end
end ,
} ,
}
return CENTER_SCREEN_CALLBACK_HANDLERS
end |