// // QuestListCommand.swift // KCD // // Created by Hori,Masaki on 2017/01/08. // Copyright © 2017年 Hori,Masaki. All rights reserved. // import Cocoa final class QuestListCommand: JSONCommand { override class func canExecuteAPI(_ api: String) -> Bool { if api == "/kcsapi/api_get_member/questlist" { return true } return false } override func execute() { // 左のタブがAllじゃない時は無視する guard let tab = parameter["api_tab_id"].int, tab == 0 else { return } guard let ql0No = data["api_list"][0]["api_no"].int, let pageCount = data["api_page_count"].int, let page = data["api_disp_page"].int else { print("data is wrong") return } let store = ServerDataStore.oneTimeEditor() // 範囲内の任務をいったん遂行中からはずす let qlmNo = data["api_list"].last["api_no"].int ?? 9999 let minNo = (page == 1) ? 0 : ql0No let maxNo = (page == pageCount) ? 9999 : qlmNo store.quests(in: minNo...maxNo).forEach { $0.state = 1 } // 新しいデータ投入 let quests = store.sortedQuestByNo() data["api_list"].forEach { _, quest in guard let no = quest["api_no"].int else { return } let t = quests.binarySearch { $0.no ==? no } guard let new = t ?? store.createQuest() else { print("Can not create Quest") return } new.bonus_flag = quest["api_bonus_flag"].int.map { $0 != 0 } ?? false new.category = quest["api_category"].int ?? 0 new.detail = quest["api_detail"].string ?? "" // new.get_material_0 = questData["api_get_material_0"] as? Int ?? 0 // new.get_material_1 = questData["api_get_material_1"] as? Int ?? 0 // new.get_material_2 = questData["api_get_material_2"] as? Int ?? 0 // new.get_material_3 = questData["api_get_material_3"] as? Int ?? 0 new.invalid_flag = quest["api_invalid_flag"].int ?? 0 new.no = quest["api_no"].int ?? 0 new.progress_flag = quest["api_progress_flag"].int ?? 0 new.state = quest["api_state"].int ?? 0 new.title = quest["api_title"].string ?? "" new.type = quest["api_type"].int ?? 0 } } }