Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

#! /usr/bin/env python3 

# -*- coding: utf-8 -*- 

 

#       Copyright 2011-2012, Milan Boers 

#       Copyright 2011-2013, 2017, Marten de Vries 

# 

#       This file is part of OpenTeacher. 

# 

#       OpenTeacher is free software: you can redistribute it and/or modify 

#       it under the terms of the GNU General Public License as published by 

#       the Free Software Foundation, either version 3 of the License, or 

#       (at your option) any later version. 

# 

#       OpenTeacher is distributed in the hope that it will be useful, 

#       but WITHOUT ANY WARRANTY; without even the implied warranty of 

#       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 

#       GNU General Public License for more details. 

# 

#       You should have received a copy of the GNU General Public License 

#       along with OpenTeacher.  If not, see <http://www.gnu.org/licenses/>. 

 

import os 

import tempfile 

import atexit 

import weakref 

 

class TeachTopoLessonModule: 

        """The module""" 

 

        def __init__(self, moduleManager, *args, **kwargs): 

                super().__init__(*args, **kwargs) 

 

                self._mm = moduleManager 

                self.counter = 1 

 

                self.type = "lesson" 

                x = 580 

                self.priorities = { 

                        "all": x, 

                        "selfstudy": x, 

                        "student@home": x, 

                        "student@school": x, 

                        "teacher": x, 

                        "code-documentation": x, 

                        "test-suite": x, 

                        "default": -1, 

                } 

 

                self.uses = ( 

                        self._mm.mods(type="translator"), 

                        self._mm.mods(type="dataTypeIcons"), 

                ) 

                self.requires = ( 

                        self._mm.mods(type="event"), 

                        self._mm.mods(type="ui"), 

                        self._mm.mods(type="lessonDialogs"), 

                        self._mm.mods(type="buttonRegister"), 

                        self._mm.mods(type="topoTeacher"), 

                        self._mm.mods(type="topoEnterer"), 

                        self._mm.mods(type="testsViewer"), 

                ) 

                self.filesWithTranslations = ("topo.py",) 

 

        def enable(self): 

                self._modules = set(self._mm.mods(type="modules")).pop() 

 

                self._lessons = set() 

 

                # Data type & icon 

                self.dataType = "topo" 

 

                # Add the button to start 

                module = self._modules.default("active", type="buttonRegister") 

                self._button = module.registerButton("create") 

                try: 

                        iconPath = self._modules.default("active", type="dataTypeIcons").findIcon(self.dataType) 

                except (IndexError, KeyError): 

                        pass 

                else: 

                        self._button.changeIcon.send(iconPath) 

                self._button.clicked.handle(self.createLesson) 

                #reasonable priority 

                self._button.changePriority.send(self.priorities["all"]) 

 

                # Signals 

                self.lessonCreated = self._modules.default(type="event").createEvent() 

                self.lessonCreationFinished = self._modules.default(type="event").createEvent() 

 

                #setup translation 

                global _ 

                global ngettext 

 

                #load translator 

                try: 

                        translator = self._modules.default("active", type="translator") 

                except IndexError: 

                        pass 

                else: 

                        translator.languageChanged.handle(self._retranslate) 

                self._retranslate() 

 

                self.active = True 

 

        def disable(self): 

                self.active = False 

 

                del self._modules 

                del self._lessons 

                del self._button 

                del self.dataType 

                del self.lessonCreated 

                del self.lessonCreationFinished 

 

        def _retranslate(self): 

                #Translations 

                global _ 

                global ngettext 

 

                try: 

                        translator = self._modules.default("active", type="translator") 

                except IndexError: 

                        _, ngettext = str, lambda a, b, n: a if n == 1 else b 

                else: 

                        _, ngettext = translator.gettextFunctions( 

                                self._mm.resourcePath("translations") 

                        ) 

 

                self._button.changeText.send(_("Create topography lesson")) 

                for ref in self._lessons: 

                        lesson = ref() 

129                        if lesson: 

                                lesson.retranslate() 

 

        def createLesson(self): 

                module = self._modules.default("active", type="ui") 

 

                enterWidget = self._modules.default("active", type="topoEnterer").createTopoEnterer() 

                teachWidget = self._modules.default("active", type="topoTeacher").createTopoTeacher() 

                resultsWidget = self._modules.default("active", type="testsViewer").createTestsViewer() 

 

                self.fileTab = module.addFileTab( 

                        enterWidget, 

                        teachWidget, 

                        resultsWidget 

                ) 

 

                lesson = Lesson(self._modules, self.fileTab, enterWidget, teachWidget, resultsWidget, self.counter) 

                self._lessons.add(weakref.ref(lesson)) 

                self.lessonCreated.send(lesson) 

 

                #so they can send changedEvents 

                enterWidget.lesson = lesson 

                teachWidget.lesson = lesson 

 

                self.counter += 1 

                self.lessonCreationFinished.send() 

                return lesson 

 

