-
Notifications
You must be signed in to change notification settings - Fork 0
/
Words.cs
61 lines (54 loc) · 1.81 KB
/
Words.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace HangingMan
{ // ליצור עוד DB הנדלר גם לביטויים
class Words
{
public static List<Word> words { get; set; }
public static WordDB dbhandler;
private static Random r;
public static void InitDb()//אתחול הרשימה ויצירת דטה בייס
{
//Create Db Tables - better put
dbhandler = new WordDB();
dbhandler.CreateDatabase<Word>();
//Init List
words = new List<Word>();
r = new Random();
}
public static void GetAllData(string category)//הכנסת כל הנתונים מהדטה בייס לרשימה לפי הקטגוריה המתאימה
{
words = dbhandler.SelectByName(category);
}
public static void Add(Word w)//הוספת מילה חדשה לרשימה לפי הנושא המתקבל
{
if (!words.Contains(w))
{
dbhandler.InsertIntoTable(w);
//Refresh list after row inserted
GetAllData(w.category);
}
}
public static Word Get ()//בחירת מילה מתוך הנושא הנתון
{
int i = r.Next(0, words.Count());
while (true)
{
// We limit the number of letters to make the game easier.
if (words[i].letters <= 5)
{
return words[i];
}
i++;
}
}
}
}