#include "cli/handlers/tools/graphics_doctor_commands.h"#include <iostream>#include "absl/status/status.h"#include "absl/strings/str_format.h"#include "app/gfx/util/compression.h"#include "cli/handlers/tools/diagnostic_types.h"#include "rom/rom.h"#include "zelda3/dungeon/dungeon_rom_addresses.h"#include "zelda3/game_data.h"Go to the source code of this file.
Namespaces | |
| namespace | yaze |
| namespace | yaze::cli |
| Namespace for the command line interface. | |
| namespace | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc} |
Functions | |
| uint32_t | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc}::GetGfxAddress (const uint8_t *data, uint8_t sheet_id, size_t rom_size) |
| void | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc}::ValidateGraphicsPointerTable (Rom *rom, DiagnosticReport &report, std::vector< uint32_t > &valid_addresses) |
| void | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc}::ValidateCompression (Rom *rom, const std::vector< uint32_t > &addresses, DiagnosticReport &report, bool verbose, int &successful_decomp, int &failed_decomp) |
| void | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc}::ValidateBlocksets (Rom *rom, DiagnosticReport &report) |
| void | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc}::CheckSheetIntegrity (Rom *rom, const std::vector< uint32_t > &addresses, DiagnosticReport &report, bool verbose, int &empty_sheets, int &suspicious_sheets) |
Variables | |
| constexpr uint32_t | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc}::kNumGfxSheets = 223 |
| constexpr uint32_t | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc}::kNumMainBlocksets = 37 |
| constexpr uint32_t | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc}::kNumRoomBlocksets = 82 |
| constexpr uint32_t | yaze::cli::anonymous_namespace{graphics_doctor_commands.cc}::kUncompressedSheetSize = 0x0800 |