class Lesson: 

        """Lesson object (that means: this techwidget+enterwidget)""" 

 

        def __init__(self, modules, fileTab, enterWidget, teachWidget, resultsWidget, counter, *args, **kwargs): 

                super().__init__(*args, **kwargs) 

 

                self._modules = modules 

                self._tempFiles = set() 

                atexit.register(self._removeTempFiles) 

 

                self.enterWidget = enterWidget 

                self.teachWidget = teachWidget 

                self.resultsWidget = resultsWidget 

                self.fileTab = fileTab 

                self.counter = counter 

 

                #defaults 

                self._changed = False 

                self._path = None 

 

                self.stopped = self._modules.default(type="event").createEvent() 

 

                self.module = self 

                self.dataType = "topo" 

 

                fileTab.closeRequested.handle(self.stop) 

                fileTab.tabChanged.handle(self.tabChanged) 

                self.teachWidget.lessonDone.connect(self.toEnterTab) 

                self.teachWidget.listChanged.connect(self.teachListChanged) 

 

                self.changedEvent = self._modules.default(type="event").createEvent() 

 

                self.retranslate() 

 

        @property 

        def changed(self): 

                return self._changed 

 

        @changed.setter 

        def changed(self, value): 

                self._changed = value 

                self.changedEvent.send() 

 

        @changed.deleter 

        def changed(self): 

                del self._changed 

 

        @property 

        def path(self): 

                return self._path 

 

        @path.setter 

        def path(self, path): 

                """Make sure not to set this before .resources !""" 

                self._path = path 

                if path: 

                        # Update map name 

                        self.enterWidget.mapChooser.setItemText(0, path) 

                # Update title 

                self.retranslate() 

 

        @property 

        def list(self): 

                return self.enterWidget.list 

 

        @list.setter 

        def list(self, list): 

                # Load the list 

                self.enterWidget.list = list 

                # Update the widgets 

                self.enterWidget.updateWidgets() 

                # Update results widget 

                self.resultsWidget.updateList(list, "topo") 

 

        @property 

        def resources(self): 

                fd, screenshotPath = tempfile.mkstemp() 

                os.close(fd) 

                self._tempFiles.add(screenshotPath) 

 

                screenshot = self.enterWidget.enterMap.getScreenshot() 

                screenshot.save(screenshotPath, "PNG") 

 

                return { 

                        "mapPath": self.enterWidget.mapChooser.currentMap["mapPath"], 

                        "mapScreenshot": screenshotPath, 

                } 

 

        @resources.setter 

        def resources(self, resources): 

                #TRANSLATORS: used as a label in case a filename of a topo 

                #TRANSLATORS: lesson isn't available. (E.g. because it's 

                #TRANSLATORS: downloaded from some kind of web service.) 

                fileName = _("Import source") 

 

                self.enterWidget.mapChooser.insertItem(0, fileName, str({'mapPath': resources["mapPath"], 'knownPlaces': ''})) 

                self.enterWidget.mapChooser.setCurrentIndex(0) 

                self.enterWidget.mapChooser.activated.emit(0) 

 

        def stop(self): 

                #close current lesson (if one). Just reuse all the logic. 

                self.fileTab.currentTab = self.enterWidget 

                self.tabChanged() 

                if self.fileTab.currentTab == self.teachWidget: 

                        #the tab change wasn't allowed. 

                        return False 

 

                #ask if the user wants to save 

                if self.changed: 

                        lessonDialogsModule = self._modules.default("active", type="lessonDialogs") 

                        if not lessonDialogsModule.okToClose(parent=self.fileTab.currentTab): 

                                return False 

 

                self.fileTab.close() 

                self.stopped.send() 

 

                return True 

 

        def toEnterTab(self): 

                self.fileTab.currentTab = self.enterWidget 

 

        def teachListChanged(self, list): 

                self.resultsWidget.updateList(list, "topo") 

                self.changed = True 

 

        def tabChanged(self): 

                lessonDialogsModule = self._modules.default("active", type="lessonDialogs") 

                lessonDialogsModule.onTabChanged(self.fileTab, self.enterWidget, self.teachWidget, lambda: self.teachWidget.initiateLesson(self.enterWidget.list, self.enterWidget.mapChooser.currentMap["mapPath"])) 

 

        def _removeTempFiles(self): 

                for file in self._tempFiles: 

                        os.remove(file) 

 

        def retranslate(self): 

294                if self.path: 

                        self.fileTab.title = _("Topo lesson: %s") % os.path.basename(self.path) 

                else: 

                        self.fileTab.title = _("Topo lesson: %s") % self.counter 

 

def init(moduleManager): 

        return TeachTopoLessonModule(moduleManager)