Elevator Saga: An elevator programming game (2015)
play.elevatorsaga.com
Elevator Saga: An elevator programming game (2015)
1–10 of 103 posts
Re: Elevator Saga: An elevator programming game (2015)
#2It looks like this highlights the "fun for the programmer" part.
Re: Elevator Saga: An elevator programming game (2015)
#3Re: Elevator Saga: An elevator programming game (2015)
#4I don't remember the article but I remember reading about a building management game where the reviewer believed the entire game was based around the elevator management code and that writing that code was fun for the programmer but the game itself was not fun for the player. It looks like this highlights the "fun for the programmer" part.
Re: Elevator Saga: An elevator programming game (2015)
#5Elevator Saga: The Elevator Programming Game - https://news.ycombinator.com/item?id=21425054 - Nov 2019 (1 comment)
Elevator Saga – An elevator programming game - https://news.ycombinator.com/item?id=8929314 - Jan 2015 (104 comments)
Re: Elevator Saga: An elevator programming game (2015)
#6Re: Elevator Saga: An elevator programming game (2015)
#7Re: Elevator Saga: An elevator programming game (2015)
#8I was thinking of creating this very thing on several occasions being in an elevator. The logic of elevators is very intriguing and more complicated than people realize.
> the elevator continues to travel in its current direction (up or down) until empty, stopping only to let individuals off or to pick up new individuals heading in the same direction.
with the elevator staying on its last location if there are no new requests and there being no buffering time after a request, first come first served
Re: Elevator Saga: An elevator programming game (2015)
#9I was thinking of creating this very thing on several occasions being in an elevator. The logic of elevators is very intriguing and more complicated than people realize.
I'm not sure if this is true. I think all elevators I've encountered followed the elevator/SCAN algorithm: > the elevator continues to travel in its current direction (up or down) until empty, stopping only to let individuals off or to pick up new individuals heading in the same direction. with the elevator staying on its last location if there are no new requests and there being no buffering time after a request, fi…
Re: Elevator Saga: An elevator programming game (2015)
#10I was thinking of creating this very thing on several occasions being in an elevator. The logic of elevators is very intriguing and more complicated than people realize.
I'm not sure if this is true. I think all elevators I've encountered followed the elevator/SCAN algorithm: > the elevator continues to travel in its current direction (up or down) until empty, stopping only to let individuals off or to pick up new individuals heading in the same direction. with the elevator staying on its last location if there are no new requests and there being no buffering time after a request, fi…