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 |
----
-- MarketAnnouncement_Manager
----
return manager
end
EVENT_MANAGER : RegisterForEvent ( "MarketAnnouncement_Manager" , EVENT_PLAYER_ACTIVATED , function ( ) self : OnPlayerActivated ( ) end )
local MARKET_PRODUCT_SORT_KEYS =
{
isPromo = { tiebreaker = "isLimitedTime" , tieBreakerSortOrder = ZO_SORT_ORDER_DOWN } ,
isLimitedTime = { tiebreaker = "timeLeft" , tieBreakerSortOrder = ZO_SORT_ORDER_UP } ,
timeLeft = { isNumeric = true , tiebreaker = "containsDLC" , tieBreakerSortOrder = ZO_SORT_ORDER_DOWN } ,
containsDLC = { tiebreaker = "isNew" , tieBreakerSortOrder = ZO_SORT_ORDER_DOWN } ,
isNew = { tiebreaker = "isOnSale" , tieBreakerSortOrder = ZO_SORT_ORDER_DOWN } ,
isOnSale = { tiebreaker = "onSaleTimeLeft" , tieBreakerSortOrder = ZO_SORT_ORDER_UP } ,
onSaleTimeLeft = { tiebreaker = "name" , tieBreakerSortOrder = ZO_SORT_ORDER_UP } ,
}
return ZO_TableOrderingFunction ( entry1 , entry2 , "isPromo" , MARKET_PRODUCT_SORT_KEYS , ZO_SORT_ORDER_DOWN )
end
if numAnnouncementProducts > 0 then --future proofing for likely addition of text-only announcements
for i = 1 , numAnnouncementProducts do
-- durations longer than 1 month aren't represented to the user, so it's effectively not limited time
local isLimitedTime = ltoTimeLeft > 0 and ltoTimeLeft <= ZO_ONE_MONTH_IN_SECONDS
local isSaleTime = saleTimeLeft > 0 and saleTimeLeft <= ZO_ONE_MONTH_IN_SECONDS
local productInfo = {
productId = productId ,
isLimitedTime = isLimitedTime ,
timeLeft = isLimitedTime and ltoTimeLeft or 0 ,
isNew = isNew ,
containsDLC = containsDLC ,
isPromo = isPromo ,
isOnSale = hasDiscount ,
onSaleTimeLeft = isSaleTime and saleTimeLeft or 0 ,
}
end
end
end
end
end
EVENT_MANAGER : RegisterForEvent ( "EVENT_MARKET_ANNOUNCEMENT_UPDATED" , EVENT_MARKET_ANNOUNCEMENT_UPDATED , OnMarketAnnouncementDataUpdated )
end
function MarketAnnouncement_Manager : GetMarketProductListingsForHouseTemplate ( houseTemplateId , displayGroup )
end
local _ , houseDiscountPercent = ZO_MarketProduct_GetDefaultHousingTemplatePricingInfo ( productId , function ( ... ) return self : GetMarketProductListingsForHouseTemplate ( ... ) end )
return houseDiscountPercent and houseDiscountPercent > 0
end
return false
end
-- Attempt to show on region change if announcement has not yet been shown today for this character
if seenTrialVersion < currentTrialVersion then
FlagMarketAnnouncementSeen ( ) --We only want to show one popup per session if possible, and trial dialog takes priority
else
end
end
end
if newState == SCENE_HIDING then
end
end
|