Lines Matching refs:indications

152 		private Indication[] indications;  field in gbrainy.Games.Memory.MemoryIndications
172 indications = new Indication [CurrentDifficulty == GameDifficulty.Easy ? 5 : 7]; in Initialize()
175 indications[0] = new Indication (Translations, Indication.Type.Start, 0); in Initialize()
176indications[1] = new Indication (Translations, Indication.Type.Turn, random.Next (2)); // right or… in Initialize()
177 indications[2] = new Indication (Translations, Indication.Type.Turn, second_turn); // up or down in Initialize()
178indications[3] = new Indication (Translations, Indication.Type.Turn, random.Next (2)); // right or… in Initialize()
183 indications[4] = new Indication (Translations, Indication.Type.End, 1); in Initialize()
186indications[4] = new Indication (Translations, Indication.Type.Turn, Indication.TurnDirection.Up); in Initialize()
188indications[4] = new Indication (Translations, Indication.Type.Turn, Indication.TurnDirection.Down… in Initialize()
190indications[5] = new Indication (Translations, Indication.Type.Turn, random.Next (2)); // right or… in Initialize()
191 indications[6] = new Indication (Translations, Indication.Type.End, 1); in Initialize()
198 if ((Indication.TurnDirection) indications[3].obj == Indication.TurnDirection.Right) { in Initialize()
206 if ((Indication.TurnDirection) indications[2].obj == Indication.TurnDirection.Up) { in Initialize()
213 if ((Indication.TurnDirection) indications[5].obj == Indication.TurnDirection.Right) { in Initialize()
221 if ((Indication.TurnDirection) indications[1].obj == Indication.TurnDirection.Right) { in Initialize()
286 Indication[] answer = new Indication [indications.Length]; in CopyAnswer()
287 for (int i = 0; i < indications.Length; i++) in CopyAnswer()
288 answer[i] = new Indication (Translations, indications[i].type, indications[i].obj); in CopyAnswer()
293 …e static void DrawPossibleAnswers (CairoContextEx gr, double x, double y, Indication[] indications) in DrawPossibleAnswers() argument
295 for (int i = 0; i < indications.Length - 1; i++) in DrawPossibleAnswers()
296 indications[i].Draw (gr, ref x, ref y, indications[i + 1]); in DrawPossibleAnswers()
298 indications[indications.Length - 1].Draw (gr, ref x, ref y, indications[indications.Length - 2]); in DrawPossibleAnswers()
305 return indications; in WhichAnswer()
321 for (int i = 0; i < indications.Length; i++) in DrawObjectToMemorize()
324 gr.ShowPangoText (indications[i].ToString ()); in DrawObjectToMemorize()
328 for (int i = 0; i < indications.Length; i++) in DrawObjectToMemorize()
331 gr.ShowPangoText (indications[i].ToString ()); in DrawObjectToMemorize()