mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-18 03:35:33 +00:00
151 lines
3.1 KiB
PHP
151 lines
3.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
*
|
|
* ____ _ _ __ __ _ __ __ ____
|
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* @author PocketMine Team
|
|
* @link http://www.pocketmine.net/
|
|
*
|
|
*
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace pocketmine;
|
|
|
|
use pocketmine\lang\TranslationContainer;
|
|
use pocketmine\utils\TextFormat;
|
|
|
|
/**
|
|
* Handles the achievement list and a bit more
|
|
*/
|
|
abstract class Achievement{
|
|
/**
|
|
* @var array[]
|
|
*/
|
|
public static $list = [
|
|
/*"openInventory" => array(
|
|
"name" => "Taking Inventory",
|
|
"requires" => [],
|
|
),*/
|
|
"mineWood" => [
|
|
"name" => "Getting Wood",
|
|
"requires" => [ //"openInventory",
|
|
]
|
|
],
|
|
"buildWorkBench" => [
|
|
"name" => "Benchmarking",
|
|
"requires" => [
|
|
"mineWood"
|
|
]
|
|
],
|
|
"buildPickaxe" => [
|
|
"name" => "Time to Mine!",
|
|
"requires" => [
|
|
"buildWorkBench"
|
|
]
|
|
],
|
|
"buildFurnace" => [
|
|
"name" => "Hot Topic",
|
|
"requires" => [
|
|
"buildPickaxe"
|
|
]
|
|
],
|
|
"acquireIron" => [
|
|
"name" => "Acquire hardware",
|
|
"requires" => [
|
|
"buildFurnace"
|
|
]
|
|
],
|
|
"buildHoe" => [
|
|
"name" => "Time to Farm!",
|
|
"requires" => [
|
|
"buildWorkBench"
|
|
]
|
|
],
|
|
"makeBread" => [
|
|
"name" => "Bake Bread",
|
|
"requires" => [
|
|
"buildHoe"
|
|
]
|
|
],
|
|
"bakeCake" => [
|
|
"name" => "The Lie",
|
|
"requires" => [
|
|
"buildHoe"
|
|
]
|
|
],
|
|
"buildBetterPickaxe" => [
|
|
"name" => "Getting an Upgrade",
|
|
"requires" => [
|
|
"buildPickaxe"
|
|
]
|
|
],
|
|
"buildSword" => [
|
|
"name" => "Time to Strike!",
|
|
"requires" => [
|
|
"buildWorkBench"
|
|
]
|
|
],
|
|
"diamonds" => [
|
|
"name" => "DIAMONDS!",
|
|
"requires" => [
|
|
"acquireIron"
|
|
]
|
|
]
|
|
|
|
];
|
|
|
|
|
|
/**
|
|
* @param Player $player
|
|
* @param string $achievementId
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function broadcast(Player $player, string $achievementId) : bool{
|
|
if(isset(Achievement::$list[$achievementId])){
|
|
$translation = new TranslationContainer("chat.type.achievement", [$player->getDisplayName(), TextFormat::GREEN . Achievement::$list[$achievementId]["name"] . TextFormat::RESET]);
|
|
if(Server::getInstance()->getConfigBool("announce-player-achievements", true)){
|
|
Server::getInstance()->broadcastMessage($translation);
|
|
}else{
|
|
$player->sendMessage($translation);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @param string $achievementId
|
|
* @param string $achievementName
|
|
* @param array $requires
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function add(string $achievementId, string $achievementName, array $requires = []) : bool{
|
|
if(!isset(Achievement::$list[$achievementId])){
|
|
Achievement::$list[$achievementId] = [
|
|
"name" => $achievementName,
|
|
"requires" => $requires
|
|
];
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|