├── README.md ├── buffer_deserializer ├── buffer_deserializer.vcxproj ├── buffer_deserializer.vcxproj.filters ├── buffer_deserializer.vcxproj.user ├── byte_buffer.cpp ├── byte_buffer.h ├── discovery.cpp ├── discovery.h ├── main.cpp ├── utilities.cpp └── utilities.h ├── data_interceptor ├── data_interceptor.vcxproj ├── data_interceptor.vcxproj.filters ├── data_interceptor.vcxproj.user ├── dllmain.cpp ├── framework.h ├── pch.cpp └── pch.h ├── demonware_companion.sln ├── documentation ├── README.md ├── readme_header.jpg ├── screenshot_0001.jpg ├── screenshot_0002.jpg └── screenshot_0003.jpg └── livestorage_dumper ├── BlackOps3.cpp ├── BlackOps3.h ├── InfiniteWarfare.cpp ├── InfiniteWarfare.h ├── MWRemastered.cpp ├── MWRemastered.h ├── WorldWarII.cpp ├── WorldWarII.h ├── livestorage_dumper.cpp ├── livestorage_dumper.vcxproj ├── livestorage_dumper.vcxproj.filters ├── livestorage_dumper.vcxproj.user ├── main.cpp ├── procHex.cpp ├── procHex.h ├── stdinc.cpp ├── stdinc.h ├── utilities.cpp └── utilities.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/README.md -------------------------------------------------------------------------------- /buffer_deserializer/buffer_deserializer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/buffer_deserializer/buffer_deserializer.vcxproj -------------------------------------------------------------------------------- /buffer_deserializer/buffer_deserializer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/buffer_deserializer/buffer_deserializer.vcxproj.filters -------------------------------------------------------------------------------- /buffer_deserializer/buffer_deserializer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/buffer_deserializer/buffer_deserializer.vcxproj.user -------------------------------------------------------------------------------- /buffer_deserializer/byte_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/buffer_deserializer/byte_buffer.cpp -------------------------------------------------------------------------------- /buffer_deserializer/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/buffer_deserializer/byte_buffer.h -------------------------------------------------------------------------------- /buffer_deserializer/discovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/buffer_deserializer/discovery.cpp -------------------------------------------------------------------------------- /buffer_deserializer/discovery.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void ByteBuffer_StructureDiscovery(const char* file); -------------------------------------------------------------------------------- /buffer_deserializer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/buffer_deserializer/main.cpp -------------------------------------------------------------------------------- /buffer_deserializer/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/buffer_deserializer/utilities.cpp -------------------------------------------------------------------------------- /buffer_deserializer/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/buffer_deserializer/utilities.h -------------------------------------------------------------------------------- /data_interceptor/data_interceptor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/data_interceptor/data_interceptor.vcxproj -------------------------------------------------------------------------------- /data_interceptor/data_interceptor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/data_interceptor/data_interceptor.vcxproj.filters -------------------------------------------------------------------------------- /data_interceptor/data_interceptor.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/data_interceptor/data_interceptor.vcxproj.user -------------------------------------------------------------------------------- /data_interceptor/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/data_interceptor/dllmain.cpp -------------------------------------------------------------------------------- /data_interceptor/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/data_interceptor/framework.h -------------------------------------------------------------------------------- /data_interceptor/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/data_interceptor/pch.cpp -------------------------------------------------------------------------------- /data_interceptor/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/data_interceptor/pch.h -------------------------------------------------------------------------------- /demonware_companion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/demonware_companion.sln -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/readme_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/documentation/readme_header.jpg -------------------------------------------------------------------------------- /documentation/screenshot_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/documentation/screenshot_0001.jpg -------------------------------------------------------------------------------- /documentation/screenshot_0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/documentation/screenshot_0002.jpg -------------------------------------------------------------------------------- /documentation/screenshot_0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/documentation/screenshot_0003.jpg -------------------------------------------------------------------------------- /livestorage_dumper/BlackOps3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/BlackOps3.cpp -------------------------------------------------------------------------------- /livestorage_dumper/BlackOps3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/BlackOps3.h -------------------------------------------------------------------------------- /livestorage_dumper/InfiniteWarfare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/InfiniteWarfare.cpp -------------------------------------------------------------------------------- /livestorage_dumper/InfiniteWarfare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/InfiniteWarfare.h -------------------------------------------------------------------------------- /livestorage_dumper/MWRemastered.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/MWRemastered.cpp -------------------------------------------------------------------------------- /livestorage_dumper/MWRemastered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/MWRemastered.h -------------------------------------------------------------------------------- /livestorage_dumper/WorldWarII.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/WorldWarII.cpp -------------------------------------------------------------------------------- /livestorage_dumper/WorldWarII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/WorldWarII.h -------------------------------------------------------------------------------- /livestorage_dumper/livestorage_dumper.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | /* PLACE_HOLDER : PROJECT_WIP */ 6 | } -------------------------------------------------------------------------------- /livestorage_dumper/livestorage_dumper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/livestorage_dumper.vcxproj -------------------------------------------------------------------------------- /livestorage_dumper/livestorage_dumper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/livestorage_dumper.vcxproj.filters -------------------------------------------------------------------------------- /livestorage_dumper/livestorage_dumper.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/livestorage_dumper.vcxproj.user -------------------------------------------------------------------------------- /livestorage_dumper/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/main.cpp -------------------------------------------------------------------------------- /livestorage_dumper/procHex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/procHex.cpp -------------------------------------------------------------------------------- /livestorage_dumper/procHex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/procHex.h -------------------------------------------------------------------------------- /livestorage_dumper/stdinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/stdinc.cpp -------------------------------------------------------------------------------- /livestorage_dumper/stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/stdinc.h -------------------------------------------------------------------------------- /livestorage_dumper/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/utilities.cpp -------------------------------------------------------------------------------- /livestorage_dumper/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosseinpourziyaie/demonware-companion/HEAD/livestorage_dumper/utilities.h --------------------------------------------------------------------------------