OSDN Git Service

無駄なlazyを削除
[kcd/KCD.git] / KCD / QuestListCommand.swift
1 //
2 //  QuestListCommand.swift
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2017/01/08.
6 //  Copyright © 2017年 Hori,Masaki. All rights reserved.
7 //
8
9 import Cocoa
10
11 final class QuestListCommand: JSONCommand {
12     
13     override class func canExecuteAPI(_ api: API) -> Bool {
14         
15         return api.endpoint == .questList
16     }
17     
18     override func execute() {
19         
20         // 左のタブがAllじゃない時は無視する
21         guard let tab = parameter["api_tab_id"].int, tab == 0 else { return }
22         guard let ql0No = data["api_list"][0]["api_no"].int,
23             let pageCount = data["api_page_count"].int,
24             let page = data["api_disp_page"].int else {
25                 
26                 return Logger.shared.log("data is wrong")
27         }
28         
29         let store = ServerDataStore.oneTimeEditor()
30         
31         // 範囲内の任務をいったん遂行中からはずす
32         let qlmNo = data["api_list"].last["api_no"].int ?? 9999
33         let minNo = (page == 1) ? 0 : ql0No
34         let maxNo = (page == pageCount) ? 9999 : qlmNo
35         store.quests(in: minNo...maxNo).forEach { $0.state = 1 }
36         
37         // 新しいデータ投入
38         let quests = store.sortedQuestByNo()
39         data["api_list"].forEach { _, quest in
40             
41             guard let no = quest["api_no"].int else { return }
42             
43             let t = quests.binarySearch { $0.no ==? no }
44             
45             guard let new = t ?? store.createQuest() else { return Logger.shared.log("Can not create Quest") }
46             
47             new.bonus_flag = quest["api_bonus_flag"].int.map { $0 != 0 } ?? false
48             new.category = quest["api_category"].int ?? 0
49             new.detail = quest["api_detail"].string ?? ""
50 //            new.get_material_0 = questData["api_get_material_0"] as? Int ?? 0
51 //            new.get_material_1 = questData["api_get_material_1"] as? Int ?? 0
52 //            new.get_material_2 = questData["api_get_material_2"] as? Int ?? 0
53 //            new.get_material_3 = questData["api_get_material_3"] as? Int ?? 0
54             new.invalid_flag = quest["api_invalid_flag"].int ?? 0
55             new.no = quest["api_no"].int ?? 0
56             new.progress_flag = quest["api_progress_flag"].int ?? 0
57             new.state = quest["api_state"].int ?? 0
58             new.title = quest["api_title"].string ?? ""
59             new.type = quest["api_type"].int ?? 0
60         }
61     }
62 }