Learn D programming language by creating games!
Go to file
Ki Rill 038d0d851d update dub.json 2024-07-08 13:58:38 +05:00
assets/spritesheets lesson#29 flip texture option added 2023-07-15 17:44:16 +06:00
img thumbnail added 2021-09-10 11:08:48 +06:00
lesson#1 - Installing DMD, DUB, Sublime Text Installing DMD, DUB, Sublime Text 2020-07-11 13:00:38 +06:00
lesson#2 - Hello, Dlang Hello, Dlang 2020-07-11 12:59:45 +06:00
lesson#3 - Fundamental Data Types Fundamental Data Types 2020-07-11 12:59:10 +06:00
lesson#4 - Create a Calculator! Create a Calculator 2020-07-11 12:58:19 +06:00
lesson#5 - Improving our Calculator Improving our Calculator 2020-07-11 12:57:15 +06:00
lesson#6.1 - Strings and Arrays Strings and Arrays 2020-07-11 12:56:39 +06:00
lesson#6.2 - For loop and Random Number Generator For loop and Random Number Generator 2020-07-11 12:56:06 +06:00
lesson#7 - Passing by value and by reference Passing by value and by reference 2020-07-11 12:55:04 +06:00
lesson#8 - Converting Data Types Converting Data Types 2020-07-11 12:54:28 +06:00
lesson#9.1 - Enums Enums 2020-07-11 12:53:50 +06:00
lesson#9.2 - Creating Battleship game Creating Battleship game 2020-07-11 12:53:27 +06:00
lesson#9.3 - Finishing Battleship game Finishing Battleship game 2020-07-11 12:52:53 +06:00
lesson#10 - Setting up DUB with Raylib/raylib_firstWindow update dub.json 2024-07-08 13:58:38 +05:00
lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow update dub.json 2024-07-08 13:58:38 +05:00
lesson#12.1 - Structs/raylib_firstWindow update dub.json 2024-07-08 13:58:38 +05:00
lesson#12.2 - Modules/raylib_firstWindow update dub.json 2024-07-08 13:58:38 +05:00
lesson#13 - 2D Tic Tac Toe/ticTacToe update dub.json 2024-07-08 13:58:38 +05:00
lesson#14 - 2D Snake Game update dub.json 2024-07-08 13:58:38 +05:00
lesson#15 - The Stack vs. the Heap The Stack vs. the Heap 2020-07-11 12:47:13 +06:00
lesson#16 - Pointers + Manual Memory Allocation Pointers + Manual Memory Allocation 2020-07-11 12:19:59 +06:00
lesson#17 - Classes vs. Structs Classes vs. Structs 2020-07-11 12:19:05 +06:00
lesson#18 - Encapsulation and Protection Attributes Encapsulation and Protection Attributes 2020-07-10 12:47:34 +06:00
lesson#19.1 - Interfaces and Inheritance Interfaces and Inheritance 2020-07-11 11:54:06 +06:00
lesson#19.2 - Inheriting from classes Inheriting from Classes 2020-07-19 17:32:37 +06:00
lesson#19.3 - Static and Final members Static and Final members 2020-07-21 17:30:26 +06:00
lesson#20 - this, alias, alias this keyword this, alias, alias ... this keywords 2020-07-27 17:43:06 +06:00
lesson#21 - More on Imports Aliased, public imports 2020-07-30 11:56:57 +06:00
lesson#22 - Singleton design pattern/ourGame update dub.json 2024-07-08 13:58:38 +05:00
lesson#23 - State design pattern/ourGame update dub.json 2024-07-08 13:58:38 +05:00
lesson#24 - Observer Design Pattern Observer Design Pattern 2021-03-06 17:26:34 +06:00
lesson#25 - Wrapping up the Game State Manager/ourGame update dub.json 2024-07-08 13:58:38 +05:00
lesson#26 - Drawing a player update dub.json 2024-07-08 13:58:38 +05:00
lesson#27 - in, out, inout type qualifiers update dub.json 2024-07-08 13:58:38 +05:00
lesson#28 - Simple spritesheet animation update dub.json 2024-07-08 13:58:38 +05:00
lesson#29 - Player spritesheet animation update dub.json 2024-07-08 13:58:38 +05:00
.gitignore update 2024-07-08 13:29:39 +05:00
LICENSE create LICENSE 2021-08-14 12:45:10 +06:00
README.md README update 2024-07-08 13:42:24 +05:00

README.md

Learn D by creating games

Hi! Join me on the journey of creating 2d games from scratch in D programming language! We will start from making simple console games in D. Then, as we learn enough features of D language, we will download Raylib graphics library and start making 2D Games!

Youtube tutorial

You can follow my youtube tutorial: https://www.youtube.com/playlist?list=PLgM-lc_kSqFQPF0UXgmFZpZalqcrSofe-

A great book on D programming language

Programming in D by Ali Çehreli: http://ddili.org/ders/d.en/index.html

The official Dlang Tutorial

Take the Dlang Tour: https://tour.dlang.org/

Required software

  • DMD compiler
  • DUB package manager
  • Your favorite text editor (I use Visual Studio Code, sometimes Vim :)
  • Raylib graphics library

Build and run

dub run raylib-d:install
dub

Have a nice day!