create community_difficulty field [requires db recreation]

This commit is contained in:
Jill 2022-12-31 09:59:44 +03:00
parent 6731a00b36
commit ce5b075280
3 changed files with 24 additions and 17 deletions

View file

@ -33,14 +33,15 @@ CREATE TABLE levels (
has_ldm INTEGER NOT NULL DEFAULT 0,
two_player INTEGER NOT NULL DEFAULT 0,
downloads INTEGER NOT NULL DEFAULT 0,
likes INTEGER NOT NULL DEFAULT 0,
difficulty INTEGER,
demon_difficulty INTEGER,
stars INTEGER,
featured INTEGER NOT NULL DEFAULT 0,
epic INTEGER NOT NULL DEFAULT 0,
rated_coins INTEGER NOT NULL DEFAULT 0
downloads INTEGER NOT NULL DEFAULT 0,
likes INTEGER NOT NULL DEFAULT 0,
difficulty INTEGER,
community_difficulty INTEGER,
demon_difficulty INTEGER,
stars INTEGER,
featured INTEGER NOT NULL DEFAULT 0,
epic INTEGER NOT NULL DEFAULT 0,
rated_coins INTEGER NOT NULL DEFAULT 0
);
-- +migrate down

View file

@ -9,7 +9,7 @@ CrystalGauntlet.endpoints["/downloadGJLevel22.php"] = ->(body : String): String
response = ""
DATABASE.query("select levels.id, levels.name, levels.level_data, levels.extra_data, levels.level_info, levels.password, levels.user_id, levels.description, levels.original, levels.game_version, levels.requested_stars, levels.version, levels.song_id, levels.length, levels.objects, levels.coins, levels.has_ldm, levels.two_player, levels.downloads, levels.likes, levels.difficulty, levels.demon_difficulty, levels.stars, levels.featured, levels.epic, levels.rated_coins, users.username, users.udid, users.account_id, users.registered from levels join users on levels.user_id = users.id where levels.id = ?", params["levelID"].to_i32) do |rs|
DATABASE.query("select levels.id, levels.name, levels.level_data, levels.extra_data, levels.level_info, levels.password, levels.user_id, levels.description, levels.original, levels.game_version, levels.requested_stars, levels.version, levels.song_id, levels.length, levels.objects, levels.coins, levels.has_ldm, levels.two_player, levels.downloads, levels.likes, levels.difficulty, levels.community_difficulty, levels.demon_difficulty, levels.stars, levels.featured, levels.epic, levels.rated_coins, users.username, users.udid, users.account_id, users.registered from levels join users on levels.user_id = users.id where levels.id = ?", params["levelID"].to_i32) do |rs|
if rs.move_next
id = rs.read(Int32)
name = rs.read(String)
@ -31,8 +31,11 @@ CrystalGauntlet.endpoints["/downloadGJLevel22.php"] = ->(body : String): String
two_player = rs.read(Bool)
downloads = rs.read(Int32)
likes = rs.read(Int32)
difficulty_int = rs.read(Int32 | Nil)
difficulty = difficulty_int && LevelDifficulty.new(difficulty_int)
set_difficulty_int = rs.read(Int32 | Nil)
set_difficulty = set_difficulty_int && LevelDifficulty.new(set_difficulty_int)
community_difficulty_int = rs.read(Int32 | Nil)
community_difficulty = community_difficulty_int && LevelDifficulty.new(community_difficulty_int)
difficulty = set_difficulty || community_difficulty
demon_difficulty_int = rs.read(Int32 | Nil)
demon_difficulty = demon_difficulty_int && DemonDifficulty.new(demon_difficulty_int)
stars = rs.read(Int32 | Nil)

View file

@ -67,7 +67,7 @@ CrystalGauntlet.endpoints["/getGJLevels21.php"] = ->(body : String): String {
if params["diff"]? && params["diff"]? != "-"
case params["diff"]?
when "-1"
queryParams << "difficulty is null" # NA
queryParams << "difficulty is null and community_difficulty is null" # NA
when "-2"
puts "demon :)"
case params["demonFilter"]?
@ -82,9 +82,9 @@ CrystalGauntlet.endpoints["/getGJLevels21.php"] = ->(body : String): String {
when "5"
queryParams << "demon_difficulty = #{DemonDifficulty::Extreme.value}"
end
queryParams << "difficulty = #{LevelDifficulty::Demon.value}"
queryParams << "difficulty = #{LevelDifficulty::Demon.value} or (difficulty is null and community_difficulty = #{LevelDifficulty::Demon.value})"
when "-3"
queryParams << "difficulty = #{LevelDifficulty::Auto.value}"
queryParams << "difficulty = #{LevelDifficulty::Auto.value} or (difficulty is null and community_difficulty = #{LevelDifficulty::Auto.value})"
else
# easy, normal, hard, harder, insane
# todo
@ -143,7 +143,7 @@ CrystalGauntlet.endpoints["/getGJLevels21.php"] = ->(body : String): String {
hash_data = [] of Tuple(Int32, Int32, Bool)
DATABASE.query "select levels.id, levels.name, levels.user_id, levels.description, levels.original, levels.game_version, levels.requested_stars, levels.version, levels.song_id, levels.length, levels.objects, levels.coins, levels.has_ldm, levels.two_player, levels.downloads, levels.likes, levels.difficulty, levels.demon_difficulty, levels.stars, levels.featured, levels.epic, levels.rated_coins, users.username, users.udid, users.account_id, users.registered #{query_base} limit #{levels_per_page} offset #{page_offset}" do |rs|
DATABASE.query "select levels.id, levels.name, levels.user_id, levels.description, levels.original, levels.game_version, levels.requested_stars, levels.version, levels.song_id, levels.length, levels.objects, levels.coins, levels.has_ldm, levels.two_player, levels.downloads, levels.likes, levels.difficulty, levels.community_difficulty, levels.demon_difficulty, levels.stars, levels.featured, levels.epic, levels.rated_coins, users.username, users.udid, users.account_id, users.registered #{query_base} limit #{levels_per_page} offset #{page_offset}" do |rs|
rs.each do
id = rs.read(Int32)
name = rs.read(String)
@ -161,8 +161,11 @@ CrystalGauntlet.endpoints["/getGJLevels21.php"] = ->(body : String): String {
two_player = rs.read(Bool)
downloads = rs.read(Int32)
likes = rs.read(Int32)
difficulty_int = rs.read(Int32 | Nil)
difficulty = difficulty_int && LevelDifficulty.new(difficulty_int)
set_difficulty_int = rs.read(Int32 | Nil)
set_difficulty = set_difficulty_int && LevelDifficulty.new(set_difficulty_int)
community_difficulty_int = rs.read(Int32 | Nil)
community_difficulty = community_difficulty_int && LevelDifficulty.new(community_difficulty_int)
difficulty = set_difficulty || community_difficulty
demon_difficulty_int = rs.read(Int32 | Nil)
demon_difficulty = demon_difficulty_int && DemonDifficulty.new(demon_difficulty_int)
stars = rs.read(Int32 | Nil)