├── .gitignore ├── DejaVuSans.ttf ├── LICENSE ├── README.md ├── allegro5 ├── al_debug.d ├── allegro.d ├── allegro_acodec.d ├── allegro_android.d ├── allegro_audio.d ├── allegro_color.d ├── allegro_color_ret.d ├── allegro_font.d ├── allegro_image.d ├── allegro_memfile.d ├── allegro_native_dialog.d ├── allegro_physfs.d ├── allegro_primitives.d ├── allegro_ttf.d ├── allegro_video.d ├── altime.d ├── base.d ├── bitmap.d ├── bitmap_draw.d ├── bitmap_io.d ├── bitmap_lock.d ├── blender.d ├── clipboard.d ├── color.d ├── color_ret.d ├── config.d ├── cpu.d ├── d_util.d ├── display.d ├── drawing.d ├── error.d ├── events.d ├── file.d ├── fixed.d ├── fshook.d ├── fullscreen_mode.d ├── haptic.d ├── internal │ ├── da5.d │ └── events.d ├── joystick.d ├── keyboard.d ├── keycodes.d ├── memory.d ├── monitor.d ├── mouse.d ├── mouse_cursor.d ├── path.d ├── render_state.d ├── shader.d ├── system.d ├── threads.d ├── timer.d ├── tls.d ├── touch_input.d ├── transformations.d └── utf8.d ├── create_import_libs.bat ├── dub.json ├── example.d ├── examples ├── Makefile ├── common.d ├── data │ ├── DejaVuSans.LICENSE │ ├── DejaVuSans.ttf │ ├── ex_ttf.ini │ └── icon.png ├── ex_camera.d ├── ex_dir.d ├── ex_timer_pause.d ├── ex_ttf.d └── ex_video.d ├── mysha.pcx └── test.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/.gitignore -------------------------------------------------------------------------------- /DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/DejaVuSans.ttf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/README.md -------------------------------------------------------------------------------- /allegro5/al_debug.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/al_debug.d -------------------------------------------------------------------------------- /allegro5/allegro.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro.d -------------------------------------------------------------------------------- /allegro5/allegro_acodec.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_acodec.d -------------------------------------------------------------------------------- /allegro5/allegro_android.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_android.d -------------------------------------------------------------------------------- /allegro5/allegro_audio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_audio.d -------------------------------------------------------------------------------- /allegro5/allegro_color.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_color.d -------------------------------------------------------------------------------- /allegro5/allegro_color_ret.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_color_ret.d -------------------------------------------------------------------------------- /allegro5/allegro_font.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_font.d -------------------------------------------------------------------------------- /allegro5/allegro_image.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_image.d -------------------------------------------------------------------------------- /allegro5/allegro_memfile.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_memfile.d -------------------------------------------------------------------------------- /allegro5/allegro_native_dialog.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_native_dialog.d -------------------------------------------------------------------------------- /allegro5/allegro_physfs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_physfs.d -------------------------------------------------------------------------------- /allegro5/allegro_primitives.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_primitives.d -------------------------------------------------------------------------------- /allegro5/allegro_ttf.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_ttf.d -------------------------------------------------------------------------------- /allegro5/allegro_video.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/allegro_video.d -------------------------------------------------------------------------------- /allegro5/altime.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/altime.d -------------------------------------------------------------------------------- /allegro5/base.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/base.d -------------------------------------------------------------------------------- /allegro5/bitmap.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/bitmap.d -------------------------------------------------------------------------------- /allegro5/bitmap_draw.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/bitmap_draw.d -------------------------------------------------------------------------------- /allegro5/bitmap_io.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/bitmap_io.d -------------------------------------------------------------------------------- /allegro5/bitmap_lock.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/bitmap_lock.d -------------------------------------------------------------------------------- /allegro5/blender.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/blender.d -------------------------------------------------------------------------------- /allegro5/clipboard.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/clipboard.d -------------------------------------------------------------------------------- /allegro5/color.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/color.d -------------------------------------------------------------------------------- /allegro5/color_ret.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/color_ret.d -------------------------------------------------------------------------------- /allegro5/config.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/config.d -------------------------------------------------------------------------------- /allegro5/cpu.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/cpu.d -------------------------------------------------------------------------------- /allegro5/d_util.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/d_util.d -------------------------------------------------------------------------------- /allegro5/display.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/display.d -------------------------------------------------------------------------------- /allegro5/drawing.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/drawing.d -------------------------------------------------------------------------------- /allegro5/error.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/error.d -------------------------------------------------------------------------------- /allegro5/events.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/events.d -------------------------------------------------------------------------------- /allegro5/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/file.d -------------------------------------------------------------------------------- /allegro5/fixed.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/fixed.d -------------------------------------------------------------------------------- /allegro5/fshook.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/fshook.d -------------------------------------------------------------------------------- /allegro5/fullscreen_mode.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/fullscreen_mode.d -------------------------------------------------------------------------------- /allegro5/haptic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/haptic.d -------------------------------------------------------------------------------- /allegro5/internal/da5.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/internal/da5.d -------------------------------------------------------------------------------- /allegro5/internal/events.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/internal/events.d -------------------------------------------------------------------------------- /allegro5/joystick.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/joystick.d -------------------------------------------------------------------------------- /allegro5/keyboard.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/keyboard.d -------------------------------------------------------------------------------- /allegro5/keycodes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/keycodes.d -------------------------------------------------------------------------------- /allegro5/memory.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/memory.d -------------------------------------------------------------------------------- /allegro5/monitor.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/monitor.d -------------------------------------------------------------------------------- /allegro5/mouse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/mouse.d -------------------------------------------------------------------------------- /allegro5/mouse_cursor.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/mouse_cursor.d -------------------------------------------------------------------------------- /allegro5/path.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/path.d -------------------------------------------------------------------------------- /allegro5/render_state.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/render_state.d -------------------------------------------------------------------------------- /allegro5/shader.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/shader.d -------------------------------------------------------------------------------- /allegro5/system.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/system.d -------------------------------------------------------------------------------- /allegro5/threads.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/threads.d -------------------------------------------------------------------------------- /allegro5/timer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/timer.d -------------------------------------------------------------------------------- /allegro5/tls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/tls.d -------------------------------------------------------------------------------- /allegro5/touch_input.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/touch_input.d -------------------------------------------------------------------------------- /allegro5/transformations.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/transformations.d -------------------------------------------------------------------------------- /allegro5/utf8.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/allegro5/utf8.d -------------------------------------------------------------------------------- /create_import_libs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/create_import_libs.bat -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/dub.json -------------------------------------------------------------------------------- /example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/example.d -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/common.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/common.d -------------------------------------------------------------------------------- /examples/data/DejaVuSans.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/data/DejaVuSans.LICENSE -------------------------------------------------------------------------------- /examples/data/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/data/DejaVuSans.ttf -------------------------------------------------------------------------------- /examples/data/ex_ttf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/data/ex_ttf.ini -------------------------------------------------------------------------------- /examples/data/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/data/icon.png -------------------------------------------------------------------------------- /examples/ex_camera.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/ex_camera.d -------------------------------------------------------------------------------- /examples/ex_dir.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/ex_dir.d -------------------------------------------------------------------------------- /examples/ex_timer_pause.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/ex_timer_pause.d -------------------------------------------------------------------------------- /examples/ex_ttf.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/ex_ttf.d -------------------------------------------------------------------------------- /examples/ex_video.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/examples/ex_video.d -------------------------------------------------------------------------------- /mysha.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeLord/DAllegro5/HEAD/mysha.pcx -------------------------------------------------------------------------------- /test.ini: -------------------------------------------------------------------------------- 1 | name=Bob 2 | --------------------------------------------------------------------------------