using SptCommon.Annotations; using Core.Helpers; using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; using Core.Models.Eft.Customization; using Core.Models.Eft.Hideout; using Core.Models.Eft.ItemEvent; using Core.Models.Utils; using Core.Routers; using Core.Servers; using Core.Services; using Core.Utils.Cloners; using Product = Core.Models.Eft.ItemEvent.Product; namespace Core.Controllers; [Injectable] public class CustomizationController( ISptLogger _logger, EventOutputHolder _eventOutputHolder, DatabaseService _databaseService, SaveServer _saveServer, LocalisationService _localisationService, ProfileHelper _profileHelper, ICloner _cloner ) { /// /// Get purchasable clothing items from trader that match players side (usec/bear) /// /// trader to look up clothing for /// Session id /// Suit array public List GetTraderSuits(string traderId, string sessionId) { var pmcData = _profileHelper.GetPmcProfile(sessionId); var clothing = _databaseService.GetCustomization(); var suits = _databaseService.GetTrader(traderId).Suits; var matchingSuits = suits?.Where(s => clothing.ContainsKey(s.SuiteId!)).ToList(); matchingSuits = matchingSuits?.Where( s => clothing[s.SuiteId ?? string.Empty] ?.Properties?.Side? .Contains(pmcData?.Info?.Side ?? string.Empty) ?? false ) .ToList(); if (matchingSuits == null) throw new Exception(_localisationService.GetText("customisation-unable_to_get_trader_suits", traderId)); return matchingSuits; } /// /// Handle CustomizationBuy event /// Purchase/unlock a clothing item from a trader /// /// Player profile /// Request object /// Session id /// ItemEventRouterResponse public ItemEventRouterResponse BuyCustomisation( PmcData pmcData, BuyClothingRequestData buyClothingRequest, string sessionId) { var output = _eventOutputHolder.GetOutput(sessionId); var traderOffer = GetTraderClothingOffer(sessionId, buyClothingRequest.Offer); if (traderOffer is null) { _logger.Error(_localisationService.GetText("customisation-unable_to_find_suit_by_id", buyClothingRequest.Offer)); return output; } var suitId = traderOffer.SuiteId; if (OutfitAlreadyPurchased(suitId ?? string.Empty, sessionId)) { var suitDetails = _databaseService.GetCustomization()!.GetValueOrDefault(suitId); _logger.Error( _localisationService.GetText( "customisation-item_already_purchased", new { itemId = suitDetails?.Id, itemName = suitDetails?.Name, } ) ); return output; } // Charge player for buying item PayForClothingItems(sessionId, pmcData, buyClothingRequest.Items, output); var profile = _saveServer.GetProfile(sessionId); // TODO - remove now they're stored in profile.CustomisationUnlocks? profile.Suits?.Add(suitId!); //TODO: Merge with function _profileHelper.addHideoutCustomisationUnlock var rewardToStore = new CustomisationStorage { Id = suitId, Source = CustomisationSource.UNLOCKED_IN_GAME, Type = CustomisationType.SUITE }; profile.CustomisationUnlocks.Add(rewardToStore); return output; } private bool OutfitAlreadyPurchased(object suitId, string sessionId) { return (_saveServer.GetProfile(sessionId).Suits ?? []).Contains(suitId); } private Suit? GetTraderClothingOffer(string sessionId, string? offerId) { var foundSuit = GetAllTraderSuits(sessionId).FirstOrDefault(s => s.Id == offerId); if (foundSuit == null) _logger.Error(_localisationService.GetText("customisation-unable_to_find_suit_with_id", offerId)); return foundSuit; } /// /// Update output object and player profile with purchase details /// /// Session id /// Player profile /// Clothing purchased /// Client response private void PayForClothingItems(string sessionId, PmcData pmcData, List? itemsToPayForClothingWith, ItemEventRouterResponse output) { foreach (var inventoryItemToProcess in itemsToPayForClothingWith ?? []) { PayForClothingItem(sessionId, pmcData, inventoryItemToProcess, output); } } /// /// Update output object and player profile with purchase details for single piece of clothing /// /// Session id /// Player profile /// Payment details /// Client response private void PayForClothingItem(string sessionId, PmcData pmcData, PaymentItemForClothing? paymentItemDetails, ItemEventRouterResponse output) { var inventoryItem = pmcData.Inventory?.Items?.FirstOrDefault(x => x.Id == paymentItemDetails?.Id); if (inventoryItem == null) { _logger.Error(_localisationService.GetText("customisation-unable_to_find_clothing_item_in_inventory", paymentItemDetails?.Id)); return; } if (paymentItemDetails?.Del != null) { output.ProfileChanges[sessionId] .Items?.DeletedItems.Add( new Product { Id = inventoryItem.Id, Template = inventoryItem.Template, ParentId = inventoryItem.ParentId, SlotId = inventoryItem.SlotId, Location = (ItemLocation?)inventoryItem.Location, Upd = inventoryItem.Upd } ); } pmcData.Inventory?.Items?.Remove(inventoryItem); inventoryItem.Upd ??= new Upd { StackObjectsCount = 1 }; if (inventoryItem.Upd?.StackObjectsCount == null) if (inventoryItem.Upd != null) inventoryItem.Upd.StackObjectsCount = 1; if (inventoryItem.Upd?.StackObjectsCount == paymentItemDetails?.Count) { output.ProfileChanges[sessionId] .Items?.DeletedItems.Add( new Product { Id = inventoryItem.Id, Template = inventoryItem.Template, ParentId = inventoryItem.ParentId, SlotId = inventoryItem.SlotId, Location = (ItemLocation?)inventoryItem.Location, Upd = inventoryItem.Upd } ); pmcData.Inventory?.Items?.Remove(inventoryItem); return; } if (!(inventoryItem.Upd?.StackObjectsCount > paymentItemDetails?.Count)) { return; } inventoryItem.Upd.StackObjectsCount -= paymentItemDetails.Count; output.ProfileChanges[sessionId] .Items?.ChangedItems?.Add( new Product { Id = inventoryItem.Id, Template = inventoryItem.Template, ParentId = inventoryItem.ParentId, SlotId = inventoryItem.SlotId, Location = (ItemLocation?)inventoryItem.Location, Upd = inventoryItem.Upd } ); } /// /// /// /// /// private List GetAllTraderSuits(string sessionId) { var traders = _databaseService.GetTraders(); var result = new List(); foreach (var trader in traders) { if (trader.Value.Base?.CustomizationSeller is not null && trader.Value.Base.CustomizationSeller.Value) result.AddRange(GetTraderSuits(trader.Key, sessionId)); } return result; } /// /// Handle client/hideout/customization/offer/list /// /// /// /// public HideoutCustomisation GetHideoutCustomisation(string sessionId, EmptyRequestData info) { return _databaseService.GetHideout().Customisation!; } /// /// Handle client/customization/storage /// /// /// /// public List GetCustomisationStorage( string sessionId, EmptyRequestData info) { var customisationResultsClone = _cloner.Clone(_databaseService.GetTemplates().CustomisationStorage); var profile = _profileHelper.GetFullProfile(sessionId); if (profile is null) { return customisationResultsClone!; } customisationResultsClone!.AddRange(profile.CustomisationUnlocks ?? []); return customisationResultsClone; } /// /// Handle CustomizationSet event /// /// /// /// /// public ItemEventRouterResponse SetClothing(string sessionId, CustomizationSetRequest request, PmcData pmcData) { foreach (var customisation in request.Customizations!) { switch (customisation.Id) { case "dogTag": pmcData.Customization!.DogTag = customisation.Id; break; case "suite": ApplyClothingItemToProfile(customisation, pmcData); break; default: _logger.Error($"Unhandled customisation type: {customisation.Type}"); break; } } return _eventOutputHolder.GetOutput(sessionId); } /// /// Applies a purchased suit to the players doll /// /// Suit to apply to profile /// Profile to update private void ApplyClothingItemToProfile(CustomizationSetOption customisation, PmcData pmcData) { var dbSuit = _databaseService.GetCustomization()[customisation.Id!]; if (dbSuit is null) { _logger.Error($"Unable to find suit customisation id: {customisation.Id}, cannot apply clothing to player profile: {pmcData.Id}"); return; } switch (dbSuit.Parent) { case "5cd944d01388ce000a659df9": if (pmcData.Customization is null) return; pmcData.Customization.Body = dbSuit.Properties?.Body; pmcData.Customization.Hands = dbSuit.Properties?.Hands; return; case "5cd944ca1388ce03a44dc2a4": if (pmcData.Customization is null) return; pmcData.Customization.Feet = dbSuit.Properties?.Feet; break; } } }