Anniversary Announcement
Happy one-year anniversary of Volcano Star!

I am happy to announce that Starfairy, the Volcano Star sequel, is in the works!
Map Renderer
There is a new map renderer. It blends tiles, animates tiles, outlines walls, and adds shading. Your house can look more beautiful than ever.

- New Map Renderer.png (406.71 KiB) Viewed 6383 times
Lighting System
Lighting is no longer sharp circles. Lights and shadows gradually fade around the rims now.
Terrain Generation
Computer-generated terrain is making its way into Starfairy. This is simple for now, but it boosts development speed a good deal.
Island and Character Selection Menus
You can now have multiple islands and characters on the same computer. Characters can visit different islands on the same computer. There is also a title menu now.
Options
An options menu was added, simple yet useful.

- Options Menu.png (294.72 KiB) Viewed 6383 times
Load Time
The load times have been super accelerated with the Rust programming language. The Rust module also allows for other improvements in performance-critical code like artificial intelligence, terrain generation, and pathfinding.
Split-Screen Teaser
There have been some successful experimentations with split-screen, but there is a lot that goes into such implementation, so I will just show a teaser here:

- Two Player Tease.png (338.5 KiB) Viewed 6383 times
Thank You and Goodbye!
Thank you for playing Volcano Star! This will be my first and last post about Starfairy on the LÖVE 2D forums because development has been moved to another game engine.
You can check Twitter for further Starfairy updates:
https://twitter.com/MikeeyBikeey
Bonus LÖVE 2D Programming
When I was initially developing the update with the LÖVE 2D framework, I created an entity component system (ECS) framework for fun.
Here is an example (partially pseudocode) for fun!
Code: Select all
local World = require('world')
local function GreatPeople(mobs_WITH_name_WITH_age)
local i = 0
for _, mob in ipairs(mobs_WITH_name_WITH_age) do
love.graphics.print("Hi " .. mob.name .. ". You are " .. mob.age .. " years old.", 1, i * 32)
i = i + 1
end
end
local function CreatePeople(world, universal_last_name)
world:add_mob({
name = "Henry " .. universal_last_name,
age = 22
})
world:add_mob({
name = "George " .. universal_last_name,
age = 5
})
end
function love.run()
return World.new()
:add_resource("universal_last_name", "Smith")
:add_load_system(CreatePeople) -- The ECS reads the argument and then passes in the list of mobs that satisfy the query.
:add_draw_system(GreatPeople) -- The ECS reads the arguments and then passes in the built-in `world` resource and the custom `universal_last_name` resource.
:run()
end
There is room for improvement here, and I am open to suggestions.
Thank you for reading. Have a nice day.
