summaryrefslogtreecommitdiffstats
path: root/kjsembed/docs/examples/madminute/madminute.js
blob: 97debe4d60b4a356479bf0d7493a05068b5ca1c9 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#!/usr/bin/env kjscmd

StdDirs.addResourceType("madminute", StdDirs.kde_default("data") + "/madminute");
try {
	//var view = Factory.loadui( StdDirs.findResource("madminute", "madminute.ui"), this, mw );
	var view = Factory.loadui( "madminute.ui" );

} catch( err ) {
	alert( err );
	exit(0);
}
var Addition = 1;
var Subtraction = 2;

var config = new Config("madminute");
config.setGroup("Game Options");
// Timer
var timer = new TQTimer(this);
// Current Argument 1
var arg1 = 0;
// Current Argument 2
var arg2 = 0;
// Current Operation
var operation = Addition;
// Acceptable operations 1 = Addition 2 = Subtraction 3 = Both
var operations = config.readNumEntry("Operations", Addition);
// Time to run the drill
var drillTime = config.readNumEntry("Drill Time", 60);
// maxInput is maximum value for the numbers in the question
var maxInput = config.readNumEntry("Maximum Input", 10);
var total = 0;

view.connect(view.fileExitAction, 'activated()', application, 'quit()');
view.connect(view.fileGoAction, 'activated()', this, 'start');
view.connect(view.editPreferencesAction, 'activated()', this, 'configure');
view.connect(view.helpAboutAction, 'activated()', this, 'about');
view.connect(view.helpHelpAction, 'activated()', this, 'helpDialog');


view.connect( view.qt_central_widget.answer, 'returnPressed()', this, 'checkAnswer' );
view.connect( timer, 'timeout()', this, 'countdown');

view.qt_central_widget.answer.enabled = false;

view.show();
// Run the main event loop.
application.exec();

function configure()
{
	//var configUI = Factory.loadui( StdDirs.findResource("madminute", "configdialog.ui"), this, mw );
	var configUI = Factory.loadui( "configdialog.ui" );
	configUI.connect( configUI.buttonHelp, 'clicked()', this, 'helpDialog');
	configUI.addition.checked = false;
	configUI.subtraction.checked == false;
	configUI.time.value = drillTime;
	configUI.maximum.value = maxInput;
	if( operations == 1 )
		configUI.addition.checked = true;
	if( operations == 2 )
		configUI.subtraction.checked = true;
	if( operations == 3 )
	{
		configUI.addition.checked = true;
		configUI.subtraction.checked = true;
	}

	if ( configUI.exec() == 1 )
	{
		operations = 0;
		if( configUI.addition.checked == true )
			operations += 1;
		if( configUI.subtraction.checked == true )
			operations += 2;
		drillTime = configUI.time.value;
		maxInput = configUI.maximum.value;
		config.setGroup("Game Options");
		config.writeNumEntry("Operations",operations);
		config.writeNumEntry("Drill Time", drillTime );
		config.writeNumEntry("Maximum Input", maxInput );
		config.sync();
	}
}

function about()
{
	alert("<h2>MadMinute 1.0</h2>A math tutoring drill to help students master basic math skills.<br>Copyright 2004 Ian Reinhart Geiser <a href='mailto:geiseri@kde.org'>geiseri@kde.org</a>");
}

function helpDialog()
{
	//var helpUI = Factory.loadui( StdDirs.findResource("madminute", "helpdialog.ui"), this, mw );
	var helpUI = Factory.loadui( "helpdialog.ui" );
	helpUI.exec();
}

function askQuestion()
{
	arg1 = Math.floor( Math.random() * maxInput );
	arg2 = Math.floor( Math.random() * maxInput );
	if( operations == 3 )
		operation = Math.floor( (Math.random() * 2)+1);
	else
		operation = operations;

	var operationText = "";
	if( operation == Addition )
		operationText = " + ";
	else if( operation == Subtraction )
	{
		operationText = " - ";
		if( arg1 < arg2 )
		{
			var arg = arg1;
			arg1 = arg2;
			arg2 = arg;
		}
	}
	view.qt_central_widget.question.text = "<h2>" + arg1 + operationText + arg2 + "=</h2>";
}

function checkAnswer( )
{
	var answer = 0;
	if( operation == Addition )
		answer = (arg1 + arg2) ;
	else if( operation == Subtraction )
		answer = (arg1 - arg2) ;
	if( view.qt_central_widget.answer.text == answer )
	{
		view.qt_central_widget.correct.value++;
	}
	total++;
	askQuestion();
	view.qt_central_widget.answer.text = "";
}

function start()
{
	askQuestion();
	total = 0;
	timer.start(1000);
	view.fileGoAction.enabled = false;
	view.qt_central_widget.answer.enabled = true;
	view.qt_central_widget.answer.setFocus();
	view.qt_central_widget.timeleft.progress = drillTime;
	view.qt_central_widget.correct.value = 0;
}

function countdown()
{
	view.qt_central_widget.timeleft.progress--;
	if( view.qt_central_widget.timeleft.progress == 0 )
	{
		timer.stop();
		view.fileGoAction.enabled = true;
		view.qt_central_widget.answer.enabled = false;
		alert( "<h1>Times Up!</h1>You got " + view.qt_central_widget.correct.value + " out of " + total + " questions correct." );
	}
}