Cytus Wiki
Advertisement
Chapters
Story Chapters 1 2 3 4 5 6 7 8 9 10
Side Chapters 0 S K R T D L N M
Alpha / Re Chapters DJMAX Ω YDW


Previous
Chapter 5
Chapter 6
The Lost
Next
Chapter 7
function Operator:allocateStorage(size)
    local db = self:acquireDatabase()

    while db:getAvailableSpace() < size do
        local dated_item = db:query{
            number = 1,
            tag = "emotion",
            sort = "timestamp",
        }
        db:remove(dated_item)
    end

    local chunk = db:reserveSpace(size)
    zeroMemory(chunk)
    return chunk
end
6 Songs
Player Song Artist Easy Hard BPM Length
Dragon Warrior Hoskey 3 7 100 2:17
Selfish Gene ani 3 6 100 1:49
Colorful Skies 3R2 4 9 146 1:57
It's A Wonderful World HAMO 3 6 152 2:37
Logical Steps Yamajet 3 8 130 2:11
Niflheimr xi 3 8 180 2:28
Old Gold Cranky 3 8 155 2:04
The Blocks We Loved KillerBlood 2 9 134 1:44
Alive: The Lost Sta 4 7 140 3:58
Realize Persona 5 7 181 2:00
Bloody Purity eyemedia 8 9 155 2:26

Trivia[]

  • This chapter introduces HOSKEY.
  • The code shown in the cutscenes is written in the programming language Lua. It describes a function to reserve space in the operator's storage memory for an object of a particular size. The function works as follows: while the required memory exceeds the available memory in the database, emotions are deleted from the operator, beginning from the oldest emotion.
Advertisement