Cytus Wiki
Register
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 Chapters Ω DJMAX


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
Part6
Chapter 6 Songs
Song Artist Easy Hard BPM Length
Alive: The Lost Sta 4 7 140 3:58

0

Bloody Purity eyemedia 8 9 155 2:26

0

Colorful Skies 3R2 4 9 146 1:57

0

Dragon Warrior Hoskey 3 7 100 2:17

0

It's A Wonderful World HAMO 3 6 152 2:37

0

Logical Steps Yamajet 3 8 130 2:11

0

Niflheimr xi 3 8 180 2:28

0

Old Gold Cranky 3 8 155 2:04

0

Realize Persona 5 7 181 2:00

0

Selfish Gene ani 3 6 100 1:49

0

The Blocks We Loved KillerBlood 2 9 134 1:44

0

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