""" Author: PH01L Email: phoil@osrsbox.com Website: https://www.osrsbox.com Description: Generate summary of item, npc and object cache definition files. Copyright (c) 2020, PH01L ############################################################################### This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ############################################################################### """ import json import os from pathlib import Path import config from scripts.cache import cache_constants def process(): """Main function to extract item/npc/object summary (ID and name).""" for cache_name in cache_constants.CACHE_DUMP_TYPES: summary_data = dict() if cache_name == "items": definitions = cache_constants.ITEM_DEFINITIONS elif cache_name == "npcs": definitions = cache_constants.NPC_DEFINITIONS elif cache_name == "objects": definitions = cache_constants.OBJECT_DEFINITIONS # Loop all entries in the decompressed and loaded definition file for id_number in definitions: json_data = definitions[id_number] id = json_data["id"] name = json_data["name"] # Check if there is a non-valid name if "