Powered by Create your own unique website with customizable templates.
CREVIS
  • Home
  • Devblog
  • Apply
  • About
  • Download
ALEC'S

Developer Blog

Plans for 2019, Advancements in Debugging & Lighting

2/13/2019

0 Comments

 
Hello everybody!
Once again, I apologize for the inactivity. I want to outline some of the plans for 2019, albeit I am a little late. This year I will try to remain faithful to the schedule that I set for myself here, though this is a very busy year for me.

Shifting the focus to Nesus

I realize that Crevis has been a project of mine for a very long time, and though I believe that it is within my grasp to finish the project, Nesus would probably be a better option right now just because it is less challenging and it is easier for me to be creative with it. I actually have been working on Nesus for the past year, in the little bits of time that I had. What I had done with the game was outlined in the last post.

I also would like to standardize the time of these posts, because I know that people have no clue when I post these. You can expect posts before 11:00 PM on the weekends. Weekends are when I have the most free time, though I may post sporadically on weekdays (for example, today). Weekends for sure, though!

Increase in development updates/videos

My channel has been inactive for some time now, but will try to put out weekly/biweekly development videos. I cannot promise that every week will be met, though I can say that there will be at least one video per month.​

Nesus 2019 Release

I really, really want to get this game out this year. Really x1000. I may even get a few other people on board to assist with the development of levels.

Setting personal goals

I know that I have set many ambitious goals for myself in the past, but I know what I am capable of now. I have set a number of realistic goals for myself so that I am able to achieve what I have outlined within the post.

Advancements in debugging & the lighting system

Now that that's all out of the way, I can finally start talking about nerdy stuff. I thought I had talked about everything I had done with Nesus in the previous post, but this is not true. I totally forgot to mention the lighting system! The lighting system was one of the first things that I wanted to tackle, because of its initial difficulty and its importance to the aesthetic of the game. Here are some fancy screenshots of the lighting system in different environments:
Picture
basic "outside" form of lighting
Picture
an example of lights interacting with each other

The lighting system utilizes multiple "modes" for drawing. To create the illusion of being inside, everything will be dark except for areas of light. In outside areas, light adds to the ambience of the environment by adding small gradients to art, creating variance. Ultimately, it is a very powerful lighting system and it can basically do whatever I want it to.

A few days ago, I added a debug console using a useful asset from the marketplace. Now, I can configure a series of commands that can help me navigate through experimental levels. Awesome!

That's all for today. Hopefully I'll have a video out this weekend.

Until next time!
0 Comments

An update

10/30/2018

0 Comments

 
Hello everyone!

It's been a while, and I'm not sure if that's forgivable. This past year has been very busy, and schoolwork has consumed most of my free time. Unfortunately, this has meant that I was not able to work on the games as much. Despite my downtime on Crevis, I have still made additions to the game. Before I talk about them, I would like to talk about the changes to the site and its structure.

Website changes + merger

I have decided to post all of my projects and games on this website. One of the reasons why I was lacking in activity on this site during the past year was because my focus was on schoolwork and on another project, Nesus. I had no way of communicating my progress on Nesus and what I was doing, resulting in the extended period of time between my current post and the last post.

