ScoreboardViewController.swift 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. //
  2. // ScoreboardViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 13/09/21.
  6. //
  7. import UIKit
  8. import SideMenu
  9. class ScoreboardViewController: UIViewController {
  10. @IBOutlet var navigationBar: UINavigationBar!
  11. @IBOutlet var scoreTableView: UITableView!
  12. let scoreData = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  13. let levelData = DBManager.sharedInstance.database.objects(LevelModel.self)
  14. override func viewDidLoad() {
  15. super.viewDidLoad()
  16. // Do any additional setup after loading the view.
  17. scoreTableView.delegate = self
  18. scoreTableView.dataSource = self
  19. scoreTableView.tableFooterView = UIView()
  20. print(scoreData)
  21. }
  22. override func viewWillAppear(_ animated: Bool) {
  23. navigationBar.topItem?.title = Helper.translateText(inputText: "Scoreboard")
  24. scoreTableView.reloadData()
  25. }
  26. func getLevelImageBytes(id:Int) -> String {
  27. var bytes = String()
  28. for item in levelData {
  29. if id == item.id {
  30. bytes = item.iconBytes
  31. }
  32. }
  33. return bytes
  34. }
  35. func getLevelName(id:Int) -> String {
  36. var name = String()
  37. for item in levelData {
  38. if id == item.id {
  39. name = item.name
  40. }
  41. }
  42. return name
  43. }
  44. func getTopicCount(id:Int) -> Int {
  45. var count = Int()
  46. for item in levelData {
  47. if id == item.id {
  48. count = item.topics.count
  49. }
  50. }
  51. return count
  52. }
  53. func convertBytesToImage(byteString: String) -> UIImage? {
  54. let strings = byteString.components(separatedBy: ",")
  55. var bytes = [UInt8]()
  56. for i in 0..<strings.count {
  57. if let signedByte = Int8(strings[i]) {
  58. bytes.append(UInt8(bitPattern: signedByte))
  59. } else {
  60. // Do something with this error condition
  61. }
  62. }
  63. let imageData: NSData = NSData(bytes: bytes, length: bytes.count)
  64. return UIImage(data: imageData as Data)
  65. }
  66. /*
  67. // MARK: - Navigation
  68. // In a storyboard-based application, you will often want to do a little preparation before navigation
  69. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  70. // Get the new view controller using segue.destination.
  71. // Pass the selected object to the new view controller.
  72. }
  73. */
  74. @IBAction func menuNavAction(_ sender: Any) {
  75. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  76. present(menu, animated: true, completion: nil)
  77. }
  78. }
  79. extension ScoreboardViewController: UITableViewDelegate, UITableViewDataSource {
  80. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  81. print(scoreData.count)
  82. return self.levelData.count
  83. }
  84. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  85. guard let cell = tableView.dequeueReusableCell(withIdentifier: "ScoreBoardTableViewCell", for: indexPath) as? ScoreBoardTableViewCell else {
  86. return UITableViewCell()
  87. }
  88. if levelData[indexPath.row].name == "Introduction" {
  89. cell.isHidden = true
  90. } else {
  91. cell.runLabel.text = Helper.translateText(inputText: "RUNS")
  92. cell.wicketLabel.text = Helper.translateText(inputText: "WICKETS")
  93. cell.maxScoreLabel.text = Helper.translateText(inputText: "Max Score you can earn")
  94. cell.scoreImageView.image = convertBytesToImage(byteString: getLevelImageBytes(id: levelData[indexPath.row].id))
  95. cell.scoreNameLabel.text = Helper.translateText(inputText: getLevelName(id: levelData[indexPath.row].id))
  96. var run = Int()
  97. var wicket = Int()
  98. for score in scoreData {
  99. if score.levelId == levelData[indexPath.row].id {
  100. run = run + score.runs
  101. wicket = wicket + score.wickets
  102. }
  103. }
  104. cell.noOfRunLabel.text = String(run)
  105. cell.noOfWicketLabel.text = String(wicket)
  106. cell.noOfMaxScoreLabel.text = String(getTopicCount(id: levelData[indexPath.row].id) * 6)
  107. }
  108. return cell
  109. }
  110. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  111. DispatchQueue.main.async { [self] in
  112. let optionVC = self.storyboard?.instantiateViewController(withIdentifier: "OptionViewController") as! OptionViewController
  113. optionVC.levelId = levelData[indexPath.row].id
  114. optionVC.levelName = getLevelName(id: levelData[indexPath.row].id)
  115. optionVC.maxScore = getTopicCount(id: levelData[indexPath.row].id) * 6
  116. self.navigationController?.pushViewController(optionVC, animated: false)
  117. }
  118. }
  119. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  120. var rowHeight:CGFloat = 0.0
  121. if levelData[indexPath.row].name == "Introduction" {
  122. rowHeight = 0.0
  123. } else {
  124. rowHeight = 160.0 //or whatever you like
  125. }
  126. return rowHeight
  127. }
  128. }