Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyriets/codemap
CodeMap is a graphical editor for creating source code maps. It is ideal for creating quick projections of complex modules with many dependencies.
https://github.com/kyriets/codemap
Last synced: 2 months ago
JSON representation
CodeMap is a graphical editor for creating source code maps. It is ideal for creating quick projections of complex modules with many dependencies.
- Host: GitHub
- URL: https://github.com/kyriets/codemap
- Owner: KyrietS
- License: mit
- Created: 2022-08-05T17:33:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-18T10:56:37.000Z (5 months ago)
- Last Synced: 2024-08-19T10:36:51.970Z (5 months ago)
- Language: C++
- Size: 1.05 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CodeMap
**CodeMap** is a simple graphical editor for creating maps of code from screenshots. It allows you to create visual maps and diagrams of source code using arrows. The application provides a user-friendly and minimal interface.
![image](https://github.com/KyrietS/CodeMap/assets/19170699/d40e313c-eb14-4455-a1c2-24b46fa0c628)
## Features
* Visualize source code using screenshots, arrows, highlights and text.
* Export project to SVG format
* Open project from SVG format
* Standalone app (the binary weights around 6 MB)
* Supports Windows and Linux## Building
This project uses CMake to generate project files. It should compile and work the same way on all supported platforms.
```bash
git clone https://github.com/KyrietS/CodeMap.git
cmake -S CodeMap -B CodeMapBuild
cmake --build CodeMapBuild
```## Dependencies
The project relies on a various open source C++ libraries. All of them are fetched automatically during the CMake configuration process.
* **clip** - multiplatform cliboard implementation
* **entt** - fast and reliable entity-component system
* **glm** - mathemathics library
* **imgui** - GUI library
* **raylib** - simple graphics API that uses OpenGL underneath
* **reasings** - single-header C++ library for easing functions
* **spdlog** - logging library
* **utfcpp** - library for encoding and decoding UTF text
* **tinyxml2** - library for parsing XML files
* **tinydialogs** - library for displaying OS-native dialogs
* **stb** - encoding and decoding images to/from raw data
* **[trex](https://github.com/KyrietS/trex)** - self-made font rasterizer and text shaper libraryNote: raylib library was modified for the purpose of this project. Some symbols had to be modified to prevent conflicts with ``.
## License
Copyright © 2023-2024 Sebastian Fojcik \
Use of this software is granted under the terms of the MIT License.See the [LICENCE](LICENSE) for the full license text.