-
Notifications
You must be signed in to change notification settings - Fork 693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sprint 05 #695
base: project_sprint_3_start
Are you sure you want to change the base?
Sprint 05 #695
Conversation
delegate?.didReceiveNextQuestion(question: question) | ||
} | ||
|
||
init(delegate: QuestionFactoryDelegate?) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Стоит организовывать код следующим образом:
- Публичные переменные
- IBOutlet
- Приватные переменные
- Публичные методы(сначала
init
ы,override
ы, и потом остальные) - Приватные методы
- IBAction
Подробнее почитать можно тут: Организация кода
] | ||
|
||
func requestNextQuestion() { | ||
guard let index = (0..<questions.count).randomElement() else { return } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Для того, чтобы избежать повторений можно создать еще один массив с активными вопросами. и доставать вопросы из него, как только вопрос достали, удалять этот вопрос:
/// Массив с вопросами, которых еще не было в игре. Если массив обнуляется, то его необходимо заново заполнить
/// всеми вопросами
private var activeQuestions: [QuizQuestion]
init(delegate: QuestionFactoryDelegate?) {
self.delegate = delegate
self.activeQuestions = questions
}
func requestNextQuestion() {
guard let question = getQuestion() else { return }
delegate?.didReceiveNextQuestion(question: question)
}
private func getQuestion() -> QuizQuestion? {
guard let index = (0..<activeQuestions.count).randomElement() else { return nil }
let question = activeQuestions[safe: index]
//удаление из массива вопроса, только что сформированного для показа
activeQuestions.remove(at: index)
// если были показаны все вопросы, то заполняем массив всеми вопросами заново
if activeQuestions.count == 0 {
activeQuestions = questions
}
return question
}
Не придумал, как сделать так, чтобы вопросы не повторялись, если подскажете, в какую сторону думать, буду сильно признателен)