├── .github ├── FUNDING.yml └── stale.yml ├── .travis.yml ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── pom.xml ├── renovate.json ├── resources ├── config.yml └── plugin.yml ├── settings.xml └── src └── org └── inventivetalent └── mapmanager ├── ArrayImage.java ├── CommandHandler.java ├── DefaultMapManager.java ├── DefaultMapWrapper.java ├── MapLimitExceededException.java ├── MapListener.java ├── MapManagerPlugin.java ├── MapSender.java ├── MultiMapWrapper.java ├── PacketListener.java ├── TimingsHelper.java ├── controller ├── MapController.java └── MultiMapController.java ├── event ├── CreativeInventoryMapUpdateEvent.java ├── MapCancelEvent.java ├── MapContentUpdateEvent.java └── MapInteractEvent.java ├── manager └── MapManager.java ├── metrics └── Metrics.java ├── util ├── Converter.java ├── MapColorPalette.java ├── MapColorSpaceData.java ├── bit │ ├── BitInputStream.java │ └── BitPacket.java ├── map │ ├── map_1_12.ab │ └── map_1_8_8.ab └── mcsd │ ├── MCSDBubbleFormat.java │ ├── MCSDGenBukkit.java │ └── MCSDWebbingCodec.java └── wrapper ├── MapWrapper.java └── MultiWrapper.java /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/.travis.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/pom.xml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/renovate.json -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/resources/config.yml -------------------------------------------------------------------------------- /resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/resources/plugin.yml -------------------------------------------------------------------------------- /settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/settings.xml -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/ArrayImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/ArrayImage.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/CommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/CommandHandler.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/DefaultMapManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/DefaultMapManager.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/DefaultMapWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/DefaultMapWrapper.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/MapLimitExceededException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/MapLimitExceededException.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/MapListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/MapListener.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/MapManagerPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/MapManagerPlugin.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/MapSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/MapSender.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/MultiMapWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/MultiMapWrapper.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/PacketListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/PacketListener.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/TimingsHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/TimingsHelper.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/controller/MapController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/controller/MapController.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/controller/MultiMapController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/controller/MultiMapController.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/event/CreativeInventoryMapUpdateEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/event/CreativeInventoryMapUpdateEvent.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/event/MapCancelEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/event/MapCancelEvent.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/event/MapContentUpdateEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/event/MapContentUpdateEvent.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/event/MapInteractEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/event/MapInteractEvent.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/manager/MapManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/manager/MapManager.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/metrics/Metrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/metrics/Metrics.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/Converter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/Converter.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/MapColorPalette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/MapColorPalette.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/MapColorSpaceData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/MapColorSpaceData.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/bit/BitInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/bit/BitInputStream.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/bit/BitPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/bit/BitPacket.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/map/map_1_12.ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/map/map_1_12.ab -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/map/map_1_8_8.ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/map/map_1_8_8.ab -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/mcsd/MCSDBubbleFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/mcsd/MCSDBubbleFormat.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/mcsd/MCSDGenBukkit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/mcsd/MCSDGenBukkit.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/util/mcsd/MCSDWebbingCodec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/util/mcsd/MCSDWebbingCodec.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/wrapper/MapWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/wrapper/MapWrapper.java -------------------------------------------------------------------------------- /src/org/inventivetalent/mapmanager/wrapper/MultiWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventivetalentDev/MapManager/HEAD/src/org/inventivetalent/mapmanager/wrapper/MultiWrapper.java --------------------------------------------------------------------------------