1
0

feat: add new rule in BMapInspector

This commit is contained in:
2026-03-04 11:01:14 +08:00
parent 4c71a20935
commit 3f6d131d0d
6 changed files with 98 additions and 21 deletions

View File

@@ -56,9 +56,8 @@ namespace BMapInspector::Ruleset {
/**
* @brief YYC12345 Rule 4
* @details
* \li Check the video format for opaque and transparent texture respectively.
* \li Warning for video format which is not used by vanilla Ballance.
* \li Warning for transparent used video format in non-Ballance textures to conserve resources.
* Check the video format for Ballance and user-defined texture respectively.
* Report if there is non-vanilla Ballance settings.
*/
class YYCRule4 : public Rule::IRule {
public:
@@ -71,4 +70,21 @@ namespace BMapInspector::Ruleset {
void Check(Reporter::Reporter& reporter, Map::Level& level) const override;
};
/**
* @brief YYC12345 Rule 5
* @details
* Check the save options for Ballance and user-defined texture respectively
* for reducing map size and avoid ambiguity.
*/
class YYCRule5 : public Rule::IRule {
public:
YYCRule5();
virtual ~YYCRule5();
YYCC_DELETE_COPY_MOVE(YYCRule5)
public:
std::u8string_view GetRuleName() const override;
void Check(Reporter::Reporter& reporter, Map::Level& level) const override;
};
}