Libove Blog

Personal Blog about anything - mostly programming, cooking and random thoughts

#

#gamedev progress on unnamed hotel game:

  • Spent a lot of time trying to streamline the guest AI code. This is something I still can wrap my head around entirely, partially due to #rust, mainly as this is something I never worked on before.
  • Corridors and doors are now rendered in front of rooms. Rooms are only shown if someone is in them.
  • Added simple buttons as start of UI.
  • It's now possible to place new rooms.

Screenshot of unnamed hotel game


#

I'm currently measuring the horizon to determine shading on my solar panels.

TIL: A Theodolite is used to measure horizontal and vertical angles between visible points.

On Android Dioptra can be used to do the same (with very coarse accuracy)

#survey #horizon #solar



#

#TIL: Placing two spaces at the end of a line creates a line break in #markdown.





#

I'm missing the vocabulary for googling this.

Is there a better way to write this? I want to filter a vector of enums to elements that match one specific pattern.

.filter(|r| match r.kind {
    RoomKind::BedRoom(_) => true,
    _ => false
})

#rust #dev


#

#gamedev progress:

  • refactored entire "Person" struct into individual structs for "Guest" and "Employee".
    • Separated logic and data.
    • AI actions are now individual structs that implement an Action trait
  • Started working on a Mood & Thoughts system.

Screenshot of mood icon above guest


#

#gamedev progress:

Slow progress in the last couple of sessions. I've started to implement employees. Employees work at rooms/stations whenever a guest wants to interact with them (e.g. booking a room). I'm not yet 100% happy with the implementation (blaming my #rust skills).

Additionally implemented a hunger+restaurant prototype.

Screenshot from my hotel game. The guests are currently eating in the restaurant