Adding to the Toolset

2022-11-03T23:09:44+01:003. November 2022|coding|

Adding to the toolset Having finished the graphics for the tileset I now have to think about getting the data inside the game. Luckily Multipaint offers a handy option of exporting an image as a text file with byte data. ; Multipaint machine = 10 [...]

Pointers in the Right Direction

2021-12-18T18:32:02+01:0018. December 2021|coding|

Pointers in the Right Direction Now that movement works I'd like to have a bit more convenience when navigating the map. So I want to add a minimap to the square area next to the character portraits. I would like to have it slowly reveal when [...]

Moving Right Along…

2021-12-17T07:12:02+01:0014. December 2021|coding|

Moving Right Along... Ok let's make it all a bit more interactive. I want to add the typical WASD + QE controls for moving around in the dungeon map. Using the Kernal To keep things simple I will use the Kernal functions to register [...]

A Players Position

2021-12-17T07:16:27+01:0013. December 2021|coding|

A Players Position Now that I can draw inside the 3d viewport I have to think about how to do so in relation to the players position on a map. Setting up a map The first thing I need is a map. So I [...]

A Dungeon with a View

2021-12-17T07:17:52+01:001. December 2021|coding|

A Dungeon with a View After I have proven I can put something from a tilesets on screen lets take it up a notch. Using the dungeon tileset I created earlier I want to fill the 3d view with a preset view. So let's take what [...]

Tiles

2021-12-17T07:20:22+01:0030. November 2021|coding|

Tiles Now that the ui is on screen I'd like to fill it with something. Sometime ago I did a tileset for character potraits so let's take that and find a way to get it on screen. Importing the file First off I export [...]

Bitmapping

2021-12-17T07:21:19+01:0028. November 2021|coding|

Bitmapping This time I want to output a little bit more than just "Hello World!" onto the screen. I did a design for the ui I'd like to use in the game with Multipaint. A great little program that allows the user to pixel paint using [...]

Hello World!

2021-12-17T07:22:12+01:0027. November 2021|coding|

Hello World! All right, let's get started! The first thing I want to do is setup a repository on github so all my progress will be saved and it is easier to control my changes to the code. Initially I will set the repository as private [...]

Go to Top