Cytus Wiki
No edit summary
Tags: Visual edit apiedit
(Adding categories)
(6 intermediate revisions by 6 users not shown)
Line 59: Line 59:
 
==Trivia==
 
==Trivia==
 
*This chapter introduces HOSKEY.
 
*This chapter introduces HOSKEY.
 
* The code shown in the cutscenes is written in the programming language [https://en.wikipedia.org/wiki/Lua_(programming_language) Lua]. It means: ''Every emotion entry inserted into the database will be compared with the database's available space. If the size of the inserted emotion is larger than the size of the available space, the old emotion will be deleted to reserve the space for the inserted emotion.''
*This chapter has no hidden songs.
 
* This chapter has the most number of lv3 songs (Easy), with six songs in total.
 
* The code shown in the cutscenes means: ''Every emotion entry inserted into the database will be compared with the database's available space. If the size of the inserted emotion is larger than the size of the available space, the old emotion will be deleted to reserve the space for the inserted emotion.''
 
 
[[Category:Chapters]]
 
[[Category:Chapters]]
[[Category:Chapters with no hidden versions]]
+
[[Category:Free Chapters]]
  +
[[Category:Cytus Alpha Chapters]]

Revision as of 01:47, 22 July 2019

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
No. Logo Song Artist Easy Hard BPM
A-6 LA-6 Alive: The Lost Sta 4 7 140
6-1 L6-1 Dragon Warrior HOSKEY 3 7 100
6-2 L6-2 Selfish Gene ani vocal by Rin 3 6 100
6-3 L6-3 Realize Persona 5 7 181
6-4 L6-4 Colorful Skies 3R2 4 9 146
6-5 L6-5 It's A Wonderful World HAMO 3 6 152
6-6 L6-6 Bloody Purity Eyemedia 8 9 155
6-7 L6-7 Logical Steps yamajet 3 8 130
6-8 L6-8 Niflheimr xi 3 8 180
6-9 L6-9 Old Gold Cranky 3 8 155
6-10 L6-10 The Blocks We Loved Killerblood 2 9 134

Trivia

  • This chapter introduces HOSKEY.
  • The code shown in the cutscenes is written in the programming language Lua. It means: Every emotion entry inserted into the database will be compared with the database's available space. If the size of the inserted emotion is larger than the size of the available space, the old emotion will be deleted to reserve the space for the inserted emotion.