aseprite/src/README.md

45 lines
1.9 KiB
Markdown
Raw Normal View History

2013-08-05 22:40:48 -03:00
# Aseprite Source Code
2013-08-05 22:40:48 -03:00
If you are here is because you want to learn about Aseprite source
code. I'll try to write in these `README.md` files a summary of each
module/library.
2013-08-05 22:40:48 -03:00
# Modules & Libraries
Aseprite is separated in the following layers/modules:
## Level 0: Completely independent modules
These libraries are easy to be used and embedded in other software
because they don't depend on any other component.
* [allegro](allegro/): Modified version of [Allegro](http://alleg.sourceforge.net/) library, used for keyboard/mouse input, and drawing 2D graphics on screen.
* [base](base/): Core/basic stuff, multithreading, utf8, sha1, file system, memory, etc.
* [css](css/): Style sheet library.
2013-08-05 22:40:48 -03:00
* [gfx](gfx/): Abstract graphics structures like point, size, rectangle, region, color, etc.
* [scripting](scripting/): JavaScript engine ([V8](https://code.google.com/p/v8/)).
* [undo](undo/): Generic library to manage undo history of undoable actions.
## Level 1
* [net](net/) (base): Networking library to send HTTP requests.
* [raster](raster/) (base, gfx): Library to handle graphics entities like sprites, images, frames.
* [she](she/) (allegro): A (Work In Progress) wrapper for Allegro library.
* [webserver](webserver/) (base): HTTP web server (based on [mongoose](https://github.com/valenok/mongoose))
* [doc](doc/) (base, gfx): Document model library (business layer, replacement of `raster` library).
2013-08-05 22:40:48 -03:00
## Level 2
* [filters](filters/) (base, gfx, raster): FX for raster images.
* [iff](iff/) (base, doc): Image File Formats library (load/save documents).
* [ui](ui/) (base, gfx, she): Portable UI library (buttons, windows, text fields, etc.)
* [updater](updater/) (base, net): Component to check for updates.
2013-08-05 22:40:48 -03:00
## Level 3
* [app](app/) (allegro, base, doc, filters, gfx, iff, raster, scripting, she, ui, undo, updater, webserver)
2013-08-05 22:40:48 -03:00
## Level 4
* [main](main/) (app, base, she, ui)