new vid scripts added

This commit is contained in:
Ki Rill 2022-08-06 22:44:55 +06:00
parent 17f12d4f9d
commit afe2273858
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,43 @@
Hello and welcome.
In this video we are going to explore a new feature of D called importC.
importC is a C11 compiler embedded into D, thus, enabling direct usage of C code.
And today we are going create a Raylib project in D without using any of the
available bindings. We are going to use the Raylib library directly in our D
code.
I have created project folder. For now it contains just the D source file.
It imports a raylib module, creates a window and renders some text to
its surface.
I am using the D version 2.100.
Now, lets use importC to build our project.
The first thing we need to do is to create a raylib.c file and include the
raylib header. There is one important thing I'd like to highlight before
we continue. importC does not have a preprocessor. So all the macros
and defines won't be available in D. Therefore, if you need a macro from the C
library, you need to redefine it using the C language.
For example, raylib uses defines to define a basic set of colors. To use those
in my project I am going to create global color variables.
The next step is to run that C file through the C preprocessor. And I will save
the output of to raylib.i.
We are done. That's it. The final step is to compile our project using the
preprocessed raylib.i file and link the raylib library itself.
It has successfully compiled the project and if run it... yeah, it works!
Alright, that's it for today. importC is still being developed, so I will
update this video in the future, once it is finalized.
Have a nice day, and see you next time.

View File

@ -0,0 +1,22 @@
#26 | Drawing a player | Let's learn Dlang game dev
Hello and welcome. In this video we are going to implement sprite animation. I
am going to use the textures I found on the internet. You find them in the
asserts folder in the git repo.
In the next video we are going to implements player movement and basic
animation.
Have a nice day.