summaryrefslogtreecommitdiff
path: root/gnosis.el
blob: 64fc46ac785292b3536b171c8de0dd9d54072e2d (about) (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
;;; gnosis.el --- Learning tool for GNU Emacs  -*- lexical-binding: t; -*-

;; Copyright (C) 2023  Thanos Apollo

;; Author: Thanos Apollo <[email protected]>
;; Keywords: extensions
;; URL: https://git.thanosapollo.org/gnosis
;; Version: 0.0.1

;; Package-Requires: ((emacs "27.2") (compat "29.1.4.2"))

;; This program 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.

;; This program 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 this program.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; Work in progress

;;; Code:

;; TODO: Create cloze question type & make it easily extensible for
;; other types


(require 'emacsql)
(require 'cl-lib)
(require 'animate)

(cl-defun gnosis--select (table values &optional (restrictions '1=1))
  "Select VALUES from TABLE, optionally with RESTRICTIONS."
  (emacsql-with-connection (db (emacsql-sqlite "test2.db"))
    (emacsql db `[:select ,values :from ,table :where ,restrictions])))

(cl-defun gnosis--create-table (table-name &optional values)
  "Create TABLE-NAME for VALUES."
  (emacsql-with-connection (db (emacsql-sqlite "test2.db"))
    (emacsql db `[:create-table ,table-name ,values])))

(cl-defun gnosis--insert-into (table-name values)
  "Insert VALUES to TABLE-NAME."
  (emacsql-with-connection (db (emacsql-sqlite "test2.db"))
    (emacsql db `[:insert :into ,table-name :values ,values])))

(defun gnosis--get-question (id)
  "Get question row for question ID."
  (caar (gnosis--select 'gnosis1 'question `(= question_id ,id))))

(defun gnosis--get-correct-answer (id)
  "Get correct answer for question ID."
  (caar (gnosis--select 'gnosis1 'answer `(= question_id ,id))))

(defun gnosis--get-mcanswers (id)
  "Get multiple choices for question ID."
  (caar (gnosis--select 'gnosis1 'mchoices `(= question_id ,id))))

(defun gnosis--display-question (id)
  "Display question for question ID."
  (let ((question (gnosis--get-question id)))
    ;; Animate.el is used only for testing purposes.
    (animate-string question 5)))

(defun gnosis--mcanswers-choice (id)
  "Display multiple choice answers for question ID."
  (let ((mcanswers (gnosis--get-mcanswers id)))
    (completing-read "Answer: " mcanswers)))

(defun gnosis--input-mcanswers ()
  "Prompt user for multiple choice answers."
  (let ((mcqs nil))
    (while (not (equal (car mcqs) "q"))
      (add-to-list 'mcqs (read-string "Choices (q for quit): ")))
    (when (equal (car mcqs) "q")
      (pop mcqs))
    (reverse mcqs)))

(cl-defun gnosis-create-mcq-question (&key question choices correct-answer)
  "Create a QUESTION with a list of multiple CHOICES and one CORRECT-ANSWER.

This function can be used interactively, or if you prefer you may also
use it like this:
 (gnosis-create-mcq-question
  :question \"Which one is the greatest editor?\"
  :choices (list \"Emacs\" \"Vim\" \"VSCode\" \"Ed\")
  :correct-answer 1)"
  (interactive
   (list :question (read-string "Question: ")
         :choices (gnosis--input-mcanswers)
         :correct-answer (string-to-number (read-string "Which is the correct answer? "))))
  (gnosis--insert-into 'qbank1 `([nil ,question ,choices ,correct-answer])))

(defun gnosis-create-question (type)
  "Create question as TYPE."
  (interactive (list (completing-read "Type: " '(MCQ Cloze Basic))))
  (pcase type
    ("MCQ" (call-interactively 'gnosis-create-mcq-question))
    ("Cloze" (message "Not ready yet."))
    ("Basic" (message "Not ready yet."))
    (_ (message "No such type."))))

;; Fix: review for seperate question types.
(defun gnosis-review (id)
  "Start review for question ID."
  (let ((canswer (gnosis--get-correct-answer id))
	(choices (gnosis--get-mcanswers id))
	(user-choice (gnosis--mcanswers-choice id)))
    (if (equal (nth (- canswer 1) choices) user-choice)
	(message "Correct!")
      (message "False"))))

(defun gnosis-test-buffer ()
  "Create testing buffer."
  (interactive)
  (with-current-buffer
      (switch-to-buffer (get-buffer-create "*gnosis*"))
    (gnosis--display-question 13)
    (gnosis-review 13)))

;;; gnosis.el ends here