AnimationTakeQuizViewController.swift 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353
  1. //
  2. // AnimationTakeQuizViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 31/01/22.
  6. //
  7. import UIKit
  8. import Alamofire
  9. import RealmSwift
  10. class AnimationTakeQuizViewController: UIViewController {
  11. @IBOutlet var backgroundImageView: UIImageView!
  12. @IBOutlet var timerLabel: UILabel!
  13. @IBOutlet var minuteSecondLabel: UILabel!
  14. @IBOutlet var questionLabel: UILabel!
  15. @IBOutlet var animationView: UIView!
  16. @IBOutlet var cancelButton: UIButton!
  17. //Result submit pop up view outlets
  18. @IBOutlet var submitPopupView: UIView!
  19. @IBOutlet var resultImageView: UIImageView!
  20. @IBOutlet var resultHeadingLabel: UILabel!
  21. @IBOutlet var resultSubHeadingLabel: UILabel!
  22. @IBOutlet var tryAgainButton: UIButton!
  23. @IBOutlet var popUpNextButton: UIButton!
  24. @IBOutlet var viewAnswerButton: UIButton!
  25. //Playing cards outlets
  26. @IBOutlet var cardAnimationView: UIView!
  27. @IBOutlet var frontView1: UIImageView!
  28. @IBOutlet var backView1: UIView!
  29. @IBOutlet var frontView2: UIImageView!
  30. @IBOutlet var backView2: UIView!
  31. @IBOutlet var frontView3: UIImageView!
  32. @IBOutlet var backView3: UIView!
  33. @IBOutlet var frontView4: UIImageView!
  34. @IBOutlet var backView4: UIView!
  35. var circleView: UIView!
  36. var tap: UITapGestureRecognizer!
  37. var quizTimer = Timer()
  38. var frameUpdateTimer = Timer()
  39. var secondsLeft: Int = 300
  40. var quesIndex = 0
  41. var selectedAnswer = [SelectedAnswerModel]()
  42. let studentId = UserDefaultsConstant.getIntValueFromUserDefults(for: Constant.studentId) as! Int
  43. let levelData = DBManager.sharedInstance.database.objects(LevelModel.self)
  44. var topicId = Int()
  45. var topicIndex = Int()
  46. var mainTopicIndex = Int()
  47. var quesBankId = Int()
  48. var quesId = Int()
  49. var selectedChoiceId = Int()
  50. var answerChoiceId = Int()
  51. var choiceArray = [Int]()
  52. var imageArray1 = ["planet", "piggiebank", "playingCardBack"]
  53. var imageArray2 = ["balloon", "coin"]
  54. //Not changing values in quiz process
  55. var levelId = Int()
  56. var runs = Int()
  57. var wickets = Int()
  58. var choice4Image = String()
  59. var choice2Image = String()
  60. var balloon1 : UIImageView!
  61. var balloon2 : UIImageView!
  62. // Planets view setup
  63. // 1
  64. private lazy var planet1: UIView = {
  65. let view = UIView()
  66. view.translatesAutoresizingMaskIntoConstraints = false
  67. view.clipsToBounds = true
  68. view.isUserInteractionEnabled = true
  69. view.alpha = 1.0
  70. var imageView : UIImageView
  71. imageView = UIImageView(frame:CGRect(x: 0, y: 0, width: 150, height: 150));
  72. view.addSubview(imageView)
  73. let tap = UITapGestureRecognizer(target: self, action: #selector(AnimationTakeQuizViewController.planet1Tap(_:)))
  74. tap.numberOfTapsRequired = 1
  75. tap.numberOfTouchesRequired = 1
  76. view.addGestureRecognizer(tap)
  77. let label = UILabel(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
  78. label.center = CGPoint(x: 75, y: 75)
  79. label.textAlignment = .center
  80. label.numberOfLines = 0
  81. label.textColor = UIColor.black
  82. label.font = UIFont.systemFont(ofSize: 14)
  83. view.addSubview(label)
  84. //label.translatesAutoresizingMaskIntoConstraints = true
  85. // view.addConstraint(NSLayoutConstraint(item: label, attribute: .trailing, relatedBy: .equal, toItem: view, attribute: .trailing, multiplier: 1, constant: 10))
  86. // view.addConstraint(NSLayoutConstraint(item: label, attribute: .leading, relatedBy: .equal, toItem: view, attribute: .leading, multiplier: 1, constant: 10))
  87. // label.centerXAnchor.constraint(equalTo: view.centerXAnchor).isActive = true
  88. // label.centerYAnchor.constraint(equalTo: view.centerYAnchor).isActive = true
  89. return view
  90. }()
  91. // 2
  92. private lazy var planet2: UIView = {
  93. let view = UIView()
  94. view.translatesAutoresizingMaskIntoConstraints = false
  95. view.clipsToBounds = true
  96. view.isUserInteractionEnabled = true
  97. view.alpha = 1.0
  98. var imageView : UIImageView
  99. imageView = UIImageView(frame:CGRect(x: 0, y: 0, width: 150, height: 150));
  100. view.addSubview(imageView)
  101. let tap = UITapGestureRecognizer(target: self, action: #selector(AnimationTakeQuizViewController.planet2Tap(_:)))
  102. tap.numberOfTapsRequired = 1
  103. tap.numberOfTouchesRequired = 1
  104. view.addGestureRecognizer(tap)
  105. let label = UILabel(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
  106. label.center = CGPoint(x: 75, y: 75)
  107. label.textAlignment = .center
  108. label.numberOfLines = 0
  109. label.textColor = UIColor.black
  110. label.font = UIFont.systemFont(ofSize: 14)
  111. view.addSubview(label)
  112. return view
  113. }()
  114. // 3
  115. private lazy var planet3: UIView = {
  116. let view = UIView()
  117. view.translatesAutoresizingMaskIntoConstraints = false
  118. view.clipsToBounds = true
  119. view.isUserInteractionEnabled = true
  120. view.alpha = 1.0
  121. var imageView : UIImageView
  122. imageView = UIImageView(frame:CGRect(x: 0, y: 0, width: 150, height: 150));
  123. view.addSubview(imageView)
  124. let tap = UITapGestureRecognizer(target: self, action: #selector(AnimationTakeQuizViewController.planet3Tap(_:)))
  125. tap.numberOfTapsRequired = 1
  126. tap.numberOfTouchesRequired = 1
  127. view.addGestureRecognizer(tap)
  128. let label = UILabel(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
  129. label.center = CGPoint(x: 75, y: 75)
  130. label.textAlignment = .center
  131. label.numberOfLines = 0
  132. label.textColor = UIColor.black
  133. label.font = UIFont.systemFont(ofSize: 14)
  134. view.addSubview(label)
  135. return view
  136. }()
  137. // 4
  138. private lazy var planet4: UIView = {
  139. let view = UIView()
  140. view.translatesAutoresizingMaskIntoConstraints = false
  141. view.clipsToBounds = true
  142. view.isUserInteractionEnabled = true
  143. view.alpha = 1.0
  144. var imageView : UIImageView
  145. imageView = UIImageView(frame:CGRect(x: 0, y: 0, width: 150, height: 150));
  146. view.addSubview(imageView)
  147. let tap = UITapGestureRecognizer(target: self, action: #selector(AnimationTakeQuizViewController.planet4Tap(_:)))
  148. tap.numberOfTapsRequired = 1
  149. tap.numberOfTouchesRequired = 1
  150. view.addGestureRecognizer(tap)
  151. let label = UILabel(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
  152. label.center = CGPoint(x: 75, y: 75)
  153. label.textAlignment = .center
  154. label.numberOfLines = 0
  155. label.textColor = UIColor.black
  156. label.font = UIFont.systemFont(ofSize: 14)
  157. view.addSubview(label)
  158. return view
  159. }()
  160. // private lazy var balloon1: UIView = {
  161. // let view = UIView()
  162. // view.translatesAutoresizingMaskIntoConstraints = false
  163. // view.clipsToBounds = true
  164. // view.isUserInteractionEnabled = true
  165. //
  166. // var imageView : UIImageView
  167. // imageView = UIImageView(frame:CGRect(x: 0, y: 0, width: 100, height: 100));
  168. // view.addSubview(imageView)
  169. //
  170. // let label = UILabel(frame: CGRect(x: 0, y: 0, width: 100, height: 21))
  171. // label.center = CGPoint(x: 80, y: 80)
  172. // label.textAlignment = .center
  173. // label.textColor = UIColor.black
  174. // view.addSubview(label)
  175. //
  176. // label.translatesAutoresizingMaskIntoConstraints = false
  177. //
  178. // view.addConstraint(NSLayoutConstraint(item: label, attribute: .trailing, relatedBy: .equal, toItem: view, attribute: .trailing, multiplier: 1, constant: 10))
  179. // view.addConstraint(NSLayoutConstraint(item: label, attribute: .leading, relatedBy: .equal, toItem: view, attribute: .leading, multiplier: 1, constant: 10))
  180. // label.centerXAnchor.constraint(equalTo: view.centerXAnchor).isActive = true
  181. // label.centerYAnchor.constraint(equalTo: view.centerYAnchor).isActive = true
  182. //
  183. // return view
  184. // }()
  185. override func viewDidLoad() {
  186. super.viewDidLoad()
  187. // Do any additional setup after loading the view.
  188. ApiManager.generateCookie()
  189. getQuesBankId()
  190. }
  191. override func viewWillAppear(_ animated: Bool) {
  192. if let last = levelData.last {
  193. if last.id == levelData[mainTopicIndex].id {
  194. popUpNextButton.setTitle(Helper.translateText(inputText: "SUBMIT"), for: .normal)
  195. } else {
  196. popUpNextButton.setTitle(Helper.translateText(inputText: "Next"), for: .normal)
  197. }
  198. }
  199. minuteSecondLabel.text = "\(Helper.translateText(inputText: "Minutes")) : \(Helper.translateText(inputText: "Seconds"))"
  200. cancelButton.setTitle(Helper.translateText(inputText: "CANCEL"), for: .normal)
  201. tryAgainButton.setTitle(Helper.translateText(inputText: "TRY AGAIN"), for: .normal)
  202. viewAnswerButton.setTitle(Helper.translateText(inputText: "View Answer"), for: .normal)
  203. self.quizTimer = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(self.runQuizTimer), userInfo: nil, repeats: true)
  204. selectedAnswer.removeAll()
  205. }
  206. override func viewDidDisappear(_ animated: Bool) {
  207. self.frameUpdateTimer.invalidate()
  208. }
  209. // Get question and choice id
  210. func getQuesBankId() {
  211. let topicData = DBManager.sharedInstance.database.objects(TopicModel.self)
  212. for item in topicData {
  213. if self.topicId == item.id {
  214. self.levelId = item.levelId
  215. self.quesBankId = item.questionBankId
  216. self.choiceArray.removeAll()
  217. let quesBankData = DBManager.sharedInstance.database.objects(QuestionBankModel.self)
  218. for item in quesBankData {
  219. if self.quesBankId == item.id {
  220. print(item.questions[quesIndex])
  221. let quesData = DBManager.sharedInstance.database.objects(QuestionModel.self)
  222. for data in quesData {
  223. if data.id == item.questions[quesIndex].id {
  224. print("Current Question: \(data.content)")
  225. self.quesId = data.id
  226. self.answerChoiceId = data.answerId
  227. self.questionLabel.text = Helper.translateText(inputText: data.content)
  228. for choice in data.choices {
  229. let id = choice.id
  230. self.choiceArray.append(id)
  231. }
  232. }
  233. }
  234. }
  235. }
  236. }
  237. }
  238. print("Current choices: \(choiceArray)")
  239. setupAnimation()
  240. }
  241. func setupAnimation() {
  242. if choiceArray.count == 4 {
  243. //Remove all subview from animation view
  244. for view in self.animationView.subviews {
  245. view.removeFromSuperview()
  246. }
  247. // Random image for choices set
  248. choice4Image = imageArray1.randomElement()!
  249. // Background Image set
  250. if choice4Image == "planet" {
  251. backgroundImageView.image = UIImage(named: "i_background_space")
  252. animationView.isHidden = false
  253. cardAnimationView.isHidden = true
  254. } else if choice4Image == "piggiebank" {
  255. backgroundImageView.image = UIImage(named: "i_background_target")
  256. animationView.isHidden = false
  257. cardAnimationView.isHidden = true
  258. } else {
  259. backgroundImageView.image = UIImage(named: "i_background_target")
  260. animationView.isHidden = true
  261. cardAnimationView.isHidden = false
  262. for view in self.backView1.subviews {
  263. view.removeFromSuperview()
  264. }
  265. for view in self.backView2.subviews {
  266. view.removeFromSuperview()
  267. }
  268. for view in self.backView3.subviews {
  269. view.removeFromSuperview()
  270. }
  271. for view in self.backView4.subviews {
  272. view.removeFromSuperview()
  273. }
  274. }
  275. //Planet animation setup
  276. planetSetup { (success) -> Void in
  277. if success {
  278. // do second task if success
  279. //Planet animation start
  280. startAnimating()
  281. }
  282. }
  283. //Timer to get updated location of planet views
  284. frameUpdateTimer = Timer.scheduledTimer(timeInterval: 0.01, target: self, selector: #selector(self.update), userInfo: nil, repeats: true)
  285. } else {
  286. animationView.isHidden = false
  287. cardAnimationView.isHidden = true
  288. frameUpdateTimer.invalidate()
  289. //Remove all subview from animation view
  290. for view in self.animationView.subviews {
  291. view.removeFromSuperview()
  292. }
  293. // Random image for choices set
  294. choice2Image = imageArray2.randomElement()!
  295. // Images setup
  296. balloonImageSetup()
  297. // Background Image set
  298. if choice2Image == "coin" {
  299. backgroundImageView.image = UIImage(named: "i_background_coin")
  300. } else {
  301. backgroundImageView.image = UIImage(named: "i_background_target")
  302. }
  303. //Planet animation setup
  304. balloonSetup { (success) -> Void in
  305. if success {
  306. // do second task if success
  307. //Balloon animation start
  308. balloonAnimation1()
  309. balloonAnimation2()
  310. }
  311. }
  312. //Tag gesture on balloon view
  313. tap = UITapGestureRecognizer(target: self, action: #selector(AnimationTakeQuizViewController.viewTap(_:)))
  314. view.addGestureRecognizer(tap)
  315. }
  316. }
  317. //Function to setup planet views
  318. func planetSetup(completion: (_ success: Bool) -> Void) {
  319. if choice4Image == "playingCardBack" {
  320. //Card 1
  321. frontView1.isHidden = false
  322. frontView1.layer.cornerRadius = 10
  323. backView1.layer.borderWidth = 4
  324. backView1.layer.cornerRadius = 10
  325. backView1.layer.borderColor = UIColor.black.cgColor
  326. backView1.backgroundColor = UIColor.white
  327. backView1.alpha = 1.0
  328. backView1.isHidden = true
  329. let imageView1 = UIImageView(frame: CGRect(x: 0, y: 0, width: backView1.frame.width - 10, height: backView1.frame.height - 10))
  330. imageView1.image = UIImage(named: "spades")
  331. imageView1.clipsToBounds = true
  332. imageView1.contentMode = .scaleAspectFit
  333. imageView1.center = backView1.center
  334. backView1.addSubview(imageView1)
  335. let label1 = UILabel(frame: CGRect(x: 0, y: 0, width: backView1.frame.width - 5, height: 100))
  336. label1.center = backView1.center
  337. label1.textAlignment = .center
  338. label1.numberOfLines = 0
  339. label1.text = Helper.translateText(inputText: getChoice(id: choiceArray[0]))
  340. backView1.addSubview(label1)
  341. //Card 2
  342. frontView2.isHidden = false
  343. frontView2.layer.cornerRadius = 10
  344. backView2.layer.borderWidth = 4
  345. backView2.layer.cornerRadius = 10
  346. backView2.layer.borderColor = UIColor.black.cgColor
  347. backView2.backgroundColor = UIColor.white
  348. backView2.alpha = 1.0
  349. backView2.isHidden = true
  350. let imageView2 = UIImageView(frame: CGRect(x: 0, y: 0, width: backView2.frame.width - 10, height: backView2.frame.height - 10))
  351. imageView2.image = UIImage(named: "hearts")
  352. imageView2.clipsToBounds = true
  353. imageView2.contentMode = .scaleAspectFit
  354. imageView2.center = backView2.center
  355. backView2.addSubview(imageView2)
  356. let label2 = UILabel(frame: CGRect(x: 0, y: 0, width: backView2.frame.width - 5, height: 100))
  357. label2.center = backView2.center
  358. label2.textAlignment = .center
  359. label2.numberOfLines = 0
  360. label2.text = Helper.translateText(inputText: getChoice(id: choiceArray[1]))
  361. backView2.addSubview(label2)
  362. //Card 3
  363. frontView3.isHidden = false
  364. frontView3.layer.cornerRadius = 10
  365. backView3.layer.borderWidth = 4
  366. backView3.layer.cornerRadius = 10
  367. backView3.layer.borderColor = UIColor.black.cgColor
  368. backView3.backgroundColor = UIColor.white
  369. backView3.alpha = 1.0
  370. backView3.isHidden = true
  371. let imageView3 = UIImageView(frame: CGRect(x: 0, y: 0, width: backView3.frame.width - 10, height: backView3.frame.height - 10))
  372. imageView3.image = UIImage(named: "diamonds")
  373. imageView3.clipsToBounds = true
  374. imageView3.contentMode = .scaleAspectFit
  375. imageView3.center = backView3.center
  376. backView3.addSubview(imageView3)
  377. let label3 = UILabel(frame: CGRect(x: 0, y: 0, width: backView3.frame.width - 5, height: 100))
  378. label3.center = backView3.center
  379. label3.textAlignment = .center
  380. label3.numberOfLines = 0
  381. label3.text = Helper.translateText(inputText: getChoice(id: choiceArray[2]))
  382. backView3.addSubview(label3)
  383. //Card 4
  384. frontView4.isHidden = false
  385. frontView4.layer.cornerRadius = 10
  386. backView4.layer.borderWidth = 4
  387. backView4.layer.cornerRadius = 10
  388. backView4.layer.borderColor = UIColor.black.cgColor
  389. backView4.backgroundColor = UIColor.white
  390. backView4.alpha = 1.0
  391. backView4.isHidden = true
  392. let imageView4 = UIImageView(frame: CGRect(x: 0, y: 0, width: backView4.frame.width - 10, height: backView4.frame.height - 10))
  393. imageView4.image = UIImage(named: "clubs")
  394. imageView4.clipsToBounds = true
  395. imageView4.contentMode = .scaleAspectFit
  396. imageView4.center = backView4.center
  397. backView4.addSubview(imageView4)
  398. let label4 = UILabel(frame: CGRect(x: 0, y: 0, width: backView4.frame.width - 5, height: 100))
  399. label4.center = backView4.center
  400. label4.textAlignment = .center
  401. label4.numberOfLines = 0
  402. label4.text = Helper.translateText(inputText: getChoice(id: choiceArray[3]))
  403. backView4.addSubview(label4)
  404. } else {
  405. //Circle view setup
  406. circleView = UIView(frame: CGRect(x: 0.0, y: 0.0, width: 240, height: 240))
  407. circleView.backgroundColor = UIColor.clear
  408. animationView.addSubview(circleView)
  409. circleView.center = CGPoint(x: animationView.frame.size.width/2, y: animationView.frame.size.height/2)
  410. //Add planet1 subview to circle
  411. //1
  412. circleView.addSubview(self.planet1)
  413. planet1.alpha = 1.0
  414. NSLayoutConstraint.activate([
  415. self.planet1.widthAnchor.constraint(equalToConstant: 150),
  416. self.planet1.heightAnchor.constraint(equalToConstant: 150)
  417. ])
  418. //2
  419. circleView.addSubview(self.planet2)
  420. planet2.alpha = 1.0
  421. NSLayoutConstraint.activate([
  422. self.planet2.widthAnchor.constraint(equalToConstant: 150),
  423. self.planet2.heightAnchor.constraint(equalToConstant: 150)
  424. ])
  425. //3
  426. circleView.addSubview(self.planet3)
  427. planet3.alpha = 1.0
  428. NSLayoutConstraint.activate([
  429. self.planet3.widthAnchor.constraint(equalToConstant: 150),
  430. self.planet3.heightAnchor.constraint(equalToConstant: 150)
  431. ])
  432. //4
  433. circleView.addSubview(self.planet4)
  434. planet4.alpha = 1.0
  435. NSLayoutConstraint.activate([
  436. self.planet4.widthAnchor.constraint(equalToConstant: 150),
  437. self.planet4.heightAnchor.constraint(equalToConstant: 150)
  438. ])
  439. //Choice label text set for planet
  440. //1
  441. for subview:AnyObject in planet1.subviews {
  442. if (subview.isKind(of: UIImageView.self) && subview.tag == 0)
  443. {
  444. let imageView = subview as! UIImageView
  445. imageView.image = UIImage(named: choice4Image)
  446. }
  447. if (subview.isKind(of: UILabel.self) && subview.tag == 0)
  448. {
  449. let label = subview as! UILabel
  450. label.text = Helper.translateText(inputText: getChoice(id: choiceArray[0]))
  451. }
  452. }
  453. //2
  454. for subview:AnyObject in planet2.subviews {
  455. if (subview.isKind(of: UIImageView.self) && subview.tag == 0)
  456. {
  457. let imageView = subview as! UIImageView
  458. imageView.image = UIImage(named: choice4Image)
  459. }
  460. if (subview.isKind(of: UILabel.self) && subview.tag == 0)
  461. {
  462. let label = subview as! UILabel
  463. label.text = Helper.translateText(inputText: getChoice(id: choiceArray[1]))
  464. }
  465. }
  466. //3
  467. for subview:AnyObject in planet3.subviews {
  468. if (subview.isKind(of: UIImageView.self) && subview.tag == 0)
  469. {
  470. let imageView = subview as! UIImageView
  471. imageView.image = UIImage(named: choice4Image)
  472. }
  473. if (subview.isKind(of: UILabel.self) && subview.tag == 0)
  474. {
  475. let label = subview as! UILabel
  476. label.text = Helper.translateText(inputText: getChoice(id: choiceArray[2]))
  477. }
  478. }
  479. //4
  480. for subview:AnyObject in planet4.subviews {
  481. if (subview.isKind(of: UIImageView.self) && subview.tag == 0)
  482. {
  483. let imageView = subview as! UIImageView
  484. imageView.image = UIImage(named: choice4Image)
  485. }
  486. if (subview.isKind(of: UILabel.self) && subview.tag == 0)
  487. {
  488. let label = subview as! UILabel
  489. label.text = Helper.translateText(inputText: getChoice(id: choiceArray[3]))
  490. }
  491. }
  492. // Circle view round set
  493. self.circleView.layer.cornerRadius = self.circleView.frame.width / 2.0
  494. // Planet views position and radius set
  495. // 1
  496. self.planet1.layer.cornerRadius = self.planet1.frame.width / 2.0
  497. self.planet1.center = self.getPoint(for: -90)
  498. // 2
  499. self.planet2.layer.cornerRadius = self.planet2.frame.width / 2.0
  500. self.planet2.center = self.getPoint(for: -180)
  501. // 3
  502. self.planet3.layer.cornerRadius = self.planet3.frame.width / 2.0
  503. self.planet3.center = self.getPoint(for: -270)
  504. // 4
  505. self.planet4.layer.cornerRadius = self.planet4.frame.width / 2.0
  506. self.planet4.center = self.getPoint(for: 0)
  507. }
  508. // Call completion, when finished, success or faliure
  509. completion(true)
  510. }
  511. func balloonImageSetup() {
  512. // Balloon image setup
  513. // 1
  514. let image5 = UIImage(named: choice2Image)
  515. balloon1 = UIImageView(image: image5!)
  516. if choice2Image == "coin" {
  517. balloon1.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
  518. } else {
  519. balloon1.frame = CGRect(x: 0, y: 0, width: 150, height: 150)
  520. }
  521. balloon1.image = UIImage(named:choice2Image)
  522. balloon1.alpha = 1
  523. let label5 = UILabel(frame: CGRect(x: 0, y: 0, width: 150, height: 21))
  524. label5.center = CGPoint(x: 75, y: 75)
  525. label5.textAlignment = .center
  526. label5.textColor = UIColor.black
  527. label5.font = UIFont.systemFont(ofSize: 14)
  528. label5.text = Helper.translateText(inputText: getChoice(id: choiceArray[0]))
  529. balloon1.addSubview(label5)
  530. label5.translatesAutoresizingMaskIntoConstraints = false
  531. //
  532. // balloon1.addConstraint(NSLayoutConstraint(item: label5, attribute: .trailing, relatedBy: .equal, toItem: balloon1, attribute: .trailing, multiplier: 1, constant: 10))
  533. balloon1.addConstraint(NSLayoutConstraint(item: label5, attribute: .top, relatedBy: .equal, toItem: balloon1, attribute: .top, multiplier: 1, constant: 50))
  534. NSLayoutConstraint.activate([
  535. balloon1.widthAnchor.constraint(equalToConstant: 150),
  536. balloon1.heightAnchor.constraint(equalToConstant: 150)
  537. ])
  538. label5.centerXAnchor.constraint(equalTo: balloon1.centerXAnchor).isActive = true
  539. //label5.centerYAnchor.constraint(equalTo: balloon1.centerYAnchor).isActive = true
  540. // 2
  541. let image6 = UIImage(named: choice2Image)
  542. balloon2 = UIImageView(image: image6!)
  543. if choice2Image == "coin" {
  544. balloon2.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
  545. } else {
  546. balloon2.frame = CGRect(x: 0, y: 0, width: 150, height: 150)
  547. }
  548. balloon2.image = UIImage(named:choice2Image)
  549. balloon2.alpha = 1
  550. let label6 = UILabel(frame: CGRect(x: 0, y: 0, width: 150, height: 21))
  551. label6.center = CGPoint(x: 75, y: 75)
  552. label6.textAlignment = .center
  553. label6.textColor = UIColor.black
  554. label6.font = UIFont.systemFont(ofSize: 14)
  555. label6.text = Helper.translateText(inputText: getChoice(id: choiceArray[1]))
  556. balloon2.addSubview(label6)
  557. label6.translatesAutoresizingMaskIntoConstraints = false
  558. //
  559. // balloon1.addConstraint(NSLayoutConstraint(item: label5, attribute: .trailing, relatedBy: .equal, toItem: balloon1, attribute: .trailing, multiplier: 1, constant: 10))
  560. balloon2.addConstraint(NSLayoutConstraint(item: label6, attribute: .top, relatedBy: .equal, toItem: balloon2, attribute: .top, multiplier: 1, constant: 50))
  561. NSLayoutConstraint.activate([
  562. balloon2.widthAnchor.constraint(equalToConstant: 150),
  563. balloon2.heightAnchor.constraint(equalToConstant: 150)
  564. ])
  565. label6.centerXAnchor.constraint(equalTo: balloon2.centerXAnchor).isActive = true
  566. //label5.centerYAnchor.constraint(equalTo: balloon1.centerYAnchor).isActive = true
  567. }
  568. func balloonSetup(completion: (_ success: Bool) -> Void) {
  569. //Balloon stackview create
  570. let stackView = UIStackView()
  571. stackView.axis = .horizontal
  572. stackView.distribution = .fillEqually
  573. stackView.alignment = .center
  574. stackView.spacing = 10.0
  575. stackView.addArrangedSubview(balloon1)
  576. stackView.addArrangedSubview(balloon2)
  577. stackView.translatesAutoresizingMaskIntoConstraints = false
  578. //Add stack view to animation view
  579. animationView.addSubview(stackView)
  580. //Constraints set to stackview and animation view
  581. animationView.addConstraint(NSLayoutConstraint(item: stackView, attribute: .trailing, relatedBy: .equal, toItem: animationView, attribute: .trailing, multiplier: 1, constant: 0))
  582. animationView.addConstraint(NSLayoutConstraint(item: stackView, attribute: .leading, relatedBy: .equal, toItem: animationView, attribute: .leading, multiplier: 1, constant: 0))
  583. stackView.heightAnchor.constraint(equalToConstant: 150).isActive = true
  584. stackView.centerXAnchor.constraint(equalTo: self.animationView.centerXAnchor).isActive = true
  585. stackView.centerYAnchor.constraint(equalTo: self.animationView.centerYAnchor).isActive = true
  586. //Choice label text set for balloon
  587. //1
  588. for subview:AnyObject in balloon1.subviews {
  589. if (subview.isKind(of: UIImageView.self) && subview.tag == 0)
  590. {
  591. let imageView = subview as! UIImageView
  592. imageView.image = UIImage(named: choice2Image)
  593. }
  594. if (subview.isKind(of: UILabel.self) && subview.tag == 0)
  595. {
  596. let label = subview as! UILabel
  597. label.text = Helper.translateText(inputText: getChoice(id: choiceArray[0]))
  598. }
  599. }
  600. //2
  601. for subview:AnyObject in balloon2.subviews {
  602. if (subview.isKind(of: UILabel.self) && subview.tag == 0)
  603. {
  604. let label = subview as! UILabel
  605. label.text = Helper.translateText(inputText: getChoice(id: choiceArray[1]))
  606. }
  607. }
  608. completion(true)
  609. }
  610. //Function to get updated location of planet views
  611. @objc func update() {
  612. let planet1Location = planet1.layer.presentation()?.frame
  613. planet1.frame = CGRect(x: planet1Location?.origin.x ?? 0.0, y: planet1Location?.origin.y ?? 0.0, width: planet1Location?.size.width ?? 0.0, height: planet1Location?.size.height ?? 0.0)
  614. let planet2Location = planet2.layer.presentation()?.frame
  615. planet2.frame = CGRect(x: planet2Location?.origin.x ?? 0.0, y: planet2Location?.origin.y ?? 0.0, width: planet2Location?.size.width ?? 0.0, height: planet2Location?.size.height ?? 0.0)
  616. let planet3Location = planet3.layer.presentation()?.frame
  617. planet3.frame = CGRect(x: planet3Location?.origin.x ?? 0.0, y: planet3Location?.origin.y ?? 0.0, width: planet3Location?.size.width ?? 0.0, height: planet3Location?.size.height ?? 0.0)
  618. let planet4Location = planet4.layer.presentation()?.frame
  619. planet4.frame = CGRect(x: planet4Location?.origin.x ?? 0.0, y: planet4Location?.origin.y ?? 0.0, width: planet4Location?.size.width ?? 0.0, height: planet4Location?.size.height ?? 0.0)
  620. }
  621. // MARK: - Animation
  622. func startAnimating() {
  623. if choice4Image == "playingCardBack" {
  624. perform(#selector(card1Animate), with: nil, afterDelay: 1)
  625. perform(#selector(card2Animate), with: nil, afterDelay: 1)
  626. perform(#selector(card3Animate), with: nil, afterDelay: 1)
  627. perform(#selector(card4Animate), with: nil, afterDelay: 1)
  628. // Tap gesture assign
  629. // 1
  630. let tap1 = UITapGestureRecognizer(target: self, action: #selector(AnimationTakeQuizViewController.planet1Tap(_:)))
  631. tap1.numberOfTapsRequired = 1
  632. tap1.numberOfTouchesRequired = 1
  633. backView1.addGestureRecognizer(tap1)
  634. // 2
  635. let tap2 = UITapGestureRecognizer(target: self, action: #selector(AnimationTakeQuizViewController.planet2Tap(_:)))
  636. tap2.numberOfTapsRequired = 1
  637. tap2.numberOfTouchesRequired = 1
  638. backView2.addGestureRecognizer(tap2)
  639. // 3
  640. let tap3 = UITapGestureRecognizer(target: self, action: #selector(AnimationTakeQuizViewController.planet3Tap(_:)))
  641. tap3.numberOfTapsRequired = 1
  642. tap3.numberOfTouchesRequired = 1
  643. backView3.addGestureRecognizer(tap3)
  644. // 4
  645. let tap4 = UITapGestureRecognizer(target: self, action: #selector(AnimationTakeQuizViewController.planet4Tap(_:)))
  646. tap4.numberOfTapsRequired = 1
  647. tap4.numberOfTouchesRequired = 1
  648. backView4.addGestureRecognizer(tap4)
  649. } else {
  650. // 1
  651. let path = UIBezierPath()
  652. let initialPoint = self.getPoint(for: -90)
  653. path.move(to: initialPoint)
  654. for angle in -89...0 { path.addLine(to: self.getPoint(for: angle)) }
  655. for angle in 1...270 { path.addLine(to: self.getPoint(for: angle)) }
  656. path.close()
  657. // 2
  658. let path1 = UIBezierPath()
  659. let initialPoint1 = self.getPoint(for: -180)
  660. path1.move(to: initialPoint1)
  661. for angle in -179...0 { path1.addLine(to: self.getPoint(for: angle)) }
  662. for angle in 1...180 { path1.addLine(to: self.getPoint(for: angle)) }
  663. path1.close()
  664. // 3
  665. let path2 = UIBezierPath()
  666. let initialPoint2 = self.getPoint(for: -270)
  667. path2.move(to: initialPoint2)
  668. for angle in -269...0 { path2.addLine(to: self.getPoint(for: angle)) }
  669. for angle in 1...90 { path2.addLine(to: self.getPoint(for: angle)) }
  670. path2.close()
  671. // 4
  672. let path3 = UIBezierPath()
  673. let initialPoint3 = self.getPoint(for: 0)
  674. path3.move(to: initialPoint3)
  675. for angle in 1...90 { path3.addLine(to: self.getPoint(for: angle)) }
  676. for angle in 91...360 { path3.addLine(to: self.getPoint(for: angle)) }
  677. path.close()
  678. // Set animation to planet views
  679. self.animate(view: self.planet1, path: path)
  680. self.animate(view: self.planet2, path: path1)
  681. self.animate(view: self.planet3, path: path2)
  682. self.animate(view: self.planet4, path: path3)
  683. }
  684. }
  685. private func getPoint(for angle: Int) -> CGPoint {
  686. // 1
  687. let radius = Double(self.circleView.layer.cornerRadius)
  688. // 2
  689. let radian = Double(angle) * Double.pi / Double(180)
  690. // 3
  691. let newCenterX = radius + radius * cos(radian)
  692. let newCenterY = radius + radius * sin(radian)
  693. return CGPoint(x: newCenterX, y: newCenterY)
  694. }
  695. //Animation for circular motion
  696. private func animate(view: UIView, path: UIBezierPath) {
  697. // 1
  698. let animation = CAKeyframeAnimation(keyPath: "position")
  699. // 2
  700. animation.path = path.cgPath
  701. // 3
  702. animation.repeatCount = 10
  703. // 4
  704. animation.duration = 20
  705. // 5
  706. animation.speed = 1.0
  707. // 6
  708. //animation.timeOffset = 0
  709. // 7
  710. view.layer.add(animation, forKey: "animation")
  711. }
  712. //Function to stop planets animation
  713. func stopAnimation() {
  714. self.pause(view: self.planet1)
  715. self.pause(view: self.planet2)
  716. self.pause(view: self.planet3)
  717. self.pause(view: self.planet4)
  718. }
  719. private func pause(view: UIView) {
  720. let pausedTime = view.layer.convertTime(CACurrentMediaTime(), from: nil)
  721. view.layer.speed = 0
  722. view.layer.timeOffset = pausedTime
  723. view.layer.transform = view.layer.presentation()!.transform
  724. view.layer.removeAnimation(forKey: "transform")
  725. }
  726. //Function to resume planets animation
  727. func resumeAnimation() {
  728. self.resume(view: self.planet1)
  729. self.resume(view: self.planet2)
  730. self.resume(view: self.planet3)
  731. self.resume(view: self.planet4)
  732. }
  733. private func resume(view: UIView) {
  734. let pausedTime = view.layer.timeOffset
  735. view.layer.speed = 1.0
  736. view.layer.timeOffset = 0
  737. let timeSincePause = view.layer.convertTime(CACurrentMediaTime(), from: nil) - pausedTime
  738. view.layer.beginTime = timeSincePause
  739. }
  740. // Planets tap gesture function
  741. // 1
  742. @objc func planet1Tap(_ sender: UITapGestureRecognizer) {
  743. if choice4Image == "playingCardBack" {
  744. backView1.alpha = 0.5
  745. backView2.alpha = 1.0
  746. backView3.alpha = 1.0
  747. backView4.alpha = 1.0
  748. } else {
  749. planet1.alpha = 0.5
  750. planet2.alpha = 1.0
  751. planet3.alpha = 1.0
  752. planet4.alpha = 1.0
  753. }
  754. self.selectedChoiceId = choiceArray[0]
  755. //nextQuiz()
  756. }
  757. // 2
  758. @objc func planet2Tap(_ sender: UITapGestureRecognizer) {
  759. if choice4Image == "playingCardBack" {
  760. backView1.alpha = 1.0
  761. backView2.alpha = 0.5
  762. backView3.alpha = 1.0
  763. backView4.alpha = 1.0
  764. } else {
  765. planet1.alpha = 1.0
  766. planet2.alpha = 0.5
  767. planet3.alpha = 1.0
  768. planet4.alpha = 1.0
  769. }
  770. self.selectedChoiceId = choiceArray[1]
  771. //nextQuiz()
  772. }
  773. // 3
  774. @objc func planet3Tap(_ sender: UITapGestureRecognizer) {
  775. if choice4Image == "playingCardBack" {
  776. backView1.alpha = 1.0
  777. backView2.alpha = 1.0
  778. backView3.alpha = 0.5
  779. backView4.alpha = 1.0
  780. } else {
  781. planet1.alpha = 1.0
  782. planet2.alpha = 1.0
  783. planet3.alpha = 0.5
  784. planet4.alpha = 1.0
  785. }
  786. self.selectedChoiceId = choiceArray[2]
  787. //nextQuiz()
  788. }
  789. // 4
  790. @objc func planet4Tap(_ sender: UITapGestureRecognizer) {
  791. if choice4Image == "playingCardBack" {
  792. backView1.alpha = 1.0
  793. backView2.alpha = 1.0
  794. backView3.alpha = 1.0
  795. backView4.alpha = 0.5
  796. } else {
  797. planet1.alpha = 1.0
  798. planet2.alpha = 1.0
  799. planet3.alpha = 1.0
  800. planet4.alpha = 0.5
  801. }
  802. self.selectedChoiceId = choiceArray[3]
  803. //nextQuiz()
  804. }
  805. // Floating animations
  806. //1
  807. func balloonAnimation1() {
  808. let hover = CABasicAnimation(keyPath: "position")
  809. hover.isAdditive = true
  810. hover.fromValue = NSValue(cgPoint: CGPoint(x: 0.0, y: -100.0))
  811. hover.toValue = NSValue(cgPoint: CGPoint(x: 0.0, y: 100.0))
  812. hover.autoreverses = true
  813. hover.duration = 10
  814. hover.speed = 1.0
  815. hover.repeatCount = Float.infinity
  816. balloon1.layer.add(hover, forKey: "myHoverAnimation")
  817. }
  818. //2
  819. func balloonAnimation2() {
  820. let hover = CABasicAnimation(keyPath: "position")
  821. hover.isAdditive = true
  822. hover.fromValue = NSValue(cgPoint: CGPoint(x: 0.0, y: 100.0))
  823. hover.toValue = NSValue(cgPoint: CGPoint(x: 0.0, y: -100.0))
  824. hover.autoreverses = true
  825. hover.duration = 10
  826. hover.speed = 1.0
  827. hover.repeatCount = Float.infinity
  828. balloon2.layer.add(hover, forKey: "myHoverAnimation")
  829. }
  830. // Pause floating animation
  831. func pauseLayer(layer : CALayer){
  832. let pausedTime : CFTimeInterval = layer.convertTime(CACurrentMediaTime(), from: nil)
  833. layer.speed = 0.0
  834. layer.timeOffset = pausedTime
  835. }
  836. // Resume floating animation
  837. func resumeAnimation(layer : CALayer){
  838. let pausedTime = layer.timeOffset
  839. layer.speed = 1.0
  840. layer.timeOffset = 0.0
  841. layer.beginTime = 0.0
  842. let timeSincePause = layer.convertTime(CACurrentMediaTime(), from: nil) - pausedTime
  843. layer.beginTime = timeSincePause
  844. }
  845. // Cards animation
  846. // 1
  847. @objc func card1Animate() {
  848. let transitionOptions: UIView.AnimationOptions = [.transitionFlipFromRight, .showHideTransitionViews]
  849. UIView.transition(with: frontView1, duration: 0.5, options: transitionOptions, animations: { [self] in
  850. frontView1.isHidden = true
  851. })
  852. UIView.transition(with: backView1, duration: 0.5, options: transitionOptions, animations: { [self] in
  853. backView1.isHidden = false
  854. })
  855. }
  856. // 2
  857. @objc func card2Animate() {
  858. let transitionOptions: UIView.AnimationOptions = [.transitionFlipFromRight, .showHideTransitionViews]
  859. UIView.transition(with: frontView2, duration: 0.5, options: transitionOptions, animations: { [self] in
  860. frontView2.isHidden = true
  861. })
  862. UIView.transition(with: backView2, duration: 0.5, options: transitionOptions, animations: { [self] in
  863. backView2.isHidden = false
  864. })
  865. }
  866. // 3
  867. @objc func card3Animate() {
  868. let transitionOptions: UIView.AnimationOptions = [.transitionFlipFromRight, .showHideTransitionViews]
  869. UIView.transition(with: frontView3, duration: 0.5, options: transitionOptions, animations: { [self] in
  870. frontView3.isHidden = true
  871. })
  872. UIView.transition(with: backView3, duration: 0.5, options: transitionOptions, animations: { [self] in
  873. backView3.isHidden = false
  874. })
  875. }
  876. // 4
  877. @objc func card4Animate() {
  878. let transitionOptions: UIView.AnimationOptions = [.transitionFlipFromRight, .showHideTransitionViews]
  879. UIView.transition(with: frontView4, duration: 0.5, options: transitionOptions, animations: { [self] in
  880. frontView4.isHidden = true
  881. })
  882. UIView.transition(with: backView4, duration: 0.5, options: transitionOptions, animations: { [self] in
  883. backView4.isHidden = false
  884. })
  885. }
  886. //Balloons tap gesture functions
  887. @objc func viewTap(_ sender: UITapGestureRecognizer) {
  888. let view1Location = sender.location(in: balloon1.superview)
  889. let view2Location = sender.location(in: balloon2.superview)
  890. if (balloon1.layer.presentation()?.frame.contains(view1Location))! { // If balloon position is equal to the position in animation view
  891. self.selectedChoiceId = choiceArray[0]
  892. //nextQuiz()
  893. balloon1.alpha = 0.5
  894. balloon2.alpha = 1.0
  895. // pauseLayer(layer: balloon1.layer)
  896. // pauseLayer(layer: balloon2.layer)
  897. } else if (balloon2.layer.presentation()?.frame.contains(view2Location))! {
  898. self.selectedChoiceId = choiceArray[1]
  899. //nextQuiz()
  900. balloon1.alpha = 1.0
  901. balloon2.alpha = 0.5
  902. // pauseLayer(layer: balloon1.layer)
  903. // pauseLayer(layer: balloon2.layer)
  904. }
  905. }
  906. // MARK: - Quiz
  907. // Next quiz navigate
  908. func nextQuiz() {
  909. if quesIndex == 4 {
  910. saveSelectedChoice()
  911. quizTimer.invalidate()
  912. Alert.showAlertWithAction(vc: self, title: Helper.translateText(inputText: "Are you sure, you want to submit the quiz?"), message: "\(Helper.translateText(inputText: "You have completed")) \(selectedAnswer.count) \(Helper.translateText(inputText: "out of")) 5 \(Helper.translateText(inputText: "questions"))", alertStyle: .alert, actionTitles: [Helper.translateText(inputText: "CANCEL"), Helper.translateText(inputText: "YES")], actionStyles: [.cancel, .default], actions: [{_ in
  913. }, {[self]_ in
  914. getResult()
  915. saveScoreBoard()
  916. }])
  917. } else {
  918. if quesIndex < 4 {
  919. saveSelectedChoice()
  920. quesIndex += 1
  921. getQuesBankId()
  922. }
  923. }
  924. }
  925. // Quiz timer function
  926. @objc func runQuizTimer(_ runningTimer: Timer) {
  927. var minute: Int
  928. var second: Int
  929. secondsLeft -= 1
  930. if secondsLeft == 0 || secondsLeft < 0 {
  931. timerLabel.text = "00 : 00"
  932. quizTimer.invalidate()
  933. getResult()
  934. saveScoreBoard()
  935. } else {
  936. minute = (secondsLeft % 3600) / 60
  937. second = (secondsLeft % 3600) % 60
  938. timerLabel.text = "\(String(format: "%02d", minute)) : \(String(format: "%02d", second))"
  939. print()
  940. }
  941. }
  942. // Get choice from choice id
  943. func getChoice(id:Int) -> String {
  944. let choiceData = DBManager.sharedInstance.database.objects(ChoiceModel.self)
  945. var choiceString = ""
  946. for choice in choiceData {
  947. if id == choice.id {
  948. choiceString = choice.content
  949. }
  950. }
  951. return choiceString
  952. }
  953. // Save selected choice
  954. func saveSelectedChoice() {
  955. if let row = self.selectedAnswer.firstIndex(where: {$0.quesId == self.quesId}) {
  956. print("Before update: \(selectedAnswer[row])")
  957. selectedAnswer[row].choiceId = self.selectedChoiceId
  958. print("After update: \(selectedAnswer[row])")
  959. } else {
  960. let answer = SelectedAnswerModel(quesId: quesId, choiceId: selectedChoiceId, answerId: answerChoiceId)
  961. selectedAnswer.append(answer)
  962. }
  963. for item in selectedAnswer {
  964. print("Saved QuesId: \(item.quesId), Saved ChoiceId: \(item.choiceId), Saved Answer: \(item.answerId)")
  965. }
  966. }
  967. // Get selected choice
  968. func getSelectedChoice() {
  969. if let row = self.selectedAnswer.firstIndex(where: {$0.quesId == self.quesId}) {
  970. selectedAnswer[row].choiceId = self.selectedChoiceId
  971. }
  972. }
  973. // Get correct choice id
  974. func getCorrectAnswerNumber() -> Int {
  975. var score = 0
  976. for answer in selectedAnswer {
  977. if answer.choiceId == answer.answerId {
  978. score += 1
  979. }
  980. }
  981. return score
  982. }
  983. func getResult() {
  984. switch getCorrectAnswerNumber() {
  985. case 0, 1:
  986. resultImageView.image = UIImage(named: "i_run_out")
  987. resultHeadingLabel.text = Helper.translateText(inputText: "Oh No You are Out Better luck next time")
  988. resultSubHeadingLabel.text = "\(Helper.translateText(inputText: "You have got")) \(getCorrectAnswerNumber())/5 \(Helper.translateText(inputText: "questions right"))"
  989. runs = 0
  990. wickets = 1
  991. return
  992. case 2:
  993. resultImageView.image = UIImage(named: "i_run_two")
  994. resultHeadingLabel.text = Helper.translateText(inputText: "It\'s a two Try Again")
  995. resultSubHeadingLabel.text = "\(Helper.translateText(inputText: "You have got")) \(getCorrectAnswerNumber())/5 \(Helper.translateText(inputText: "questions right"))"
  996. runs = 0
  997. wickets = 0
  998. return
  999. case 3:
  1000. resultImageView.image = UIImage(named: "i_run_three")
  1001. resultHeadingLabel.text = Helper.translateText(inputText: "It\'s a three Nice Hit")
  1002. resultSubHeadingLabel.text = "\(Helper.translateText(inputText: "You have got")) \(getCorrectAnswerNumber())/5 \(Helper.translateText(inputText: "questions right"))"
  1003. runs = 3
  1004. wickets = 0
  1005. return
  1006. case 4:
  1007. resultImageView.image = UIImage(named: "i_run_four")
  1008. resultHeadingLabel.text = Helper.translateText(inputText: "It\'s a four What a tremendous hit")
  1009. resultSubHeadingLabel.text = "\(Helper.translateText(inputText: "You have got")) \(getCorrectAnswerNumber())/5 \(Helper.translateText(inputText: "questions right"))"
  1010. runs = 4
  1011. wickets = 0
  1012. return
  1013. case 5:
  1014. resultImageView.image = UIImage(named: "i_run_six")
  1015. resultHeadingLabel.text = Helper.translateText(inputText: "It\'s a six What a tremendous hit")
  1016. resultSubHeadingLabel.text = "\(Helper.translateText(inputText: "You have got")) \(getCorrectAnswerNumber())/5 \(Helper.translateText(inputText: "questions right"))"
  1017. runs = 61
  1018. wickets = 0
  1019. return
  1020. default:
  1021. return
  1022. }
  1023. }
  1024. // Save score board
  1025. func saveScoreBoard() {
  1026. var saveScore = [SaveScoreBoard]()
  1027. let scoreData = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  1028. var itemId = Int()
  1029. var noOfAttempts = Int()
  1030. var totalWickets = Int()
  1031. var totalRuns = Int()
  1032. for quiz in scoreData {
  1033. if quiz.levelId == self.levelId && quiz.topicId == self.topicId {
  1034. itemId = scoreData.count + 1
  1035. noOfAttempts = quiz.noOfAttempts + 1
  1036. totalWickets = quiz.wickets + self.wickets
  1037. if quiz.runs >= self.runs {
  1038. totalRuns = quiz.runs
  1039. } else {
  1040. totalRuns = self.runs
  1041. }
  1042. } else {
  1043. itemId = scoreData.count + 1
  1044. noOfAttempts = 1
  1045. totalWickets = self.wickets
  1046. totalRuns = self.runs
  1047. }
  1048. }
  1049. let newSaveScoreModel = SaveScoreBoard(id: itemId, levelId: levelId, topicId: topicId, runs: totalRuns, wickets: totalWickets, noOfAttempts: noOfAttempts, student: studentId, synced: false)
  1050. saveScore.append(newSaveScoreModel)
  1051. DBManager.sharedInstance.addData(objs: saveScore)
  1052. let quizTakenData = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  1053. print("Database Score count: \(quizTakenData.count)")
  1054. self.submitPopupView.isHidden = false
  1055. // Sync when internet available
  1056. if Reachability.isConnectedToNetwork() {
  1057. // let saveScore = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  1058. // var noOfAttempts = 1
  1059. // for quiz in saveScore {
  1060. // if quiz.topicId == self.topicId {
  1061. // noOfAttempts = quiz.noOfAttempts + 1
  1062. // }
  1063. // }
  1064. // saveScoreboard(levelId: self.levelId, topicId: self.topicId, runs: self.runs, wickets: self.wickets, noOfAttempts: noOfAttempts)
  1065. }
  1066. }
  1067. // Get topic name
  1068. func getTopicName(id:Int) -> String {
  1069. let topicData = DBManager.sharedInstance.database.objects(TopicModel.self)
  1070. var name = ""
  1071. for item in topicData {
  1072. if id == item.id {
  1073. name = item.name
  1074. break
  1075. }
  1076. }
  1077. return name
  1078. }
  1079. func nextTopic(completion: (_ success: Bool) -> Void) {
  1080. if popUpNextButton.currentTitle == Helper.translateText(inputText: "SUBMIT") {
  1081. self.navigationController?.popViewController(animated: true)
  1082. } else {
  1083. if levelData[mainTopicIndex].topics.count == topicIndex + 1 {
  1084. mainTopicIndex += 1
  1085. topicIndex = 0
  1086. print("\(mainTopicIndex), \(topicIndex)")
  1087. } else {
  1088. topicIndex += 1
  1089. print(topicIndex)
  1090. }
  1091. }
  1092. completion(true)
  1093. }
  1094. /*
  1095. // MARK: - Navigation
  1096. // In a storyboard-based application, you will often want to do a little preparation before navigation
  1097. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  1098. // Get the new view controller using segue.destination.
  1099. // Pass the selected object to the new view controller.
  1100. }
  1101. */
  1102. @IBAction func quizButtonAction(_ sender: UIButton) {
  1103. switch sender.tag {
  1104. case 0:
  1105. if quesIndex > 0 {
  1106. quesIndex -= 1
  1107. //getSelectedChoice()
  1108. getQuesBankId()
  1109. //setupAnimation()
  1110. }
  1111. break
  1112. case 1:
  1113. nextQuiz()
  1114. break
  1115. case 2:
  1116. Alert.showAlertWithAction(vc: self, title: Helper.translateText(inputText: "Are you sure you want to exit the quiz?"), message: "", alertStyle: .alert, actionTitles: [Helper.translateText(inputText: "CANCEL"), Helper.translateText(inputText: "YES")], actionStyles: [.cancel, .default], actions: [{_ in
  1117. }, { [self]_ in
  1118. quizTimer.invalidate()
  1119. self.navigationController?.popViewController(animated: true)
  1120. }])
  1121. break
  1122. default:
  1123. break
  1124. }
  1125. }
  1126. @IBAction func resultPopupCloseAction(_ sender: Any) {
  1127. submitPopupView.isHidden = true
  1128. }
  1129. @IBAction func resultPopupButtonAction(_ sender: UIButton) {
  1130. switch sender.tag {
  1131. case 0:
  1132. submitPopupView.isHidden = true
  1133. self.navigationController?.popViewController(animated: true)
  1134. case 1:
  1135. nextTopic { (success) -> Void in
  1136. if success {
  1137. // do second task if success
  1138. submitPopupView.isHidden = true
  1139. let introVC = self.storyboard?.instantiateViewController(withIdentifier: "IntroductionViewController") as! IntroductionViewController
  1140. introVC.topicName = getTopicName(id: levelData[mainTopicIndex].topics[topicIndex].id)
  1141. introVC.topicId = levelData[mainTopicIndex].topics[topicIndex].id
  1142. introVC.mainTopicIndex = self.mainTopicIndex
  1143. introVC.topicIndex = self.topicIndex
  1144. self.navigationController?.pushViewController(introVC, animated: false)
  1145. }
  1146. }
  1147. case 2:
  1148. //submitPopupView.isHidden = true
  1149. DispatchQueue.main.async {
  1150. let viewAnswerVC = self.storyboard?.instantiateViewController(withIdentifier: "ViewAnswerViewController") as! ViewAnswerViewController
  1151. viewAnswerVC.selectedAnswer.removeAll()
  1152. viewAnswerVC.selectedAnswer = self.selectedAnswer
  1153. //self.navigationController?.pushViewController(viewAnswerVC, animated: true)
  1154. self.present(viewAnswerVC, animated: true, completion: nil)
  1155. }
  1156. default:
  1157. return
  1158. }
  1159. }
  1160. }
  1161. extension AnimationTakeQuizViewController {
  1162. func saveScoreboard(levelId:Int, topicId:Int, runs:Int, wickets:Int, noOfAttempts: Int) {
  1163. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_SCOREBOARD)/save.json"
  1164. print(url)
  1165. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  1166. let headers: HTTPHeaders = [
  1167. "Content-Type": "application/json",
  1168. "Accept": "application/json",
  1169. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  1170. ]
  1171. print(headers)
  1172. let params: Parameters?
  1173. params = [
  1174. "student" : studentId,
  1175. "level" : levelId,
  1176. "topic" : topicId,
  1177. "runs" : runs,
  1178. "wickets" : wickets,
  1179. "noOfAttempts" : noOfAttempts
  1180. ]
  1181. print(params!)
  1182. AF.request(url, method: .post, parameters: params, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
  1183. switch response.result {
  1184. case .success(let value):
  1185. print(value)
  1186. let scoreData = value as! NSDictionary
  1187. let student = scoreData.value(forKey: "student") as! NSObject;
  1188. let studentId = student.value(forKey: "id") as! NSNumber;
  1189. let topic = scoreData.value(forKey: "topic") as! NSObject;
  1190. let topicId = topic.value(forKey: "id") as! NSNumber;
  1191. let level = scoreData.value(forKey: "level") as! NSObject;
  1192. let levelId = level.value(forKey: "id") as! NSNumber;
  1193. let runs = scoreData.value(forKey: "runs") as! NSNumber;
  1194. let wickets = scoreData.value(forKey: "wickets") as! NSNumber;
  1195. let noOfAttempts = scoreData.value(forKey: "noOfAttempts") as! NSNumber;
  1196. var saveScoreModel = [SaveScoreBoard]()
  1197. let id = saveScoreModel.count + 1
  1198. let newSaveScoreModel = SaveScoreBoard(id: id, levelId: Int(truncating: levelId), topicId: Int(truncating: topicId), runs: Int(truncating: runs), wickets: Int(truncating: wickets), noOfAttempts: Int(truncating: noOfAttempts), student: Int(truncating: studentId), synced: true)
  1199. saveScoreModel.append(newSaveScoreModel)
  1200. DBManager.sharedInstance.addData(objs: saveScoreModel)
  1201. let saveScoreDB = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  1202. print("save score count")
  1203. print(saveScoreDB.count)
  1204. self.submitPopupView.isHidden = false
  1205. case .failure(let error):
  1206. print(error)
  1207. }
  1208. }
  1209. }
  1210. }