Deathgarden_Rebirth-Rewrite/dist/app/Classes/Factory/TimedChallengeFactory.php

173 lines
7.3 KiB
PHP

<?php
namespace App\Classes\Factory;
use App\Enums\Game\ChallengeType;
use App\Enums\Game\Faction;
use App\Enums\Game\RewardType;
use App\Exceptions\TimedChallengeFactoryException;
use App\Http\Responses\Api\General\Reward;
use App\Models\Game\TimedChallenge;
use Illuminate\Support\Carbon;
abstract class TimedChallengeFactory
{
const AVAILABLE_DAILY_RUNNER = [
'/Game/Challenges/Weekly/Challenge_BleedOut_RunnerWeekly.Challenge_BleedOut_RunnerWeekly' => 1,
'/Game/Challenges/Challenge_JustPlay.Challenge_JustPlay' => 1,
'/Game/Challenges/Challenge_Deliver_Runner.Challenge_Deliver_Runner' => 15,
'/Game/Challenges/Weekly/Challenge_Shields_RunnerWeekly.Challenge_Shields_RunnerWeekly' => 10,
'/Game/Challenges/Progression/General/Challenge_Heal_Runner.Challenge_Heal_Runner.' => 100,
'/Game/Challenges/Progression/General/Challenge_Evade_Runner.Challenge_Evade_Runner' => 25,
] ;
const AVAILABLE_DAILY_HUNTER = [
'/Game/Challenges/Challenge_JustPlay.Challenge_JustPlay' => 1,
'/Game/Challenges/Weekly/Challenge_DroneActivation_HunterWeekly.Challenge_DroneActivation_HunterWeekly' => 5,
'/Game/Challenges/Weekly/Challenge_Headshot_HunterWeekly.Challenge_Headshot_HunterWeekly' => 1,
'/Game/Challenges/Challenge_Down_Hunter.Challenge_Down_Hunter' => 3,
'/Game/Challenges/Weekly/Challenge_InDenial_HunterWeekly.Challenge_InDenial_HunterWeekly' => 3,
];
const AVAILABLE_WEEKLY_RUNNER = [
'/Game/Challenges/Weekly/Challenge_BleedOut_RunnerWeekly.Challenge_BleedOut_RunnerWeekly' => 5,
'/Game/Challenges/Weekly/Challenge_Greed_RunnerWeekly.Challenge_Greed_RunnerWeekly' => 50,
'/Game/Challenges/Weekly/Challenge_Shields_RunnerWeekly.Challenge_Shields_RunnerWeekly' => 100,
'/Game/Challenges/Challenge_Deliver_Runner.Challenge_Deliver_Runner' => 150,
'/Game/Challenges/Weekly/Challenge_SpeedCapture_RunnerWeekly.Challenge_SpeedCapture_RunnerWeekly' => 15,
'/Game/Challenges/Weekly/Challenge_UPs_RunnerWeekly.Challenge_UPs_RunnerWeekly' => 5,
'/Game/Challenges/Weekly/Challenge_Wasteful_RunnerWeekly.Challenge_Wasteful_RunnerWeekly' => 100,
'/Game/Challenges/Challenge_JustPlay.Challenge_JustPlay' => 5,
'/Game/Challenges/Progression/General/Challenge_Heal_Runner.Challenge_Heal_Runner' => 600,
'/Game/Challenges/Progression/General/Challenge_Evade_Runner.Challenge_Evade_Runner' => 150,
];
const AVAILABLE_WEEKLY_HUNTER = [
'/Game/Challenges/Weekly/Challenge_ARB_Damage_HunterWeekly.Challenge_ARB_Damage_HunterWeekly' => 5000,
'/Game/Challenges/Weekly/Challenge_AssaultRifleWins_HunterWeekly.Challenge_AssaultRifleWins_HunterWeekly' => 100,
'/Game/Challenges/Weekly/Challenge_Damage_HunterWeekly.Challenge_Damage_HunterWeekly' => 5000,
'/Game/Challenges/Weekly/Challenge_DroneActivation_HunterWeekly.Challenge_DroneActivation_HunterWeekly' => 25,
'/Game/Challenges/Weekly/Challenge_Greed_HunterWeekly.Challenge_Greed_HunterWeekly' => 50,
'/Game/Challenges/Weekly/Challenge_Headshot_HunterWeekly.Challenge_Headshot_HunterWeekly' => 10,
'/Game/Challenges/Weekly/Challenge_HuntingShotgunWins_HunterWeekly.Challenge_HuntingShotgunWins_HunterWeekly' => 10,
'/Game/Challenges/Weekly/Challenge_InDenial_HunterWeekly.Challenge_InDenial_HunterWeekly' => 20,
'/Game/Challenges/Weekly/Challenge_LMGWins_HunterWeekly.Challenge_LMGWins_HunterWeekly' => 10,
'/Game/Challenges/Weekly/Challenge_Reveals_hunterWeekly.Challenge_Reveals_hunterWeekly' => 10,
'/Game/Challenges/Weekly/Challenge_RingOut_hunterWeekly.Challenge_RingOut_hunterWeekly' => 5,
'/Game/Challenges/Weekly/Challenge_Mines_HunterWeekly.Challenge_Mines_HunterWeekly' => 10,
'/Game/Challenges/Weekly/Challenge_ShotgunDowns_HunterWeekly.Challenge_ShotgunDowns_HunterWeekly' => 10,
'/Game/Challenges/Weekly/Challenge_Wasteful_HunterWeekly.Challenge_Wasteful_HunterWeekly' => 100,
'/Game/Challenges/Challenge_JustPlay.Challenge_JustPlay' => 5,
];
const DAILY_REWARDS = [
'CurrencyA' => [
'min' => 1000,
'max' => 2500,
],
'CurrencyB' => [
'min' => 250,
'max' => 500,
],
'CurrencyC' => [
'min' => 500,
'max' => 750,
],
];
const WEEKLY_REWARDS = [
'CurrencyA' => [
'min' => 3000,
'max' => 5000,
],
'CurrencyB' => [
'min' => 250,
'max' => 350,
],
'CurrencyC' => [
'min' => 600,
'max' => 900,
],
];
/**
* Makes a new TimedChallenge Instance that's not yet saved to the Database.
*
* @param Carbon $startTime
* @param Faction $faction
* @param ChallengeType $type
* @return void
* @throws TimedChallengeFactoryException
*/
public static function makeChallenge(
Carbon $startTime,
Faction $faction,
ChallengeType $type,
): TimedChallenge
{
[$blueprintPath, $completionValue] = static::pickChallenge($faction, $type);
$challenge = new TimedChallenge();
$challenge->type = $type;
$challenge->faction = $faction;
$challenge->blueprint_path = $blueprintPath;
$challenge->completion_value = $completionValue;
$challenge->start_time = $startTime;
if($type === ChallengeType::Daily)
$challenge->end_time = $startTime->copy()->addDay();
else
$challenge->end_time = $startTime->copy()->addWeek();
$challenge->rewards = [static::pickReward($type)];
return $challenge;
}
protected static function pickChallenge(
Faction $faction,
ChallengeType $type,
): array {
$challengeArray = match ($faction) {
Faction::Hunter => $type === ChallengeType::Daily ? static::AVAILABLE_DAILY_HUNTER : static::AVAILABLE_WEEKLY_HUNTER,
Faction::Runner => $type === ChallengeType::Daily ? static::AVAILABLE_DAILY_RUNNER : static::AVAILABLE_WEEKLY_RUNNER,
default => null,
};
if($challengeArray === null)
throw new TimedChallengeFactoryException('Unallowed Faction ('. $faction->value .'), could not select a challenge.');
$blueprintPath = array_rand($challengeArray);
$completionValue = $challengeArray[$blueprintPath];
return [$blueprintPath, $completionValue];
}
/**
* @param ChallengeType $type
* @return Reward
* @throws TimedChallengeFactoryException
*/
protected static function pickReward(
ChallengeType $type,
): Reward {
$rewardsArray = match ($type) {
ChallengeType::Daily => static::DAILY_REWARDS,
ChallengeType::Weekly => static::WEEKLY_REWARDS,
default => null,
};
if($rewardsArray === null)
throw new TimedChallengeFactoryException('Unallowed Challenge Type (' . $type->value . '), could not select a reward.');
$pickedReward = array_rand($rewardsArray);
return new Reward(
RewardType::Currency,
round(rand($rewardsArray[$pickedReward]['min'], $rewardsArray[$pickedReward]['max']) / 10) * 10,
$pickedReward,
);
}
}