I came to the conclusion that I should write about all of my projects on the Crevis website, as creating a new website would a) be problematic for current viewers, as they would have to make the switch from Crevis to the new website, and b) it would cost more money (money doesn't grow on trees, especially for students).

In order to merge my content, a website redesign was required. I also had intended to refresh the look of the site for a while now. Here is how the blog will work when discussing multiple projects:
  • ​​There are now categories that separate the content that posts will be discussing
    • These categories include Crevis, Nesus, Life, Site, etc.
    • ​To view a particular category, locate it on the right hand side of the blog, and click; this will exclusively show content from a particular project or category
 While I will be working on Crevis, Nesus, and other projects much more often as of now, the schedule is tentative, as schoolwork may interfere at any moment.

Restructuring data in Crevis

Towards the end of 2017, I realized that the way data was handled in Crevis was very inefficient. The inefficiency of data handling was leading to loss of performance and memory, and spikes of lag whenever new chunks were generated. This is a very difficult problem to approach, because in my mind I thought I was using an efficient method.

The data structures utilized were ds_grids, and there were three ds_grids per chunk. One would represent block data, another background block data, and the third would represent metadata. Grids must be represented with integers, and for block data grids are optimal.

However, metadata (data that describes each block) must be versatile and must have the capacity to store more information. Metadata tells the game what state a block may be in. For example if the block is on fire, the metadata of the block describes this. Metadata is also used to identify chests, as each chest must have a unique identifier so that their inventories may be saved and retraced.

Metadata was extremely slow to process in the previous iteration of the chunk system, and was a main factor in the cripple of the chunk system. I (currently) have no idea how to approach the problem of storing metadata and am open to any suggestions.

The entire chunk saving/loading system in Crevis is really slow, and I honestly have no idea how to fix it. I have seen other systems that use shaders to save/load, though I do not know the languages associated with shaders in GameMaker. I have also looked into buffers but am unable to get them to work with the system I have set up. Buffers seem to be the only lead that I have, so I had no choice but to break down the current saving system and start from the ground up.

The inventory system is similarly broken, though it is easier to fix than the chunk system, as it requires less memory. I also already have a few ideas of what to do with the inventory system, so it should not be long before it is optimized.

My vision of Nesus

In addition to working on Crevis, I have worked heavily on Nesus, a game that I began in 2016. My motivation for working on Nesus was based solely off of the fact that it was Greenlit on Steam as part of the last batch.
For those that do not know, "greenlight" on Steam indicates that the game was accepted onto the platform.

​Upon its admission to Steam, my vision of the game had completely changed from 2016. A story had festered in the crevices of my brain - one of loss, tradegy, and finding oneself again. I do not want to reveal what the story is, so I cannot give many details. I created a character and completed most of its mechanics (movement, dashing, combat, guns, etc). Here is the progression in design, from the earliest mockups to the final design.
Picture
I also created a parallax system that can accept an infinite amount of layers that each possess their own speeds relative to the player. This is achieved by saving parallax data to .ini files.
Picture
I used some free backgrounds to test the parallax system, and they work perfectly! The system is well-optimized and versatile, so it should last the duration of this project. There are tons of things I've done behind the scenes, including creating a combat system, dashing system, and fluid animations. I have also begun work on bosses and their mechanics, and I have just been jumping around. Now, I have a clear focus on levels and content and that will be my priority.
Picture
Until next time!
0 Comments

Using Color to Store Multiple Values In One Grid Cell

12/2/2017

0 Comments

 
Hello everyone!

Sorry for the extensive break I've had from Crevis. I've several things in the past month and a half, most of which are fairly boring.

I first continued where I left off and implemented the day/night system into the game. It looks great, but I plan to add shaders to the sun to give it an edge of realism.
Picture
I spent the rest of the time trying to resolve a particularly annoying lag spike, and I've been pressed with a particularly hard decision. A major lag spike happens when entering a new chunk and lasts for about a fourth of a second. It may not seem very long but it can be very annoying when exploring new terrain. Unfortunately, I wasn't able to find a way to remove the lag. One way of reducing the overall lag is to rewrite the inventory system, as its pretty inefficient.

My personal knowledge of memory management and arrays have grown greatly over the past year, and the inventory system that I created last March is not as efficient as it can be. I plan to rewrite the inventory system shortly, which should bump the game's frames up by at least fifty.

Now, onto the meat of the post - using color to store multiple values.
​
make_color_rgb(r,g,b);

The GameMaker coding language doesn't have very many datatypes. For example, a vector3 ​would have easily allowed us to put three values into a grid cell. Unfortunately we don't have that data type. This presented me with a problem. I needed at least one metadata slot, so I created a separate grid to hold metadata. As time went on the need for metadata kept coming up - durability, random block sprites, enchantments, and so on. These are values that cannot be held by a single slot.

I had to find a way to put multiple values into one grid cell. At first I used ds_lists but they ate up way too much memory. I made a post on the forum and someone mentioned make_color_rgb.

This function allows you to create your own colors by inserting a value for red, green, and blue. The value it produces is a 24 bit number that stores the three values, perfect for what I need. Today and tomorrow I will be re-organizing item property lists and will be implementing a system that can incorporate the function into the game.
Until next time!
0 Comments

Day/Night System Complete!

10/13/2017

0 Comments

 
Hello everyone! I have completed the day/night system in a test room! It now must be put into the game, but that's as easy as dropping the object in the game room. It needs a bit of tweaking and I'm going to replace the sun and moon with proper sprites eventually. Here's what it looks like.
Picture
So, how does it work? There are a ton of different elements in within the day/night system that you probably would not have thought of.

Time
The day/night system correlates with the time. Time is a value between 0-1440. There's one minute to an hour, making each day 24 hours. 1440 is the amount of seconds in a day. I will be referring to the numeric value of time (0-1440) as "raw time."

A proportion calculates the angle of the sun based on the raw time. The sun is then drawn on the ellipse at that angle.
Picture
In this example, the proportion calculates that the sun should be at 90 degrees on the ellipse at 12:59 PM (780 raw time). It gets the position of the sun from a series of scripts.
Picture
The functions are used to get "xx" and "yy" (the green circle) given the length (len) and the angle (dir)
In GameMaker, the functions lengthdir_x and lengthdir_y exist. These functions are used to find a specific point at a specific length and angle. This may sound complicated, but think about it as finding a point on a circle's circumference given the radius and the angle. With the day/night system, there's one problem... it's not a circle - it's an ellipse. An ellipse's radius is always changing. So, I needed an equation to get the ellipse's radius at any given time. I found a formula that did just this.
Picture
This equation allowed me to find the ellipse's radius given the angle and the major and minor radii. With the radius of the ellipse stored in a variable, all I had to do was plug it into the lengthdir_x and lengthdir_y scripts to get the positions of the sun/moon.
The fading backgrounds was done very simply with a phase system. Phases are certain spans of time with specific backgrounds. There is a phase for every fading animation as well as static backgrounds. To get the fading effect, two images are stacked: the image to fade from and the image to fade to. The image to fade to starts with zero opacity and then increases to maximum opacity as time goes on. This system uses NO alarms and is very dynamic.

Until next time!
0 Comments

SEptember Progress + Updates

10/1/2017

0 Comments

 
Hello everybody!

I'm not really sure what happened last month, but I didn't post anything. Oops! In the beginning of the month I was quite busy with school activities, but I started to pick up development towards the end of the month, forgetting about the blog... sorry about that guys! So... here's everything I've been working on/am still working on!

Buffers
I was experiencing severe lag spikes when going from chunk to chunk. I did a bit of debugging and found that the source of the lag was saving the chunks. To optimize it, I made sure that the chunk had been modified for it to save to assure I'm not just saving the same exact thing.

After receiving help on the GMC, it was deduced that the GameMaker function ds_grid_write was slowing the game down immensely, so I tried using buffers (a faster way of saving/loading in short). It worked perfectly except for the fact that I was getting some weird bugs with it so I switched back. I will probably try to get this working again in the future.

Saving objects within chunks
I have also been working on being able to save objects within chunks. These objects are created when the chunks are initially loaded and then deleted when the chunk is unloaded. I am having trouble deleting them when the chunk is unloading, but I think I can get this working by tomorrow or the next day.

Preloading chunks
As you know, severe lag spikes happen when crossing into other chunks. I optimized it a tad by making it so that chunks had to be different than what's already saved for them to be saved again. By preloading all of the chunks, it eliminates pretty much all the lag, which is awesome.

Cellular automata caves
Today, I completed underground cave generation using cellular automata (4-5 rule)! It needs tweaking, but it's a great start. I'm excited to start adding vines, stalactites and stalagmites, and pockets of ore.
I also did some minor things:
  • Lightmaps can be toggled visible
  • Spawnpoints are now set
  • Ice spawns on the top of water in cold biomes
  • Water ceases  to exist in hot biomes
  • Settings can be set and saved for easy access
  • Chests say their ID when opened
  • Metadata can now be transferred to objects created by chunkloaders
  • Chunkloaders now only unload/load chunks that are just entering the view and not chunks that are already in the view for efficiency
  • Cleaned up the code in many places
  • Toggled on old animations
Until next time, folks!
0 Comments
<<Previous
Forward>>

    Task

    February's task is to improve the combat system and create a system for enemies and their AI.

    RSS Feed

    Author

    The author of the blog is Alec. He posts weekly, usually on the weekends on Saturday.

    Categories

    All
    Crevis
    Life
    Nesus
    Website

    Archives

    March 2020
    February 2020
    July 2019
    March 2019
    February 2019
    October 2018
    December 2017
    October 2017
    August 2017
    July 2017
    May 2017
    April 2017
    March 2017
    February 2017
    January 2017
    December 2016
    November 2016
    October 2016
    September 2016
    August 2016
    July 2016

Powered by Create your own unique website with customizable templates.
  • Home
  • Devblog
  • Apply
  • About
  • Download