org-drill.el 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288
  1. ;;; -*- coding: utf-8-unix -*-
  2. ;;; org-drill.el - Self-testing using spaced repetition
  3. ;;;
  4. ;;; Author: Paul Sexton <eeeickythump@gmail.com>
  5. ;;; Version: 2.4.3
  6. ;;; Repository at http://bitbucket.org/eeeickythump/org-drill/
  7. ;;;
  8. ;;;
  9. ;;; Synopsis
  10. ;;; ========
  11. ;;;
  12. ;;; Uses the SuperMemo spaced repetition algorithms to conduct interactive
  13. ;;; "drill sessions", where the material to be remembered is presented to the
  14. ;;; student in random order. The student rates his or her recall of each item,
  15. ;;; and this information is used to schedule the item for later revision.
  16. ;;;
  17. ;;; Each drill session can be restricted to topics in the current buffer
  18. ;;; (default), one or several files, all agenda files, or a subtree. A single
  19. ;;; topic can also be drilled.
  20. ;;;
  21. ;;; Different "card types" can be defined, which present their information to
  22. ;;; the student in different ways.
  23. ;;;
  24. ;;; See the file README.org for more detailed documentation.
  25. (eval-when-compile (require 'cl))
  26. (eval-when-compile (require 'hi-lock))
  27. (require 'cl-lib)
  28. (require 'hi-lock)
  29. (require 'org)
  30. (require 'org-id)
  31. (require 'org-learn)
  32. (defgroup org-drill nil
  33. "Options concerning interactive drill sessions in Org mode (org-drill)."
  34. :tag "Org-Drill"
  35. :group 'org-link)
  36. (defcustom org-drill-question-tag
  37. "drill"
  38. "Tag which topics must possess in order to be identified as review topics
  39. by `org-drill'."
  40. :group 'org-drill
  41. :type 'string)
  42. (defcustom org-drill-maximum-items-per-session
  43. 30
  44. "Each drill session will present at most this many topics for review.
  45. Nil means unlimited."
  46. :group 'org-drill
  47. :type '(choice integer (const nil)))
  48. (defcustom org-drill-maximum-duration
  49. 20
  50. "Maximum duration of a drill session, in minutes.
  51. Nil means unlimited."
  52. :group 'org-drill
  53. :type '(choice integer (const nil)))
  54. (defcustom org-drill-failure-quality
  55. 2
  56. "If the quality of recall for an item is this number or lower,
  57. it is regarded as an unambiguous failure, and the repetition
  58. interval for the card is reset to 0 days. If the quality is higher
  59. than this number, it is regarded as successfully recalled, but the
  60. time interval to the next repetition will be lowered if the quality
  61. was near to a fail.
  62. By default this is 2, for SuperMemo-like behaviour. For
  63. Mnemosyne-like behaviour, set it to 1. Other values are not
  64. really sensible."
  65. :group 'org-drill
  66. :type '(choice (const 2) (const 1)))
  67. (defcustom org-drill-forgetting-index
  68. 10
  69. "What percentage of items do you consider it is 'acceptable' to
  70. forget each drill session? The default is 10%. A warning message
  71. is displayed at the end of the session if the percentage forgotten
  72. climbs above this number."
  73. :group 'org-drill
  74. :type 'integer)
  75. (defcustom org-drill-leech-failure-threshold
  76. 15
  77. "If an item is forgotten more than this many times, it is tagged
  78. as a 'leech' item."
  79. :group 'org-drill
  80. :type '(choice integer (const nil)))
  81. (defcustom org-drill-leech-method
  82. 'skip
  83. "How should 'leech items' be handled during drill sessions?
  84. Possible values:
  85. - nil :: Leech items are treated the same as normal items.
  86. - skip :: Leech items are not included in drill sessions.
  87. - warn :: Leech items are still included in drill sessions,
  88. but a warning message is printed when each leech item is
  89. presented."
  90. :group 'org-drill
  91. :type '(choice (const warn) (const skip) (const nil)))
  92. (defface org-drill-visible-cloze-face
  93. '((t (:foreground "darkseagreen")))
  94. "The face used to hide the contents of cloze phrases."
  95. :group 'org-drill)
  96. (defface org-drill-visible-cloze-hint-face
  97. '((t (:foreground "dark slate blue")))
  98. "The face used to hide the contents of cloze phrases."
  99. :group 'org-drill)
  100. (defface org-drill-hidden-cloze-face
  101. '((t (:foreground "deep sky blue" :background "blue")))
  102. "The face used to hide the contents of cloze phrases."
  103. :group 'org-drill)
  104. (defcustom org-drill-use-visible-cloze-face-p
  105. nil
  106. "Use a special face to highlight cloze-deleted text in org mode
  107. buffers?"
  108. :group 'org-drill
  109. :type 'boolean)
  110. (defcustom org-drill-hide-item-headings-p
  111. nil
  112. "Conceal the contents of the main heading of each item during drill
  113. sessions? You may want to enable this behaviour if item headings or tags
  114. contain information that could 'give away' the answer."
  115. :group 'org-drill
  116. :type 'boolean)
  117. (defcustom org-drill-new-count-color
  118. "royal blue"
  119. "Foreground colour used to display the count of remaining new items
  120. during a drill session."
  121. :group 'org-drill
  122. :type 'color)
  123. (defcustom org-drill-mature-count-color
  124. "green"
  125. "Foreground colour used to display the count of remaining mature items
  126. during a drill session. Mature items are due for review, but are not new."
  127. :group 'org-drill
  128. :type 'color)
  129. (defcustom org-drill-failed-count-color
  130. "red"
  131. "Foreground colour used to display the count of remaining failed items
  132. during a drill session."
  133. :group 'org-drill
  134. :type 'color)
  135. (defcustom org-drill-done-count-color
  136. "sienna"
  137. "Foreground colour used to display the count of reviewed items
  138. during a drill session."
  139. :group 'org-drill
  140. :type 'color)
  141. (defcustom org-drill-left-cloze-delimiter
  142. "["
  143. "String used within org buffers to delimit cloze deletions."
  144. :group 'org-drill
  145. :type 'string)
  146. (defcustom org-drill-right-cloze-delimiter
  147. "]"
  148. "String used within org buffers to delimit cloze deletions."
  149. :group 'org-drill
  150. :type 'string)
  151. (setplist 'org-drill-cloze-overlay-defaults
  152. `(display ,(format "%s...%s"
  153. org-drill-left-cloze-delimiter
  154. org-drill-right-cloze-delimiter)
  155. face org-drill-hidden-cloze-face
  156. window t))
  157. (setplist 'org-drill-hidden-text-overlay
  158. '(invisible t))
  159. (setplist 'org-drill-replaced-text-overlay
  160. '(display "Replaced text"
  161. face default
  162. window t))
  163. (defvar org-drill-hint-separator "||"
  164. "String which, if it occurs within a cloze expression, signifies that the
  165. rest of the expression after the string is a `hint', to be displayed instead of
  166. the hidden cloze during a test.")
  167. (defun org-drill--compute-cloze-regexp ()
  168. (concat "\\("
  169. (regexp-quote org-drill-left-cloze-delimiter)
  170. "[[:cntrl:][:graph:][:space:]]+?\\)\\(\\|"
  171. (regexp-quote org-drill-hint-separator)
  172. ".+?\\)\\("
  173. (regexp-quote org-drill-right-cloze-delimiter)
  174. "\\)"))
  175. (defun org-drill--compute-cloze-keywords ()
  176. (list (list (org-drill--compute-cloze-regexp)
  177. (copy-list '(1 'org-drill-visible-cloze-face nil))
  178. (copy-list '(2 'org-drill-visible-cloze-hint-face t))
  179. (copy-list '(3 'org-drill-visible-cloze-face nil))
  180. )))
  181. (defvar-local org-drill-cloze-regexp
  182. (org-drill--compute-cloze-regexp))
  183. (defvar-local org-drill-cloze-keywords
  184. (org-drill--compute-cloze-keywords))
  185. (defcustom org-drill-card-type-alist
  186. '((nil org-drill-present-simple-card)
  187. ("simple" org-drill-present-simple-card)
  188. ("twosided" org-drill-present-two-sided-card nil t)
  189. ("multisided" org-drill-present-multi-sided-card nil t)
  190. ("hide1cloze" org-drill-present-multicloze-hide1)
  191. ("hide2cloze" org-drill-present-multicloze-hide2)
  192. ("show1cloze" org-drill-present-multicloze-show1)
  193. ("show2cloze" org-drill-present-multicloze-show2)
  194. ("multicloze" org-drill-present-multicloze-hide1)
  195. ("hidefirst" org-drill-present-multicloze-hide-first)
  196. ("hidelast" org-drill-present-multicloze-hide-last)
  197. ("hide1_firstmore" org-drill-present-multicloze-hide1-firstmore)
  198. ("show1_lastmore" org-drill-present-multicloze-show1-lastmore)
  199. ("show1_firstless" org-drill-present-multicloze-show1-firstless)
  200. ("conjugate"
  201. org-drill-present-verb-conjugation
  202. org-drill-show-answer-verb-conjugation)
  203. ("decline_noun"
  204. org-drill-present-noun-declension
  205. org-drill-show-answer-noun-declension)
  206. ("spanish_verb" org-drill-present-spanish-verb)
  207. ("translate_number" org-drill-present-translate-number))
  208. "Alist associating card types with presentation functions. Each
  209. entry in the alist takes the form:
  210. ;;; (CARDTYPE QUESTION-FN [ANSWER-FN DRILL-EMPTY-P])
  211. Where CARDTYPE is a string or nil (for default), and QUESTION-FN
  212. is a function which takes no arguments and returns a boolean
  213. value.
  214. When supplied, ANSWER-FN is a function that takes one argument --
  215. that argument is a function of no arguments, which when called,
  216. prompts the user to rate their recall and performs rescheduling
  217. of the drill item. ANSWER-FN is called with the point on the
  218. active item's heading, just prior to displaying the item's
  219. 'answer'. It can therefore be used to modify the appearance of
  220. the answer. ANSWER-FN must call its argument before returning.
  221. When supplied, DRILL-EMPTY-P is a boolean value, default nil.
  222. When non-nil, cards of this type will be presented during tests
  223. even if their bodies are empty."
  224. :group 'org-drill
  225. :type '(alist :key-type (choice string (const nil))
  226. :value-type function))
  227. (defcustom org-drill-scope
  228. 'file
  229. "The scope in which to search for drill items when conducting a
  230. drill session. This can be any of:
  231. file The current buffer, respecting the restriction if any.
  232. This is the default.
  233. tree The subtree started with the entry at point
  234. file-no-restriction The current buffer, without restriction
  235. file-with-archives The current buffer, and any archives associated with it.
  236. agenda All agenda files
  237. agenda-with-archives All agenda files with any archive files associated
  238. with them.
  239. directory All files with the extension '.org' in the same
  240. directory as the current file (includes the current
  241. file if it is an .org file.)
  242. (FILE1 FILE2 ...) If this is a list, all files in the list will be scanned.
  243. "
  244. ;; Note -- meanings differ slightly from the argument to org-map-entries:
  245. ;; 'file' means current file/buffer, respecting any restriction
  246. ;; 'file-no-restriction' means current file/buffer, ignoring restrictions
  247. ;; 'directory' means all *.org files in current directory
  248. :group 'org-drill
  249. :type '(choice (const :tag "The current buffer, respecting the restriction if any." file)
  250. (const :tag "The subtree started with the entry at point" tree)
  251. (const :tag "The current buffer, without restriction" file-no-restriction)
  252. (const :tag "The current buffer, and any archives associated with it." file-with-archives)
  253. (const :tag "All agenda files" agenda)
  254. (const :tag "All agenda files with any archive files associated with them." agenda-with-archives)
  255. (const :tag "All files with the extension '.org' in the same directory as the current file (includes the current file if it is an .org file.)" directory)
  256. (repeat :tag "List of files to scan for drill items." file)))
  257. (defcustom org-drill-match
  258. nil
  259. "If non-nil, a string specifying a tags/property/TODO query. During
  260. drill sessions, only items that match this query will be considered."
  261. :group 'org-drill
  262. :type '(choice (const nil) string))
  263. (defcustom org-drill-save-buffers-after-drill-sessions-p
  264. t
  265. "If non-nil, prompt to save all modified buffers after a drill session
  266. finishes."
  267. :group 'org-drill
  268. :type 'boolean)
  269. (defcustom org-drill-spaced-repetition-algorithm
  270. 'sm5
  271. "Which SuperMemo spaced repetition algorithm to use for scheduling items.
  272. Available choices are:
  273. - SM2 :: the SM2 algorithm, used in SuperMemo 2.0
  274. - SM5 :: the SM5 algorithm, used in SuperMemo 5.0
  275. - Simple8 :: a modified version of the SM8 algorithm. SM8 is used in
  276. SuperMemo 98. The version implemented here is simplified in that while it
  277. 'learns' the difficulty of each item using quality grades and number of
  278. failures, it does not modify the matrix of values that
  279. governs how fast the inter-repetition intervals increase. A method for
  280. adjusting intervals when items are reviewed early or late has been taken
  281. from SM11, a later version of the algorithm, and included in Simple8."
  282. :group 'org-drill
  283. :type '(choice (const sm2) (const sm5) (const simple8)))
  284. (defcustom org-drill-optimal-factor-matrix
  285. nil
  286. "DO NOT CHANGE THE VALUE OF THIS VARIABLE.
  287. Persistent matrix of optimal factors, used by the SuperMemo SM5 algorithm.
  288. The matrix is saved (using the 'customize' facility) at the end of each
  289. drill session.
  290. Over time, values in the matrix will adapt to the individual user's
  291. pace of learning."
  292. :group 'org-drill
  293. :type 'sexp)
  294. (defcustom org-drill-sm5-initial-interval
  295. 4.0
  296. "In the SM5 algorithm, the initial interval after the first
  297. successful presentation of an item is always 4 days. If you wish to change
  298. this, you can do so here."
  299. :group 'org-drill
  300. :type 'float)
  301. (defcustom org-drill-add-random-noise-to-intervals-p
  302. nil
  303. "If true, the number of days until an item's next repetition
  304. will vary slightly from the interval calculated by the SM2
  305. algorithm. The variation is very small when the interval is
  306. small, but scales up with the interval."
  307. :group 'org-drill
  308. :type 'boolean)
  309. (defcustom org-drill-adjust-intervals-for-early-and-late-repetitions-p
  310. nil
  311. "If true, when the student successfully reviews an item 1 or more days
  312. before or after the scheduled review date, this will affect that date of
  313. the item's next scheduled review, according to the algorithm presented at
  314. [[http://www.supermemo.com/english/algsm11.htm#Advanced%20repetitions]].
  315. Items that were reviewed early will have their next review date brought
  316. forward. Those that were reviewed late will have their next review
  317. date postponed further.
  318. Note that this option currently has no effect if the SM2 algorithm
  319. is used."
  320. :group 'org-drill
  321. :type 'boolean)
  322. (defcustom org-drill-cloze-text-weight
  323. 4
  324. "For card types 'hide1_firstmore', 'show1_lastmore' and 'show1_firstless',
  325. this number determines how often the 'less favoured' situation
  326. should arise. It will occur 1 in every N trials, where N is the
  327. value of the variable.
  328. For example, with the hide1_firstmore card type, the first piece
  329. of clozed text should be hidden more often than the other
  330. pieces. If this variable is set to 4 (default), the first item
  331. will only be shown 25% of the time (1 in 4 trials). Similarly for
  332. show1_lastmore, the last item will be shown 75% of the time, and
  333. for show1_firstless, the first item would only be shown 25% of the
  334. time.
  335. If the value of this variable is NIL, then weighting is disabled, and
  336. all weighted card types are treated as their unweighted equivalents."
  337. :group 'org-drill
  338. :type '(choice integer (const nil)))
  339. (defcustom org-drill-cram-hours
  340. 12
  341. "When in cram mode, items are considered due for review if
  342. they were reviewed at least this many hours ago."
  343. :group 'org-drill
  344. :type 'integer)
  345. ;;; NEW items have never been presented in a drill session before.
  346. ;;; MATURE items HAVE been presented at least once before.
  347. ;;; - YOUNG mature items were scheduled no more than
  348. ;;; ORG-DRILL-DAYS-BEFORE-OLD days after their last
  349. ;;; repetition. These items will have been learned 'recently' and will have a
  350. ;;; low repetition count.
  351. ;;; - OLD mature items have intervals greater than
  352. ;;; ORG-DRILL-DAYS-BEFORE-OLD.
  353. ;;; - OVERDUE items are past their scheduled review date by more than
  354. ;;; LAST-INTERVAL * (ORG-DRILL-OVERDUE-INTERVAL-FACTOR - 1) days,
  355. ;;; regardless of young/old status.
  356. (defcustom org-drill-days-before-old
  357. 10
  358. "When an item's inter-repetition interval rises above this value in days,
  359. it is no longer considered a 'young' (recently learned) item."
  360. :group 'org-drill
  361. :type 'integer)
  362. (defcustom org-drill-overdue-interval-factor
  363. 1.2
  364. "An item is considered overdue if its scheduled review date is
  365. more than (ORG-DRILL-OVERDUE-INTERVAL-FACTOR - 1) * LAST-INTERVAL
  366. days in the past. For example, a value of 1.2 means an additional
  367. 20% of the last scheduled interval is allowed to elapse before
  368. the item is overdue. A value of 1.0 means no extra time is
  369. allowed at all - items are immediately considered overdue if
  370. there is even one day's delay in reviewing them. This variable
  371. should never be less than 1.0."
  372. :group 'org-drill
  373. :type 'float)
  374. (defcustom org-drill-learn-fraction
  375. 0.5
  376. "Fraction between 0 and 1 that governs how quickly the spaces
  377. between successive repetitions increase, for all items. The
  378. default value is 0.5. Higher values make spaces increase more
  379. quickly with each successful repetition. You should only change
  380. this in small increments (for example 0.05-0.1) as it has an
  381. exponential effect on inter-repetition spacing."
  382. :group 'org-drill
  383. :type 'float)
  384. (defvar drill-answer nil
  385. "Global variable that can be bound to a correct answer when an
  386. item is being presented. If this variable is non-nil, the default
  387. presentation function will show its value instead of the default
  388. behaviour of revealing the contents of the drilled item.
  389. This variable is useful for card types that compute their answers
  390. -- for example, a card type that asks the student to translate a
  391. random number to another language. ")
  392. (defvar *org-drill-session-qualities* nil)
  393. (defvar *org-drill-start-time* 0)
  394. (defvar *org-drill-new-entries* nil)
  395. (defvar *org-drill-dormant-entry-count* 0)
  396. (defvar *org-drill-due-entry-count* 0)
  397. (defvar *org-drill-overdue-entry-count* 0)
  398. (defvar *org-drill-due-tomorrow-count* 0)
  399. (defvar *org-drill-overdue-entries* nil
  400. "List of markers for items that are considered 'overdue', based on
  401. the value of ORG-DRILL-OVERDUE-INTERVAL-FACTOR.")
  402. (defvar *org-drill-young-mature-entries* nil
  403. "List of markers for mature entries whose last inter-repetition
  404. interval was <= ORG-DRILL-DAYS-BEFORE-OLD days.")
  405. (defvar *org-drill-old-mature-entries* nil
  406. "List of markers for mature entries whose last inter-repetition
  407. interval was greater than ORG-DRILL-DAYS-BEFORE-OLD days.")
  408. (defvar *org-drill-failed-entries* nil)
  409. (defvar *org-drill-again-entries* nil)
  410. (defvar *org-drill-done-entries* nil)
  411. (defvar *org-drill-current-item* nil
  412. "Set to the marker for the item currently being tested.")
  413. (defvar *org-drill-cram-mode* nil
  414. "Are we in 'cram mode', where all items are considered due
  415. for review unless they were already reviewed in the recent past?")
  416. (defvar org-drill-scheduling-properties
  417. '("LEARN_DATA" "DRILL_LAST_INTERVAL" "DRILL_REPEATS_SINCE_FAIL"
  418. "DRILL_TOTAL_REPEATS" "DRILL_FAILURE_COUNT" "DRILL_AVERAGE_QUALITY"
  419. "DRILL_EASE" "DRILL_LAST_QUALITY" "DRILL_LAST_REVIEWED"))
  420. ;;; Make the above settings safe as file-local variables.
  421. (put 'org-drill-question-tag 'safe-local-variable 'stringp)
  422. (put 'org-drill-maximum-items-per-session 'safe-local-variable
  423. '(lambda (val) (or (integerp val) (null val))))
  424. (put 'org-drill-maximum-duration 'safe-local-variable
  425. '(lambda (val) (or (integerp val) (null val))))
  426. (put 'org-drill-failure-quality 'safe-local-variable 'integerp)
  427. (put 'org-drill-forgetting-index 'safe-local-variable 'integerp)
  428. (put 'org-drill-leech-failure-threshold 'safe-local-variable 'integerp)
  429. (put 'org-drill-leech-method 'safe-local-variable
  430. '(lambda (val) (memq val '(nil skip warn))))
  431. (put 'org-drill-use-visible-cloze-face-p 'safe-local-variable 'booleanp)
  432. (put 'org-drill-hide-item-headings-p 'safe-local-variable 'booleanp)
  433. (put 'org-drill-spaced-repetition-algorithm 'safe-local-variable
  434. '(lambda (val) (memq val '(simple8 sm5 sm2))))
  435. (put 'org-drill-sm5-initial-interval 'safe-local-variable 'floatp)
  436. (put 'org-drill-add-random-noise-to-intervals-p 'safe-local-variable 'booleanp)
  437. (put 'org-drill-adjust-intervals-for-early-and-late-repetitions-p
  438. 'safe-local-variable 'booleanp)
  439. (put 'org-drill-cram-hours 'safe-local-variable 'integerp)
  440. (put 'org-drill-learn-fraction 'safe-local-variable 'floatp)
  441. (put 'org-drill-days-before-old 'safe-local-variable 'integerp)
  442. (put 'org-drill-overdue-interval-factor 'safe-local-variable 'floatp)
  443. (put 'org-drill-scope 'safe-local-variable
  444. '(lambda (val) (or (symbolp val) (listp val))))
  445. (put 'org-drill-match 'safe-local-variable
  446. '(lambda (val) (or (stringp val) (null val))))
  447. (put 'org-drill-save-buffers-after-drill-sessions-p 'safe-local-variable 'booleanp)
  448. (put 'org-drill-cloze-text-weight 'safe-local-variable
  449. '(lambda (val) (or (null val) (integerp val))))
  450. (put 'org-drill-left-cloze-delimiter 'safe-local-variable 'stringp)
  451. (put 'org-drill-right-cloze-delimiter 'safe-local-variable 'stringp)
  452. ;;;; Utilities ================================================================
  453. (defun free-marker (m)
  454. (set-marker m nil))
  455. (defmacro pop-random (place)
  456. (let ((idx (gensym)))
  457. `(if (null ,place)
  458. nil
  459. (let ((,idx (random* (length ,place))))
  460. (prog1 (nth ,idx ,place)
  461. (setq ,place (append (subseq ,place 0 ,idx)
  462. (subseq ,place (1+ ,idx)))))))))
  463. (defmacro push-end (val place)
  464. "Add VAL to the end of the sequence stored in PLACE. Return the new
  465. value."
  466. `(setq ,place (append ,place (list ,val))))
  467. (defun shuffle-list (list)
  468. "Randomly permute the elements of LIST (all permutations equally likely)."
  469. ;; Adapted from 'shuffle-vector' in cookie1.el
  470. (let ((i 0)
  471. j
  472. temp
  473. (len (length list)))
  474. (while (< i len)
  475. (setq j (+ i (random* (- len i))))
  476. (setq temp (nth i list))
  477. (setf (nth i list) (nth j list))
  478. (setf (nth j list) temp)
  479. (setq i (1+ i))))
  480. list)
  481. (defun round-float (floatnum fix)
  482. "Round the floating point number FLOATNUM to FIX decimal places.
  483. Example: (round-float 3.56755765 3) -> 3.568"
  484. (let ((n (expt 10 fix)))
  485. (/ (float (round (* floatnum n))) n)))
  486. (defun command-keybinding-to-string (cmd)
  487. "Return a human-readable description of the key/keys to which the command
  488. CMD is bound, or nil if it is not bound to a key."
  489. (let ((key (where-is-internal cmd overriding-local-map t)))
  490. (if key (key-description key))))
  491. (defun time-to-inactive-org-timestamp (time)
  492. (format-time-string
  493. (concat "[" (substring (cdr org-time-stamp-formats) 1 -1) "]")
  494. time))
  495. (defun time-to-active-org-timestamp (time)
  496. (format-time-string
  497. (concat "<" (substring (cdr org-time-stamp-formats) 1 -1) ">")
  498. time))
  499. (defun org-map-drill-entries (func &optional scope drill-match &rest skip)
  500. "Like `org-map-entries', but only drill entries are processed."
  501. (let ((org-drill-scope (or scope org-drill-scope))
  502. (org-drill-match (or drill-match org-drill-match)))
  503. (apply 'org-map-entries func
  504. (concat "+" org-drill-question-tag
  505. (if (and (stringp org-drill-match)
  506. (not (member '(?+ ?- ?|) (elt org-drill-match 0))))
  507. "+" "")
  508. (or org-drill-match ""))
  509. (case org-drill-scope
  510. (file nil)
  511. (file-no-restriction 'file)
  512. (directory
  513. (directory-files (file-name-directory (buffer-file-name))
  514. t "\\.org$"))
  515. (t org-drill-scope))
  516. skip)))
  517. (defmacro with-hidden-cloze-text (&rest body)
  518. `(progn
  519. (org-drill-hide-clozed-text)
  520. (unwind-protect
  521. (progn
  522. ,@body)
  523. (org-drill-unhide-clozed-text))))
  524. (defmacro with-hidden-cloze-hints (&rest body)
  525. `(progn
  526. (org-drill-hide-cloze-hints)
  527. (unwind-protect
  528. (progn
  529. ,@body)
  530. (org-drill-unhide-text))))
  531. (defmacro with-hidden-comments (&rest body)
  532. `(progn
  533. (if org-drill-hide-item-headings-p
  534. (org-drill-hide-heading-at-point))
  535. (org-drill-hide-comments)
  536. (unwind-protect
  537. (progn
  538. ,@body)
  539. (org-drill-unhide-text))))
  540. (defun org-drill-days-since-last-review ()
  541. "Nil means a last review date has not yet been stored for
  542. the item.
  543. Zero means it was reviewed today.
  544. A positive number means it was reviewed that many days ago.
  545. A negative number means the date of last review is in the future --
  546. this should never happen."
  547. (let ((datestr (org-entry-get (point) "DRILL_LAST_REVIEWED")))
  548. (when datestr
  549. (- (time-to-days (current-time))
  550. (time-to-days (apply 'encode-time
  551. (org-parse-time-string datestr)))))))
  552. (defun org-drill-hours-since-last-review ()
  553. "Like `org-drill-days-since-last-review', but return value is
  554. in hours rather than days."
  555. (let ((datestr (org-entry-get (point) "DRILL_LAST_REVIEWED")))
  556. (when datestr
  557. (floor
  558. (/ (- (time-to-seconds (current-time))
  559. (time-to-seconds (apply 'encode-time
  560. (org-parse-time-string datestr))))
  561. (* 60 60))))))
  562. (defun org-drill-entry-p (&optional marker)
  563. "Is MARKER, or the point, in a 'drill item'? This will return nil if
  564. the point is inside a subheading of a drill item -- to handle that
  565. situation use `org-part-of-drill-entry-p'."
  566. (save-excursion
  567. (when marker
  568. (org-drill-goto-entry marker))
  569. (member org-drill-question-tag (org-get-local-tags))))
  570. (defun org-drill-goto-entry (marker)
  571. (switch-to-buffer (marker-buffer marker))
  572. (goto-char marker))
  573. (defun org-part-of-drill-entry-p ()
  574. "Is the current entry either the main heading of a 'drill item',
  575. or a subheading within a drill item?"
  576. (or (org-drill-entry-p)
  577. ;; Does this heading INHERIT the drill tag
  578. (member org-drill-question-tag (org-get-tags-at))))
  579. (defun org-drill-goto-drill-entry-heading ()
  580. "Move the point to the heading which holds the :drill: tag for this
  581. drill entry."
  582. (unless (org-at-heading-p)
  583. (org-back-to-heading))
  584. (unless (org-part-of-drill-entry-p)
  585. (error "Point is not inside a drill entry"))
  586. (while (not (org-drill-entry-p))
  587. (unless (org-up-heading-safe)
  588. (error "Cannot find a parent heading that is marked as a drill entry"))))
  589. (defun org-drill-entry-leech-p ()
  590. "Is the current entry a 'leech item'?"
  591. (and (org-drill-entry-p)
  592. (member "leech" (org-get-local-tags))))
  593. ;; (defun org-drill-entry-due-p ()
  594. ;; (cond
  595. ;; (*org-drill-cram-mode*
  596. ;; (let ((hours (org-drill-hours-since-last-review)))
  597. ;; (and (org-drill-entry-p)
  598. ;; (or (null hours)
  599. ;; (>= hours org-drill-cram-hours)))))
  600. ;; (t
  601. ;; (let ((item-time (org-get-scheduled-time (point))))
  602. ;; (and (org-drill-entry-p)
  603. ;; (or (not (eql 'skip org-drill-leech-method))
  604. ;; (not (org-drill-entry-leech-p)))
  605. ;; (or (null item-time) ; not scheduled
  606. ;; (not (minusp ; scheduled for today/in past
  607. ;; (- (time-to-days (current-time))
  608. ;; (time-to-days item-time))))))))))
  609. (defun org-drill-entry-days-overdue ()
  610. "Returns:
  611. - NIL if the item is not to be regarded as scheduled for review at all.
  612. This is the case if it is not a drill item, or if it is a leech item
  613. that we wish to skip, or if we are in cram mode and have already reviewed
  614. the item within the last few hours.
  615. - 0 if the item is new, or if it scheduled for review today.
  616. - A negative integer - item is scheduled that many days in the future.
  617. - A positive integer - item is scheduled that many days in the past."
  618. (cond
  619. (*org-drill-cram-mode*
  620. (let ((hours (org-drill-hours-since-last-review)))
  621. (and (org-drill-entry-p)
  622. (or (null hours)
  623. (>= hours org-drill-cram-hours))
  624. 0)))
  625. (t
  626. (let ((item-time (org-get-scheduled-time (point))))
  627. (cond
  628. ((or (not (org-drill-entry-p))
  629. (and (eql 'skip org-drill-leech-method)
  630. (org-drill-entry-leech-p)))
  631. nil)
  632. ((null item-time) ; not scheduled -> due now
  633. 0)
  634. (t
  635. (- (time-to-days (current-time))
  636. (time-to-days item-time))))))))
  637. (defun org-drill-entry-overdue-p (&optional days-overdue last-interval)
  638. "Returns true if entry that is scheduled DAYS-OVERDUE dasy in the past,
  639. and whose last inter-repetition interval was LAST-INTERVAL, should be
  640. considered 'overdue'. If the arguments are not given they are extracted
  641. from the entry at point."
  642. (unless days-overdue
  643. (setq days-overdue (org-drill-entry-days-overdue)))
  644. (unless last-interval
  645. (setq last-interval (org-drill-entry-last-interval 1)))
  646. (and (numberp days-overdue)
  647. (> days-overdue 1) ; enforce a sane minimum 'overdue' gap
  648. ;;(> due org-drill-days-before-overdue)
  649. (> (/ (+ days-overdue last-interval 1.0) last-interval)
  650. org-drill-overdue-interval-factor)))
  651. (defun org-drill-entry-due-p ()
  652. (let ((due (org-drill-entry-days-overdue)))
  653. (and (not (null due))
  654. (not (minusp due)))))
  655. (defun org-drill-entry-new-p ()
  656. (and (org-drill-entry-p)
  657. (let ((item-time (org-get-scheduled-time (point))))
  658. (null item-time))))
  659. (defun org-drill-entry-last-quality (&optional default)
  660. (let ((quality (org-entry-get (point) "DRILL_LAST_QUALITY")))
  661. (if quality
  662. (string-to-number quality)
  663. default)))
  664. (defun org-drill-entry-failure-count ()
  665. (let ((quality (org-entry-get (point) "DRILL_FAILURE_COUNT")))
  666. (if quality
  667. (string-to-number quality)
  668. 0)))
  669. (defun org-drill-entry-average-quality (&optional default)
  670. (let ((val (org-entry-get (point) "DRILL_AVERAGE_QUALITY")))
  671. (if val
  672. (string-to-number val)
  673. (or default nil))))
  674. (defun org-drill-entry-last-interval (&optional default)
  675. (let ((val (org-entry-get (point) "DRILL_LAST_INTERVAL")))
  676. (if val
  677. (string-to-number val)
  678. (or default 0))))
  679. (defun org-drill-entry-repeats-since-fail (&optional default)
  680. (let ((val (org-entry-get (point) "DRILL_REPEATS_SINCE_FAIL")))
  681. (if val
  682. (string-to-number val)
  683. (or default 0))))
  684. (defun org-drill-entry-total-repeats (&optional default)
  685. (let ((val (org-entry-get (point) "DRILL_TOTAL_REPEATS")))
  686. (if val
  687. (string-to-number val)
  688. (or default 0))))
  689. (defun org-drill-entry-ease (&optional default)
  690. (let ((val (org-entry-get (point) "DRILL_EASE")))
  691. (if val
  692. (string-to-number val)
  693. default)))
  694. ;;; From http://www.supermemo.com/english/ol/sm5.htm
  695. (defun org-drill-random-dispersal-factor ()
  696. "Returns a random number between 0.5 and 1.5."
  697. (let ((a 0.047)
  698. (b 0.092)
  699. (p (- (random* 1.0) 0.5)))
  700. (cl-flet ((sign (n)
  701. (cond ((zerop n) 0)
  702. ((plusp n) 1)
  703. (t -1))))
  704. (/ (+ 100 (* (* (/ -1 b) (log (- 1 (* (/ b a ) (abs p)))))
  705. (sign p)))
  706. 100.0))))
  707. (defun pseudonormal (mean variation)
  708. "Random numbers in a pseudo-normal distribution with mean MEAN, range
  709. MEAN-VARIATION to MEAN+VARIATION"
  710. (+ (random* variation)
  711. (random* variation)
  712. (- variation)
  713. mean))
  714. (defun org-drill-early-interval-factor (optimal-factor
  715. optimal-interval
  716. days-ahead)
  717. "Arguments:
  718. - OPTIMAL-FACTOR: interval-factor if the item had been tested
  719. exactly when it was supposed to be.
  720. - OPTIMAL-INTERVAL: interval for next repetition (days) if the item had been
  721. tested exactly when it was supposed to be.
  722. - DAYS-AHEAD: how many days ahead of time the item was reviewed.
  723. Returns an adjusted optimal factor which should be used to
  724. calculate the next interval, instead of the optimal factor found
  725. in the matrix."
  726. (let ((delta-ofmax (* (1- optimal-factor)
  727. (/ (+ optimal-interval
  728. (* 0.6 optimal-interval) -1) (1- optimal-interval)))))
  729. (- optimal-factor
  730. (* delta-ofmax (/ days-ahead (+ days-ahead (* 0.6 optimal-interval)))))))
  731. (defun org-drill-get-item-data ()
  732. "Returns a list of 6 items, containing all the stored recall
  733. data for the item at point:
  734. - LAST-INTERVAL is the interval in days that was used to schedule the item's
  735. current review date.
  736. - REPEATS is the number of items the item has been successfully recalled without
  737. without any failures. It is reset to 0 upon failure to recall the item.
  738. - FAILURES is the total number of times the user has failed to recall the item.
  739. - TOTAL-REPEATS includes both successful and unsuccessful repetitions.
  740. - AVERAGE-QUALITY is the mean quality of recall of the item over
  741. all its repetitions, successful and unsuccessful.
  742. - EASE is a number reflecting how easy the item is to learn. Higher is easier.
  743. "
  744. (let ((learn-str (org-entry-get (point) "LEARN_DATA"))
  745. (repeats (org-drill-entry-total-repeats :missing)))
  746. (cond
  747. (learn-str
  748. (let ((learn-data (or (and learn-str
  749. (read learn-str))
  750. (copy-list initial-repetition-state))))
  751. (list (nth 0 learn-data) ; last interval
  752. (nth 1 learn-data) ; repetitions
  753. (org-drill-entry-failure-count)
  754. (nth 1 learn-data)
  755. (org-drill-entry-last-quality)
  756. (nth 2 learn-data) ; EF
  757. )))
  758. ((not (eql :missing repeats))
  759. (list (org-drill-entry-last-interval)
  760. (org-drill-entry-repeats-since-fail)
  761. (org-drill-entry-failure-count)
  762. (org-drill-entry-total-repeats)
  763. (org-drill-entry-average-quality)
  764. (org-drill-entry-ease)))
  765. (t ; virgin item
  766. (list 0 0 0 0 nil nil)))))
  767. (defun org-drill-store-item-data (last-interval repeats failures
  768. total-repeats meanq
  769. ease)
  770. "Stores the given data in the item at point."
  771. (org-entry-delete (point) "LEARN_DATA")
  772. (org-set-property "DRILL_LAST_INTERVAL"
  773. (number-to-string (round-float last-interval 4)))
  774. (org-set-property "DRILL_REPEATS_SINCE_FAIL" (number-to-string repeats))
  775. (org-set-property "DRILL_TOTAL_REPEATS" (number-to-string total-repeats))
  776. (org-set-property "DRILL_FAILURE_COUNT" (number-to-string failures))
  777. (org-set-property "DRILL_AVERAGE_QUALITY"
  778. (number-to-string (round-float meanq 3)))
  779. (org-set-property "DRILL_EASE"
  780. (number-to-string (round-float ease 3))))
  781. ;;; SM2 Algorithm =============================================================
  782. (defun determine-next-interval-sm2 (last-interval n ef quality
  783. failures meanq total-repeats)
  784. "Arguments:
  785. - LAST-INTERVAL -- the number of days since the item was last reviewed.
  786. - REPEATS -- the number of times the item has been successfully reviewed
  787. - EF -- the 'easiness factor'
  788. - QUALITY -- 0 to 5
  789. Returns a list: (INTERVAL REPEATS EF FAILURES MEAN TOTAL-REPEATS OFMATRIX), where:
  790. - INTERVAL is the number of days until the item should next be reviewed
  791. - REPEATS is incremented by 1.
  792. - EF is modified based on the recall quality for the item.
  793. - OF-MATRIX is not modified."
  794. (assert (> n 0))
  795. (assert (and (>= quality 0) (<= quality 5)))
  796. (if (<= quality org-drill-failure-quality)
  797. ;; When an item is failed, its interval is reset to 0,
  798. ;; but its EF is unchanged
  799. (list -1 1 ef (1+ failures) meanq (1+ total-repeats)
  800. org-drill-optimal-factor-matrix)
  801. ;; else:
  802. (let* ((next-ef (modify-e-factor ef quality))
  803. (interval
  804. (cond
  805. ((<= n 1) 1)
  806. ((= n 2)
  807. (cond
  808. (org-drill-add-random-noise-to-intervals-p
  809. (case quality
  810. (5 6)
  811. (4 4)
  812. (3 3)
  813. (2 1)
  814. (t -1)))
  815. (t 6)))
  816. (t (* last-interval next-ef)))))
  817. (list (if org-drill-add-random-noise-to-intervals-p
  818. (+ last-interval (* (- interval last-interval)
  819. (org-drill-random-dispersal-factor)))
  820. interval)
  821. (1+ n)
  822. next-ef
  823. failures meanq (1+ total-repeats)
  824. org-drill-optimal-factor-matrix))))
  825. ;;; SM5 Algorithm =============================================================
  826. (defun initial-optimal-factor-sm5 (n ef)
  827. (if (= 1 n)
  828. org-drill-sm5-initial-interval
  829. ef))
  830. (defun get-optimal-factor-sm5 (n ef of-matrix)
  831. (let ((factors (assoc n of-matrix)))
  832. (or (and factors
  833. (let ((ef-of (assoc ef (cdr factors))))
  834. (and ef-of (cdr ef-of))))
  835. (initial-optimal-factor-sm5 n ef))))
  836. (defun inter-repetition-interval-sm5 (last-interval n ef &optional of-matrix)
  837. (let ((of (get-optimal-factor-sm5 n ef (or of-matrix
  838. org-drill-optimal-factor-matrix))))
  839. (if (= 1 n)
  840. of
  841. (* of last-interval))))
  842. (defun determine-next-interval-sm5 (last-interval n ef quality
  843. failures meanq total-repeats
  844. of-matrix &optional delta-days)
  845. (if (zerop n) (setq n 1))
  846. (if (null ef) (setq ef 2.5))
  847. (assert (> n 0))
  848. (assert (and (>= quality 0) (<= quality 5)))
  849. (unless of-matrix
  850. (setq of-matrix org-drill-optimal-factor-matrix))
  851. (setq of-matrix (cl-copy-tree of-matrix))
  852. (setq meanq (if meanq
  853. (/ (+ quality (* meanq total-repeats 1.0))
  854. (1+ total-repeats))
  855. quality))
  856. (let ((next-ef (modify-e-factor ef quality))
  857. (old-ef ef)
  858. (new-of (modify-of (get-optimal-factor-sm5 n ef of-matrix)
  859. quality org-drill-learn-fraction))
  860. (interval nil))
  861. (when (and org-drill-adjust-intervals-for-early-and-late-repetitions-p
  862. delta-days (minusp delta-days))
  863. (setq new-of (org-drill-early-interval-factor
  864. (get-optimal-factor-sm5 n ef of-matrix)
  865. (inter-repetition-interval-sm5
  866. last-interval n ef of-matrix)
  867. delta-days)))
  868. (setq of-matrix
  869. (set-optimal-factor n next-ef of-matrix
  870. (round-float new-of 3))) ; round OF to 3 d.p.
  871. (setq ef next-ef)
  872. (cond
  873. ;; "Failed" -- reset repetitions to 0,
  874. ((<= quality org-drill-failure-quality)
  875. (list -1 1 old-ef (1+ failures) meanq (1+ total-repeats)
  876. of-matrix)) ; Not clear if OF matrix is supposed to be
  877. ; preserved
  878. ;; For a zero-based quality of 4 or 5, don't repeat
  879. ;; ((and (>= quality 4)
  880. ;; (not org-learn-always-reschedule))
  881. ;; (list 0 (1+ n) ef failures meanq
  882. ;; (1+ total-repeats) of-matrix)) ; 0 interval = unschedule
  883. (t
  884. (setq interval (inter-repetition-interval-sm5
  885. last-interval n ef of-matrix))
  886. (if org-drill-add-random-noise-to-intervals-p
  887. (setq interval (* interval (org-drill-random-dispersal-factor))))
  888. (list interval
  889. (1+ n)
  890. ef
  891. failures
  892. meanq
  893. (1+ total-repeats)
  894. of-matrix)))))
  895. ;;; Simple8 Algorithm =========================================================
  896. (defun org-drill-simple8-first-interval (failures)
  897. "Arguments:
  898. - FAILURES: integer >= 0. The total number of times the item has
  899. been forgotten, ever.
  900. Returns the optimal FIRST interval for an item which has previously been
  901. forgotten on FAILURES occasions."
  902. (* 2.4849 (exp (* -0.057 failures))))
  903. (defun org-drill-simple8-interval-factor (ease repetition)
  904. "Arguments:
  905. - EASE: floating point number >= 1.2. Corresponds to `AF' in SM8 algorithm.
  906. - REPETITION: the number of times the item has been tested.
  907. 1 is the first repetition (ie the second trial).
  908. Returns:
  909. The factor by which the last interval should be
  910. multiplied to give the next interval. Corresponds to `RF' or `OF'."
  911. (+ 1.2 (* (- ease 1.2) (expt org-drill-learn-fraction (log repetition 2)))))
  912. (defun org-drill-simple8-quality->ease (quality)
  913. "Returns the ease (`AF' in the SM8 algorithm) which corresponds
  914. to a mean item quality of QUALITY."
  915. (+ (* 0.0542 (expt quality 4))
  916. (* -0.4848 (expt quality 3))
  917. (* 1.4916 (expt quality 2))
  918. (* -1.2403 quality)
  919. 1.4515))
  920. (defun determine-next-interval-simple8 (last-interval repeats quality
  921. failures meanq totaln
  922. &optional delta-days)
  923. "Arguments:
  924. - LAST-INTERVAL -- the number of days since the item was last reviewed.
  925. - REPEATS -- the number of times the item has been successfully reviewed
  926. - EASE -- the 'easiness factor'
  927. - QUALITY -- 0 to 5
  928. - DELTA-DAYS -- how many days overdue was the item when it was reviewed.
  929. 0 = reviewed on the scheduled day. +N = N days overdue.
  930. -N = reviewed N days early.
  931. Returns the new item data, as a list of 6 values:
  932. - NEXT-INTERVAL
  933. - REPEATS
  934. - EASE
  935. - FAILURES
  936. - AVERAGE-QUALITY
  937. - TOTAL-REPEATS.
  938. See the documentation for `org-drill-get-item-data' for a description of these."
  939. (assert (>= repeats 0))
  940. (assert (and (>= quality 0) (<= quality 5)))
  941. (assert (or (null meanq) (and (>= meanq 0) (<= meanq 5))))
  942. (let ((next-interval nil))
  943. (setf meanq (if meanq
  944. (/ (+ quality (* meanq totaln 1.0)) (1+ totaln))
  945. quality))
  946. (cond
  947. ((<= quality org-drill-failure-quality)
  948. (incf failures)
  949. (setf repeats 0
  950. next-interval -1))
  951. ((or (zerop repeats)
  952. (zerop last-interval))
  953. (setf next-interval (org-drill-simple8-first-interval failures))
  954. (incf repeats)
  955. (incf totaln))
  956. (t
  957. (let* ((use-n
  958. (if (and
  959. org-drill-adjust-intervals-for-early-and-late-repetitions-p
  960. (numberp delta-days) (plusp delta-days)
  961. (plusp last-interval))
  962. (+ repeats (min 1 (/ delta-days last-interval 1.0)))
  963. repeats))
  964. (factor (org-drill-simple8-interval-factor
  965. (org-drill-simple8-quality->ease meanq) use-n))
  966. (next-int (* last-interval factor)))
  967. (when (and org-drill-adjust-intervals-for-early-and-late-repetitions-p
  968. (numberp delta-days) (minusp delta-days))
  969. ;; The item was reviewed earlier than scheduled.
  970. (setf factor (org-drill-early-interval-factor
  971. factor next-int (abs delta-days))
  972. next-int (* last-interval factor)))
  973. (setf next-interval next-int)
  974. (incf repeats)
  975. (incf totaln))))
  976. (list
  977. (if (and org-drill-add-random-noise-to-intervals-p
  978. (plusp next-interval))
  979. (* next-interval (org-drill-random-dispersal-factor))
  980. next-interval)
  981. repeats
  982. (org-drill-simple8-quality->ease meanq)
  983. failures
  984. meanq
  985. totaln
  986. )))
  987. ;;; Essentially copied from `org-learn.el', but modified to
  988. ;;; optionally call the SM2 or simple8 functions.
  989. (defun org-drill-smart-reschedule (quality &optional days-ahead)
  990. "If DAYS-AHEAD is supplied it must be a positive integer. The
  991. item will be scheduled exactly this many days into the future."
  992. (let ((delta-days (- (time-to-days (current-time))
  993. (time-to-days (or (org-get-scheduled-time (point))
  994. (current-time)))))
  995. (ofmatrix org-drill-optimal-factor-matrix)
  996. ;; Entries can have weights, 1 by default. Intervals are divided by the
  997. ;; item's weight, so an item with a weight of 2 will have all intervals
  998. ;; halved, meaning you will end up reviewing it twice as often.
  999. ;; Useful for entries which randomly present any of several facts.
  1000. (weight (org-entry-get (point) "DRILL_CARD_WEIGHT")))
  1001. (if (stringp weight)
  1002. (setq weight (read weight)))
  1003. (destructuring-bind (last-interval repetitions failures
  1004. total-repeats meanq ease)
  1005. (org-drill-get-item-data)
  1006. (destructuring-bind (next-interval repetitions ease
  1007. failures meanq total-repeats
  1008. &optional new-ofmatrix)
  1009. (case org-drill-spaced-repetition-algorithm
  1010. (sm5 (determine-next-interval-sm5 last-interval repetitions
  1011. ease quality failures
  1012. meanq total-repeats ofmatrix))
  1013. (sm2 (determine-next-interval-sm2 last-interval repetitions
  1014. ease quality failures
  1015. meanq total-repeats))
  1016. (simple8 (determine-next-interval-simple8 last-interval repetitions
  1017. quality failures meanq
  1018. total-repeats
  1019. delta-days)))
  1020. (if (numberp days-ahead)
  1021. (setq next-interval days-ahead))
  1022. (if (and (null days-ahead)
  1023. (numberp weight) (plusp weight)
  1024. (not (minusp next-interval)))
  1025. (setq next-interval
  1026. (max 1.0 (+ last-interval
  1027. (/ (- next-interval last-interval) weight)))))
  1028. (org-drill-store-item-data next-interval repetitions failures
  1029. total-repeats meanq ease)
  1030. (if (eql 'sm5 org-drill-spaced-repetition-algorithm)
  1031. (setq org-drill-optimal-factor-matrix new-ofmatrix))
  1032. (cond
  1033. ((= 0 days-ahead)
  1034. (org-schedule '(4)))
  1035. ((minusp days-ahead)
  1036. (org-schedule nil (current-time)))
  1037. (t
  1038. (org-schedule nil (time-add (current-time)
  1039. (days-to-time
  1040. (round next-interval))))))))))
  1041. (defun org-drill-hypothetical-next-review-date (quality)
  1042. "Returns an integer representing the number of days into the future
  1043. that the current item would be scheduled, based on a recall quality
  1044. of QUALITY."
  1045. (let ((weight (org-entry-get (point) "DRILL_CARD_WEIGHT")))
  1046. (destructuring-bind (last-interval repetitions failures
  1047. total-repeats meanq ease)
  1048. (org-drill-get-item-data)
  1049. (if (stringp weight)
  1050. (setq weight (read weight)))
  1051. (destructuring-bind (next-interval repetitions ease
  1052. failures meanq total-repeats
  1053. &optional ofmatrix)
  1054. (case org-drill-spaced-repetition-algorithm
  1055. (sm5 (determine-next-interval-sm5 last-interval repetitions
  1056. ease quality failures
  1057. meanq total-repeats
  1058. org-drill-optimal-factor-matrix))
  1059. (sm2 (determine-next-interval-sm2 last-interval repetitions
  1060. ease quality failures
  1061. meanq total-repeats))
  1062. (simple8 (determine-next-interval-simple8 last-interval repetitions
  1063. quality failures meanq
  1064. total-repeats)))
  1065. (cond
  1066. ((not (plusp next-interval))
  1067. 0)
  1068. ((and (numberp weight) (plusp weight))
  1069. (+ last-interval
  1070. (max 1.0 (/ (- next-interval last-interval) weight))))
  1071. (t
  1072. next-interval))))))
  1073. (defun org-drill-hypothetical-next-review-dates ()
  1074. (let ((intervals nil))
  1075. (dotimes (q 6)
  1076. (push (max (or (car intervals) 0)
  1077. (org-drill-hypothetical-next-review-date q))
  1078. intervals))
  1079. (reverse intervals)))
  1080. (defun org-drill-reschedule ()
  1081. "Returns quality rating (0-5), or nil if the user quit."
  1082. (let ((ch nil)
  1083. (input nil)
  1084. (next-review-dates (org-drill-hypothetical-next-review-dates)))
  1085. (save-excursion
  1086. (while (not (memq ch '(?q ?e ?0 ?1 ?2 ?3 ?4 ?5)))
  1087. (setq input (read-key-sequence
  1088. (if (eq ch ??)
  1089. (format "0-2 Means you have forgotten the item.
  1090. 3-5 Means you have remembered the item.
  1091. 0 - Completely forgot.
  1092. 1 - Even after seeing the answer, it still took a bit to sink in.
  1093. 2 - After seeing the answer, you remembered it.
  1094. 3 - It took you awhile, but you finally remembered. (+%s days)
  1095. 4 - After a little bit of thought you remembered. (+%s days)
  1096. 5 - You remembered the item really easily. (+%s days)
  1097. How well did you do? (0-5, ?=help, e=edit, t=tags, q=quit)"
  1098. (round (nth 3 next-review-dates))
  1099. (round (nth 4 next-review-dates))
  1100. (round (nth 5 next-review-dates)))
  1101. "How well did you do? (0-5, ?=help, e=edit, t=tags, q=quit)")))
  1102. (cond
  1103. ((stringp input)
  1104. (setq ch (elt input 0)))
  1105. ((and (vectorp input) (symbolp (elt input 0)))
  1106. (case (elt input 0)
  1107. (up (ignore-errors (forward-line -1)))
  1108. (down (ignore-errors (forward-line 1)))
  1109. (left (ignore-errors (backward-char)))
  1110. (right (ignore-errors (forward-char)))
  1111. (prior (ignore-errors (scroll-down))) ; pgup
  1112. (next (ignore-errors (scroll-up))))) ; pgdn
  1113. ((and (vectorp input) (listp (elt input 0))
  1114. (eventp (elt input 0)))
  1115. (case (car (elt input 0))
  1116. (wheel-up (ignore-errors (mwheel-scroll (elt input 0))))
  1117. (wheel-down (ignore-errors (mwheel-scroll (elt input 0)))))))
  1118. (if (eql ch ?t)
  1119. (org-set-tags-command))))
  1120. (cond
  1121. ((and (>= ch ?0) (<= ch ?5))
  1122. (let ((quality (- ch ?0))
  1123. (failures (org-drill-entry-failure-count)))
  1124. (unless *org-drill-cram-mode*
  1125. (save-excursion
  1126. (let ((quality (if (org-drill--entry-lapsed-p) 2 quality)))
  1127. (org-drill-smart-reschedule quality
  1128. (nth quality next-review-dates))))
  1129. (push quality *org-drill-session-qualities*)
  1130. (cond
  1131. ((<= quality org-drill-failure-quality)
  1132. (when org-drill-leech-failure-threshold
  1133. ;;(setq failures (if failures (string-to-number failures) 0))
  1134. ;; (org-set-property "DRILL_FAILURE_COUNT"
  1135. ;; (format "%d" (1+ failures)))
  1136. (if (> (1+ failures) org-drill-leech-failure-threshold)
  1137. (org-toggle-tag "leech" 'on))))
  1138. (t
  1139. (let ((scheduled-time (org-get-scheduled-time (point))))
  1140. (when scheduled-time
  1141. (message "Next review in %d days"
  1142. (- (time-to-days scheduled-time)
  1143. (time-to-days (current-time))))
  1144. (sit-for 0.5)))))
  1145. (org-set-property "DRILL_LAST_QUALITY" (format "%d" quality))
  1146. (org-set-property "DRILL_LAST_REVIEWED"
  1147. (time-to-inactive-org-timestamp (current-time))))
  1148. quality))
  1149. ((= ch ?e)
  1150. 'edit)
  1151. (t
  1152. nil))))
  1153. ;; (defun org-drill-hide-all-subheadings-except (heading-list)
  1154. ;; "Returns a list containing the position of each immediate subheading of
  1155. ;; the current topic."
  1156. ;; (let ((drill-entry-level (org-current-level))
  1157. ;; (drill-sections nil)
  1158. ;; (drill-heading nil))
  1159. ;; (org-show-subtree)
  1160. ;; (save-excursion
  1161. ;; (org-map-entries
  1162. ;; (lambda ()
  1163. ;; (when (and (not (outline-invisible-p))
  1164. ;; (> (org-current-level) drill-entry-level))
  1165. ;; (setq drill-heading (org-get-heading t))
  1166. ;; (unless (and (= (org-current-level) (1+ drill-entry-level))
  1167. ;; (member drill-heading heading-list))
  1168. ;; (hide-subtree))
  1169. ;; (push (point) drill-sections)))
  1170. ;; "" 'tree))
  1171. ;; (reverse drill-sections)))
  1172. (defun org-drill-hide-subheadings-if (test)
  1173. "TEST is a function taking no arguments. TEST will be called for each
  1174. of the immediate subheadings of the current drill item, with the point
  1175. on the relevant subheading. TEST should return nil if the subheading is
  1176. to be revealed, non-nil if it is to be hidden.
  1177. Returns a list containing the position of each immediate subheading of
  1178. the current topic."
  1179. (let ((drill-entry-level (org-current-level))
  1180. (drill-sections nil))
  1181. (org-show-subtree)
  1182. (save-excursion
  1183. (org-map-entries
  1184. (lambda ()
  1185. (when (and (not (outline-invisible-p))
  1186. (> (org-current-level) drill-entry-level))
  1187. (when (or (/= (org-current-level) (1+ drill-entry-level))
  1188. (funcall test))
  1189. (hide-subtree))
  1190. (push (point) drill-sections)))
  1191. "" 'tree))
  1192. (reverse drill-sections)))
  1193. (defun org-drill-hide-all-subheadings-except (heading-list)
  1194. (org-drill-hide-subheadings-if
  1195. (lambda () (let ((drill-heading (org-get-heading t)))
  1196. (not (member drill-heading heading-list))))))
  1197. (defun org-drill-presentation-prompt (&rest fmt-and-args)
  1198. (let* ((item-start-time (current-time))
  1199. (input nil)
  1200. (ch nil)
  1201. (last-second 0)
  1202. (mature-entry-count (+ (length *org-drill-young-mature-entries*)
  1203. (length *org-drill-old-mature-entries*)
  1204. (length *org-drill-overdue-entries*)))
  1205. (status (first (org-drill-entry-status)))
  1206. (prompt
  1207. (if fmt-and-args
  1208. (apply 'format
  1209. (first fmt-and-args)
  1210. (rest fmt-and-args))
  1211. (concat "Press key for answer, "
  1212. "e=edit, t=tags, s=skip, q=quit."))))
  1213. (setq prompt
  1214. (format "%s %s %s %s %s %s"
  1215. (propertize
  1216. (char-to-string
  1217. (cond
  1218. ((eql status :failed) ?F)
  1219. (*org-drill-cram-mode* ?C)
  1220. (t
  1221. (case status
  1222. (:new ?N) (:young ?Y) (:old ?o) (:overdue ?!)
  1223. (t ??)))))
  1224. 'face `(:foreground
  1225. ,(case status
  1226. (:new org-drill-new-count-color)
  1227. ((:young :old) org-drill-mature-count-color)
  1228. ((:overdue :failed) org-drill-failed-count-color)
  1229. (t org-drill-done-count-color))))
  1230. (propertize
  1231. (number-to-string (length *org-drill-done-entries*))
  1232. 'face `(:foreground ,org-drill-done-count-color)
  1233. 'help-echo "The number of items you have reviewed this session.")
  1234. (propertize
  1235. (number-to-string (+ (length *org-drill-again-entries*)
  1236. (length *org-drill-failed-entries*)))
  1237. 'face `(:foreground ,org-drill-failed-count-color)
  1238. 'help-echo (concat "The number of items that you failed, "
  1239. "and need to review again."))
  1240. (propertize
  1241. (number-to-string mature-entry-count)
  1242. 'face `(:foreground ,org-drill-mature-count-color)
  1243. 'help-echo "The number of old items due for review.")
  1244. (propertize
  1245. (number-to-string (length *org-drill-new-entries*))
  1246. 'face `(:foreground ,org-drill-new-count-color)
  1247. 'help-echo (concat "The number of new items that you "
  1248. "have never reviewed."))
  1249. prompt))
  1250. (if (and (eql 'warn org-drill-leech-method)
  1251. (org-drill-entry-leech-p))
  1252. (setq prompt (concat
  1253. (propertize "!!! LEECH ITEM !!!
  1254. You seem to be having a lot of trouble memorising this item.
  1255. Consider reformulating the item to make it easier to remember.\n"
  1256. 'face '(:foreground "red"))
  1257. prompt)))
  1258. (while (memq ch '(nil ?t))
  1259. (setq ch nil)
  1260. (while (not (input-pending-p))
  1261. (let ((elapsed (time-subtract (current-time) item-start-time)))
  1262. (message (concat (if (>= (time-to-seconds elapsed) (* 60 60))
  1263. "++:++ "
  1264. (format-time-string "%M:%S " elapsed))
  1265. prompt))
  1266. (sit-for 1)))
  1267. (setq input (read-key-sequence nil))
  1268. (if (stringp input) (setq ch (elt input 0)))
  1269. (if (eql ch ?t)
  1270. (org-set-tags-command)))
  1271. (case ch
  1272. (?q nil)
  1273. (?e 'edit)
  1274. (?s 'skip)
  1275. (otherwise t))))
  1276. (defun org-pos-in-regexp (pos regexp &optional nlines)
  1277. (save-excursion
  1278. (goto-char pos)
  1279. (org-in-regexp regexp nlines)))
  1280. (defun org-drill-hide-region (beg end &optional text)
  1281. "Hide the buffer region between BEG and END with an 'invisible text'
  1282. visual overlay, or with the string TEXT if it is supplied."
  1283. (let ((ovl (make-overlay beg end)))
  1284. (overlay-put ovl 'category
  1285. 'org-drill-hidden-text-overlay)
  1286. (overlay-put ovl 'priority 9999)
  1287. (when (stringp text)
  1288. (overlay-put ovl 'invisible nil)
  1289. (overlay-put ovl 'face 'default)
  1290. (overlay-put ovl 'display text))))
  1291. (defun org-drill-hide-heading-at-point (&optional text)
  1292. (unless (org-at-heading-p)
  1293. (error "Point is not on a heading."))
  1294. (save-excursion
  1295. (let ((beg (point)))
  1296. (end-of-line)
  1297. (org-drill-hide-region beg (point) text))))
  1298. (defun org-drill-hide-comments ()
  1299. (save-excursion
  1300. (while (re-search-forward "^#.*$" nil t)
  1301. (org-drill-hide-region (match-beginning 0) (match-end 0)))))
  1302. (defun org-drill-unhide-text ()
  1303. ;; This will also unhide the item's heading.
  1304. (save-excursion
  1305. (dolist (ovl (overlays-in (point-min) (point-max)))
  1306. (when (eql 'org-drill-hidden-text-overlay (overlay-get ovl 'category))
  1307. (delete-overlay ovl)))))
  1308. (defun org-drill-hide-clozed-text ()
  1309. (save-excursion
  1310. (while (re-search-forward org-drill-cloze-regexp nil t)
  1311. ;; Don't hide:
  1312. ;; - org links, partly because they might contain inline
  1313. ;; images which we want to keep visible.
  1314. ;; - LaTeX math fragments
  1315. ;; - the contents of SRC blocks
  1316. (unless (save-match-data
  1317. (or (org-pos-in-regexp (match-beginning 0)
  1318. org-bracket-link-regexp 1)
  1319. (org-in-src-block-p)
  1320. (org-inside-LaTeX-fragment-p)))
  1321. (org-drill-hide-matched-cloze-text)))))
  1322. (defun org-drill-hide-matched-cloze-text ()
  1323. "Hide the current match with a 'cloze' visual overlay."
  1324. (let ((ovl (make-overlay (match-beginning 0) (match-end 0)))
  1325. (hint-sep-pos (string-match-p (regexp-quote org-drill-hint-separator)
  1326. (match-string 0))))
  1327. (overlay-put ovl 'category
  1328. 'org-drill-cloze-overlay-defaults)
  1329. (overlay-put ovl 'priority 9999)
  1330. (when (and hint-sep-pos
  1331. (> hint-sep-pos 1))
  1332. (let ((hint (substring-no-properties
  1333. (match-string 0)
  1334. (+ hint-sep-pos (length org-drill-hint-separator))
  1335. (1- (length (match-string 0))))))
  1336. (overlay-put
  1337. ovl 'display
  1338. ;; If hint is like `X...' then display [X...]
  1339. ;; otherwise display [...X]
  1340. (format (if (string-match-p (regexp-quote "...") hint) "[%s]" "[%s...]")
  1341. hint))))))
  1342. (defun org-drill-hide-cloze-hints ()
  1343. (save-excursion
  1344. (while (re-search-forward org-drill-cloze-regexp nil t)
  1345. (unless (or (save-match-data
  1346. (org-pos-in-regexp (match-beginning 0)
  1347. org-bracket-link-regexp 1))
  1348. (null (match-beginning 2))) ; hint subexpression matched
  1349. (org-drill-hide-region (match-beginning 2) (match-end 2))))))
  1350. (defmacro with-replaced-entry-text (text &rest body)
  1351. "During the execution of BODY, the entire text of the current entry is
  1352. concealed by an overlay that displays the string TEXT."
  1353. `(progn
  1354. (org-drill-replace-entry-text ,text)
  1355. (unwind-protect
  1356. (progn
  1357. ,@body)
  1358. (org-drill-unreplace-entry-text))))
  1359. (defmacro with-replaced-entry-text-multi (replacements &rest body)
  1360. "During the execution of BODY, the entire text of the current entry is
  1361. concealed by an overlay that displays the overlays in REPLACEMENTS."
  1362. `(progn
  1363. (org-drill-replace-entry-text ,replacements t)
  1364. (unwind-protect
  1365. (progn
  1366. ,@body)
  1367. (org-drill-unreplace-entry-text))))
  1368. (defun org-drill-replace-entry-text (text &optional multi-p)
  1369. "Make an overlay that conceals the entire text of the item, not
  1370. including properties or the contents of subheadings. The overlay shows
  1371. the string TEXT.
  1372. If MULTI-P is non-nil, TEXT must be a list of values which are legal
  1373. for the `display' text property. The text of the item will be temporarily
  1374. replaced by all of these items, in the order in which they appear in
  1375. the list.
  1376. Note: does not actually alter the item."
  1377. (cond
  1378. ((and multi-p
  1379. (listp text))
  1380. (org-drill-replace-entry-text-multi text))
  1381. (t
  1382. (let ((ovl (make-overlay (point-min)
  1383. (save-excursion
  1384. (outline-next-heading)
  1385. (point)))))
  1386. (overlay-put ovl 'priority 9999)
  1387. (overlay-put ovl 'category
  1388. 'org-drill-replaced-text-overlay)
  1389. (overlay-put ovl 'display text)))))
  1390. (defun org-drill-unreplace-entry-text ()
  1391. (save-excursion
  1392. (dolist (ovl (overlays-in (point-min) (point-max)))
  1393. (when (eql 'org-drill-replaced-text-overlay (overlay-get ovl 'category))
  1394. (delete-overlay ovl)))))
  1395. (defun org-drill-replace-entry-text-multi (replacements)
  1396. "Make overlays that conceal the entire text of the item, not
  1397. including properties or the contents of subheadings. The overlay shows
  1398. the string TEXT.
  1399. Note: does not actually alter the item."
  1400. (let ((ovl nil)
  1401. (p-min (point-min))
  1402. (p-max (save-excursion
  1403. (outline-next-heading)
  1404. (point))))
  1405. (assert (>= (- p-max p-min) (length replacements)))
  1406. (dotimes (i (length replacements))
  1407. (setq ovl (make-overlay (+ p-min (* 2 i))
  1408. (if (= i (1- (length replacements)))
  1409. p-max
  1410. (+ p-min (* 2 i) 1))))
  1411. (overlay-put ovl 'priority 9999)
  1412. (overlay-put ovl 'category
  1413. 'org-drill-replaced-text-overlay)
  1414. (overlay-put ovl 'display (nth i replacements)))))
  1415. (defmacro with-replaced-entry-heading (heading &rest body)
  1416. `(progn
  1417. (org-drill-replace-entry-heading ,heading)
  1418. (unwind-protect
  1419. (progn
  1420. ,@body)
  1421. (org-drill-unhide-text))))
  1422. (defun org-drill-replace-entry-heading (heading)
  1423. "Make an overlay that conceals the heading of the item. The overlay shows
  1424. the string TEXT.
  1425. Note: does not actually alter the item."
  1426. (org-drill-hide-heading-at-point heading))
  1427. (defun org-drill-unhide-clozed-text ()
  1428. (save-excursion
  1429. (dolist (ovl (overlays-in (point-min) (point-max)))
  1430. (when (eql 'org-drill-cloze-overlay-defaults (overlay-get ovl 'category))
  1431. (delete-overlay ovl)))))
  1432. (defun org-drill-get-entry-text (&optional keep-properties-p)
  1433. (let ((text (org-agenda-get-some-entry-text (point-marker) 100)))
  1434. (if keep-properties-p
  1435. text
  1436. (substring-no-properties text))))
  1437. ;; (defun org-entry-empty-p ()
  1438. ;; (zerop (length (org-drill-get-entry-text))))
  1439. ;; This version is about 5x faster than the old version, above.
  1440. (defun org-entry-empty-p ()
  1441. (save-excursion
  1442. (org-back-to-heading t)
  1443. (let ((lim (save-excursion
  1444. (outline-next-heading) (point))))
  1445. (org-end-of-meta-data-and-drawers)
  1446. (or (>= (point) lim)
  1447. (null (re-search-forward "[[:graph:]]" lim t))))))
  1448. (defun org-drill-entry-empty-p () (org-entry-empty-p))
  1449. ;;; Presentation functions ====================================================
  1450. ;;
  1451. ;; Each of these is called with point on topic heading. Each needs to show the
  1452. ;; topic in the form of a 'question' or with some information 'hidden', as
  1453. ;; appropriate for the card type. The user should then be prompted to press a
  1454. ;; key. The function should then reveal either the 'answer' or the entire
  1455. ;; topic, and should return t if the user chose to see the answer and rate their
  1456. ;; recall, nil if they chose to quit.
  1457. (defun org-drill-present-simple-card ()
  1458. (with-hidden-comments
  1459. (with-hidden-cloze-hints
  1460. (with-hidden-cloze-text
  1461. (org-drill-hide-all-subheadings-except nil)
  1462. (org-drill--show-latex-fragments) ; overlay all LaTeX fragments with images
  1463. (ignore-errors
  1464. (org-display-inline-images t))
  1465. (org-cycle-hide-drawers 'all)
  1466. (prog1 (org-drill-presentation-prompt)
  1467. (org-drill-hide-subheadings-if 'org-drill-entry-p))))))
  1468. (defun org-drill-present-default-answer (reschedule-fn)
  1469. (cond
  1470. (drill-answer
  1471. (with-replaced-entry-text
  1472. (format "\nAnswer:\n\n %s\n" drill-answer)
  1473. (prog1
  1474. (funcall reschedule-fn)
  1475. (setq drill-answer nil))))
  1476. (t
  1477. (org-drill-hide-subheadings-if 'org-drill-entry-p)
  1478. (org-drill-unhide-clozed-text)
  1479. (org-drill--show-latex-fragments)
  1480. (ignore-errors
  1481. (org-display-inline-images t))
  1482. (org-cycle-hide-drawers 'all)
  1483. (with-hidden-cloze-hints
  1484. (funcall reschedule-fn)))))
  1485. (defun org-drill--show-latex-fragments ()
  1486. (org-remove-latex-fragment-image-overlays)
  1487. (if (fboundp 'org-toggle-latex-fragment)
  1488. (org-toggle-latex-fragment '(4))
  1489. (org-preview-latex-fragment '(4))))
  1490. (defun org-drill-present-two-sided-card ()
  1491. (with-hidden-comments
  1492. (with-hidden-cloze-hints
  1493. (with-hidden-cloze-text
  1494. (let ((drill-sections (org-drill-hide-all-subheadings-except nil)))
  1495. (when drill-sections
  1496. (save-excursion
  1497. (goto-char (nth (random* (min 2 (length drill-sections)))
  1498. drill-sections))
  1499. (org-show-subtree)))
  1500. (org-drill--show-latex-fragments)
  1501. (ignore-errors
  1502. (org-display-inline-images t))
  1503. (org-cycle-hide-drawers 'all)
  1504. (prog1 (org-drill-presentation-prompt)
  1505. (org-drill-hide-subheadings-if 'org-drill-entry-p)))))))
  1506. (defun org-drill-present-multi-sided-card ()
  1507. (with-hidden-comments
  1508. (with-hidden-cloze-hints
  1509. (with-hidden-cloze-text
  1510. (let ((drill-sections (org-drill-hide-all-subheadings-except nil)))
  1511. (when drill-sections
  1512. (save-excursion
  1513. (goto-char (nth (random* (length drill-sections)) drill-sections))
  1514. (org-show-subtree)))
  1515. (org-drill--show-latex-fragments)
  1516. (ignore-errors
  1517. (org-display-inline-images t))
  1518. (org-cycle-hide-drawers 'all)
  1519. (prog1 (org-drill-presentation-prompt)
  1520. (org-drill-hide-subheadings-if 'org-drill-entry-p)))))))
  1521. (defun org-drill-present-multicloze-hide-n (number-to-hide
  1522. &optional
  1523. force-show-first
  1524. force-show-last
  1525. force-hide-first)
  1526. "Hides NUMBER-TO-HIDE pieces of text that are marked for cloze deletion,
  1527. chosen at random.
  1528. If NUMBER-TO-HIDE is negative, show only (ABS NUMBER-TO-HIDE) pieces,
  1529. hiding all the rest.
  1530. If FORCE-HIDE-FIRST is non-nil, force the first piece of text to be one of
  1531. the hidden items.
  1532. If FORCE-SHOW-FIRST is non-nil, never hide the first piece of text.
  1533. If FORCE-SHOW-LAST is non-nil, never hide the last piece of text.
  1534. If the number of text pieces in the item is less than
  1535. NUMBER-TO-HIDE, then all text pieces will be hidden (except the first or last
  1536. items if FORCE-SHOW-FIRST or FORCE-SHOW-LAST is non-nil)."
  1537. (with-hidden-comments
  1538. (with-hidden-cloze-hints
  1539. (let ((item-end nil)
  1540. (match-count 0)
  1541. (body-start (or (cdr (org-get-property-block))
  1542. (point))))
  1543. (if (and force-hide-first force-show-first)
  1544. (error "FORCE-HIDE-FIRST and FORCE-SHOW-FIRST are mutually exclusive"))
  1545. (org-drill-hide-all-subheadings-except nil)
  1546. (save-excursion
  1547. (outline-next-heading)
  1548. (setq item-end (point)))
  1549. (save-excursion
  1550. (goto-char body-start)
  1551. (while (re-search-forward org-drill-cloze-regexp item-end t)
  1552. (let ((in-regexp? (save-match-data
  1553. (org-pos-in-regexp (match-beginning 0)
  1554. org-bracket-link-regexp 1))))
  1555. (unless (or in-regexp?
  1556. (org-inside-LaTeX-fragment-p))
  1557. (incf match-count)))))
  1558. (if (minusp number-to-hide)
  1559. (setq number-to-hide (+ match-count number-to-hide)))
  1560. (when (plusp match-count)
  1561. (let* ((positions (shuffle-list (loop for i from 1
  1562. to match-count
  1563. collect i)))
  1564. (match-nums nil)
  1565. (cnt nil))
  1566. (if force-hide-first
  1567. ;; Force '1' to be in the list, and to be the first item
  1568. ;; in the list.
  1569. (setq positions (cons 1 (remove 1 positions))))
  1570. (if force-show-first
  1571. (setq positions (remove 1 positions)))
  1572. (if force-show-last
  1573. (setq positions (remove match-count positions)))
  1574. (setq match-nums
  1575. (subseq positions
  1576. 0 (min number-to-hide (length positions))))
  1577. ;; (dolist (pos-to-hide match-nums)
  1578. (save-excursion
  1579. (goto-char body-start)
  1580. (setq cnt 0)
  1581. (while (re-search-forward org-drill-cloze-regexp item-end t)
  1582. (unless (save-match-data
  1583. (or (org-pos-in-regexp (match-beginning 0)
  1584. org-bracket-link-regexp 1)
  1585. (org-inside-LaTeX-fragment-p)))
  1586. (incf cnt)
  1587. (if (memq cnt match-nums)
  1588. (org-drill-hide-matched-cloze-text)))))))
  1589. ;; (loop
  1590. ;; do (re-search-forward org-drill-cloze-regexp
  1591. ;; item-end t pos-to-hide)
  1592. ;; while (org-pos-in-regexp (match-beginning 0)
  1593. ;; org-bracket-link-regexp 1))
  1594. ;; (org-drill-hide-matched-cloze-text)))))
  1595. (org-drill--show-latex-fragments)
  1596. (ignore-errors
  1597. (org-display-inline-images t))
  1598. (org-cycle-hide-drawers 'all)
  1599. (prog1 (org-drill-presentation-prompt)
  1600. (org-drill-hide-subheadings-if 'org-drill-entry-p)
  1601. (org-drill-unhide-clozed-text))))))
  1602. (defun org-drill-present-multicloze-hide-nth (to-hide)
  1603. "Hide the TO-HIDE'th piece of clozed text. 1 is the first piece. If
  1604. TO-HIDE is negative, count backwards, so -1 means the last item, -2
  1605. the second to last, etc."
  1606. (with-hidden-comments
  1607. (with-hidden-cloze-hints
  1608. (let ((item-end nil)
  1609. (match-count 0)
  1610. (body-start (or (cdr (org-get-property-block))
  1611. (point)))
  1612. (cnt 0))
  1613. (org-drill-hide-all-subheadings-except nil)
  1614. (save-excursion
  1615. (outline-next-heading)
  1616. (setq item-end (point)))
  1617. (save-excursion
  1618. (goto-char body-start)
  1619. (while (re-search-forward org-drill-cloze-regexp item-end t)
  1620. (let ((in-regexp? (save-match-data
  1621. (org-pos-in-regexp (match-beginning 0)
  1622. org-bracket-link-regexp 1))))
  1623. (unless (or in-regexp?
  1624. (org-inside-LaTeX-fragment-p))
  1625. (incf match-count)))))
  1626. (if (minusp to-hide)
  1627. (setq to-hide (+ 1 to-hide match-count)))
  1628. (cond
  1629. ((or (not (plusp match-count))
  1630. (> to-hide match-count))
  1631. nil)
  1632. (t
  1633. (save-excursion
  1634. (goto-char body-start)
  1635. (setq cnt 0)
  1636. (while (re-search-forward org-drill-cloze-regexp item-end t)
  1637. (unless (save-match-data
  1638. ;; Don't consider this a cloze region if it is part of an
  1639. ;; org link, or if it occurs inside a LaTeX math
  1640. ;; fragment
  1641. (or (org-pos-in-regexp (match-beginning 0)
  1642. org-bracket-link-regexp 1)
  1643. (org-inside-LaTeX-fragment-p)))
  1644. (incf cnt)
  1645. (if (= cnt to-hide)
  1646. (org-drill-hide-matched-cloze-text)))))))
  1647. (org-drill--show-latex-fragments)
  1648. (ignore-errors
  1649. (org-display-inline-images t))
  1650. (org-cycle-hide-drawers 'all)
  1651. (prog1 (org-drill-presentation-prompt)
  1652. (org-drill-hide-subheadings-if 'org-drill-entry-p)
  1653. (org-drill-unhide-clozed-text))))))
  1654. (defun org-drill-present-multicloze-hide1 ()
  1655. "Hides one of the pieces of text that are marked for cloze deletion,
  1656. chosen at random."
  1657. (org-drill-present-multicloze-hide-n 1))
  1658. (defun org-drill-present-multicloze-hide2 ()
  1659. "Hides two of the pieces of text that are marked for cloze deletion,
  1660. chosen at random."
  1661. (org-drill-present-multicloze-hide-n 2))
  1662. (defun org-drill-present-multicloze-hide-first ()
  1663. "Hides the first piece of text that is marked for cloze deletion."
  1664. (org-drill-present-multicloze-hide-nth 1))
  1665. (defun org-drill-present-multicloze-hide-last ()
  1666. "Hides the last piece of text that is marked for cloze deletion."
  1667. (org-drill-present-multicloze-hide-nth -1))
  1668. (defun org-drill-present-multicloze-hide1-firstmore ()
  1669. "Commonly, hides the FIRST piece of text that is marked for
  1670. cloze deletion. Uncommonly, hide one of the other pieces of text,
  1671. chosen at random.
  1672. The definitions of 'commonly' and 'uncommonly' are determined by
  1673. the value of `org-drill-cloze-text-weight'."
  1674. ;; The 'firstmore' and 'lastmore' functions used to randomly choose whether
  1675. ;; to hide the 'favoured' piece of text. However even when the chance of
  1676. ;; hiding it was set quite high (80%), the outcome was too unpredictable over
  1677. ;; the small number of repetitions where most learning takes place for each
  1678. ;; item. In other words, the actual frequency during the first 10 repetitions
  1679. ;; was often very different from 80%. Hence we use modulo instead.
  1680. (cond
  1681. ((null org-drill-cloze-text-weight)
  1682. ;; Behave as hide1cloze
  1683. (org-drill-present-multicloze-hide1))
  1684. ((not (and (integerp org-drill-cloze-text-weight)
  1685. (plusp org-drill-cloze-text-weight)))
  1686. (error "Illegal value for org-drill-cloze-text-weight: %S"
  1687. org-drill-cloze-text-weight))
  1688. ((zerop (mod (1+ (org-drill-entry-total-repeats 0))
  1689. org-drill-cloze-text-weight))
  1690. ;; Uncommonly, hide any item except the first
  1691. (org-drill-present-multicloze-hide-n 1 t))
  1692. (t
  1693. ;; Commonly, hide first item
  1694. (org-drill-present-multicloze-hide-first))))
  1695. (defun org-drill-present-multicloze-show1-lastmore ()
  1696. "Commonly, hides all pieces except the last. Uncommonly, shows
  1697. any random piece. The effect is similar to 'show1cloze' except
  1698. that the last item is much less likely to be the item that is
  1699. visible.
  1700. The definitions of 'commonly' and 'uncommonly' are determined by
  1701. the value of `org-drill-cloze-text-weight'."
  1702. (cond
  1703. ((null org-drill-cloze-text-weight)
  1704. ;; Behave as show1cloze
  1705. (org-drill-present-multicloze-show1))
  1706. ((not (and (integerp org-drill-cloze-text-weight)
  1707. (plusp org-drill-cloze-text-weight)))
  1708. (error "Illegal value for org-drill-cloze-text-weight: %S"
  1709. org-drill-cloze-text-weight))
  1710. ((zerop (mod (1+ (org-drill-entry-total-repeats 0))
  1711. org-drill-cloze-text-weight))
  1712. ;; Uncommonly, show any item except the last
  1713. (org-drill-present-multicloze-hide-n -1 nil nil t))
  1714. (t
  1715. ;; Commonly, show the LAST item
  1716. (org-drill-present-multicloze-hide-n -1 nil t))))
  1717. (defun org-drill-present-multicloze-show1-firstless ()
  1718. "Commonly, hides all pieces except one, where the shown piece
  1719. is guaranteed NOT to be the first piece. Uncommonly, shows any
  1720. random piece. The effect is similar to 'show1cloze' except that
  1721. the first item is much less likely to be the item that is
  1722. visible.
  1723. The definitions of 'commonly' and 'uncommonly' are determined by
  1724. the value of `org-drill-cloze-text-weight'."
  1725. (cond
  1726. ((null org-drill-cloze-text-weight)
  1727. ;; Behave as show1cloze
  1728. (org-drill-present-multicloze-show1))
  1729. ((not (and (integerp org-drill-cloze-text-weight)
  1730. (plusp org-drill-cloze-text-weight)))
  1731. (error "Illegal value for org-drill-cloze-text-weight: %S"
  1732. org-drill-cloze-text-weight))
  1733. ((zerop (mod (1+ (org-drill-entry-total-repeats 0))
  1734. org-drill-cloze-text-weight))
  1735. ;; Uncommonly, show the first item
  1736. (org-drill-present-multicloze-hide-n -1 t))
  1737. (t
  1738. ;; Commonly, show any item, except the first
  1739. (org-drill-present-multicloze-hide-n -1 nil nil t))))
  1740. (defun org-drill-present-multicloze-show1 ()
  1741. "Similar to `org-drill-present-multicloze-hide1', but hides all
  1742. the pieces of text that are marked for cloze deletion, except for one
  1743. piece which is chosen at random."
  1744. (org-drill-present-multicloze-hide-n -1))
  1745. (defun org-drill-present-multicloze-show2 ()
  1746. "Similar to `org-drill-present-multicloze-show1', but reveals two
  1747. pieces rather than one."
  1748. (org-drill-present-multicloze-hide-n -2))
  1749. (defun org-drill-present-card-using-text (question &optional answer)
  1750. "Present the string QUESTION as the only visible content of the card.
  1751. If ANSWER is supplied, set the global variable `drill-answer' to its value."
  1752. (if answer (setq drill-answer answer))
  1753. (with-hidden-comments
  1754. (with-replaced-entry-text
  1755. (concat "\n" question)
  1756. (org-drill-hide-all-subheadings-except nil)
  1757. (org-cycle-hide-drawers 'all)
  1758. (ignore-errors
  1759. (org-display-inline-images t))
  1760. (prog1 (org-drill-presentation-prompt)
  1761. (org-drill-hide-subheadings-if 'org-drill-entry-p)))))
  1762. (defun org-drill-present-card-using-multiple-overlays (replacements &optional answer)
  1763. "TEXTS is a list of valid values for the 'display' text property.
  1764. Present these overlays, in sequence, as the only
  1765. visible content of the card.
  1766. If ANSWER is supplied, set the global variable `drill-answer' to its value."
  1767. (if answer (setq drill-answer answer))
  1768. (with-hidden-comments
  1769. (with-replaced-entry-text-multi
  1770. replacements
  1771. (org-drill-hide-all-subheadings-except nil)
  1772. (org-cycle-hide-drawers 'all)
  1773. (ignore-errors
  1774. (org-display-inline-images t))
  1775. (prog1 (org-drill-presentation-prompt)
  1776. (org-drill-hide-subheadings-if 'org-drill-entry-p)))))
  1777. (defun org-drill-entry ()
  1778. "Present the current topic for interactive review, as in `org-drill'.
  1779. Review will occur regardless of whether the topic is due for review or whether
  1780. it meets the definition of a 'review topic' used by `org-drill'.
  1781. Returns a quality rating from 0 to 5, or nil if the user quit, or the symbol
  1782. EDIT if the user chose to exit the drill and edit the current item. Choosing
  1783. the latter option leaves the drill session suspended; it can be resumed
  1784. later using `org-drill-resume'.
  1785. See `org-drill' for more details."
  1786. (interactive)
  1787. (org-drill-goto-drill-entry-heading)
  1788. ;;(unless (org-part-of-drill-entry-p)
  1789. ;; (error "Point is not inside a drill entry"))
  1790. ;;(unless (org-at-heading-p)
  1791. ;; (org-back-to-heading))
  1792. (let ((card-type (org-entry-get (point) "DRILL_CARD_TYPE" t))
  1793. (answer-fn 'org-drill-present-default-answer)
  1794. (present-empty-cards nil)
  1795. (cont nil)
  1796. ;; fontification functions in `outline-view-change-hook' can cause big
  1797. ;; slowdowns, so we temporarily bind this variable to nil here.
  1798. (outline-view-change-hook nil))
  1799. (setq drill-answer nil)
  1800. (org-save-outline-visibility t
  1801. (save-restriction
  1802. (org-narrow-to-subtree)
  1803. (org-show-subtree)
  1804. (org-cycle-hide-drawers 'all)
  1805. (let ((presentation-fn
  1806. (cdr (assoc card-type org-drill-card-type-alist))))
  1807. (if (listp presentation-fn)
  1808. (psetq answer-fn (or (second presentation-fn)
  1809. 'org-drill-present-default-answer)
  1810. present-empty-cards (third presentation-fn)
  1811. presentation-fn (first presentation-fn)))
  1812. (prog1
  1813. (cond
  1814. ((null presentation-fn)
  1815. (message "%s:%d: Unrecognised card type '%s', skipping..."
  1816. (buffer-name) (point) card-type)
  1817. (sit-for 0.5)
  1818. 'skip)
  1819. (t
  1820. (setq cont (funcall presentation-fn))
  1821. (cond
  1822. ((not cont)
  1823. (message "Quit")
  1824. nil)
  1825. ((eql cont 'edit)
  1826. 'edit)
  1827. ((eql cont 'skip)
  1828. 'skip)
  1829. (t
  1830. (save-excursion
  1831. (funcall answer-fn
  1832. (lambda () (org-drill-reschedule))))))))
  1833. (org-remove-latex-fragment-image-overlays)))))))
  1834. (defun org-drill-entries-pending-p ()
  1835. (or *org-drill-again-entries*
  1836. *org-drill-current-item*
  1837. (and (not (org-drill-maximum-item-count-reached-p))
  1838. (not (org-drill-maximum-duration-reached-p))
  1839. (or *org-drill-new-entries*
  1840. *org-drill-failed-entries*
  1841. *org-drill-young-mature-entries*
  1842. *org-drill-old-mature-entries*
  1843. *org-drill-overdue-entries*
  1844. *org-drill-again-entries*))))
  1845. (defun org-drill-pending-entry-count ()
  1846. (+ (if (markerp *org-drill-current-item*) 1 0)
  1847. (length *org-drill-new-entries*)
  1848. (length *org-drill-failed-entries*)
  1849. (length *org-drill-young-mature-entries*)
  1850. (length *org-drill-old-mature-entries*)
  1851. (length *org-drill-overdue-entries*)
  1852. (length *org-drill-again-entries*)))
  1853. (defun org-drill-maximum-duration-reached-p ()
  1854. "Returns true if the current drill session has continued past its
  1855. maximum duration."
  1856. (and org-drill-maximum-duration
  1857. (not *org-drill-cram-mode*)
  1858. *org-drill-start-time*
  1859. (> (- (float-time (current-time)) *org-drill-start-time*)
  1860. (* org-drill-maximum-duration 60))))
  1861. (defun org-drill-maximum-item-count-reached-p ()
  1862. "Returns true if the current drill session has reached the
  1863. maximum number of items."
  1864. (and org-drill-maximum-items-per-session
  1865. (not *org-drill-cram-mode*)
  1866. (>= (length *org-drill-done-entries*)
  1867. org-drill-maximum-items-per-session)))
  1868. (defun org-drill-pop-next-pending-entry ()
  1869. (block org-drill-pop-next-pending-entry
  1870. (let ((m nil))
  1871. (while (or (null m)
  1872. (not (org-drill-entry-p m)))
  1873. (setq
  1874. m
  1875. (cond
  1876. ;; First priority is items we failed in a prior session.
  1877. ((and *org-drill-failed-entries*
  1878. (not (org-drill-maximum-item-count-reached-p))
  1879. (not (org-drill-maximum-duration-reached-p)))
  1880. (pop-random *org-drill-failed-entries*))
  1881. ;; Next priority is overdue items.
  1882. ((and *org-drill-overdue-entries*
  1883. (not (org-drill-maximum-item-count-reached-p))
  1884. (not (org-drill-maximum-duration-reached-p)))
  1885. ;; We use `pop', not `pop-random', because we have already
  1886. ;; sorted overdue items into a random order which takes
  1887. ;; number of days overdue into account.
  1888. (pop *org-drill-overdue-entries*))
  1889. ;; Next priority is 'young' items.
  1890. ((and *org-drill-young-mature-entries*
  1891. (not (org-drill-maximum-item-count-reached-p))
  1892. (not (org-drill-maximum-duration-reached-p)))
  1893. (pop-random *org-drill-young-mature-entries*))
  1894. ;; Next priority is newly added items, and older entries.
  1895. ;; We pool these into a single group.
  1896. ((and (or *org-drill-new-entries*
  1897. *org-drill-old-mature-entries*)
  1898. (not (org-drill-maximum-item-count-reached-p))
  1899. (not (org-drill-maximum-duration-reached-p)))
  1900. (cond
  1901. ((< (random* (+ (length *org-drill-new-entries*)
  1902. (length *org-drill-old-mature-entries*)))
  1903. (length *org-drill-new-entries*))
  1904. (pop-random *org-drill-new-entries*))
  1905. (t
  1906. (pop-random *org-drill-old-mature-entries*))))
  1907. ;; After all the above are done, last priority is items
  1908. ;; that were failed earlier THIS SESSION.
  1909. (*org-drill-again-entries*
  1910. (pop *org-drill-again-entries*))
  1911. (t ; nothing left -- return nil
  1912. (return-from org-drill-pop-next-pending-entry nil)))))
  1913. m)))
  1914. (defun org-drill-entries (&optional resuming-p)
  1915. "Returns nil, t, or a list of markers representing entries that were
  1916. 'failed' and need to be presented again before the session ends.
  1917. RESUMING-P is true if we are resuming a suspended drill session."
  1918. (block org-drill-entries
  1919. (while (org-drill-entries-pending-p)
  1920. (let ((m (cond
  1921. ((or (not resuming-p)
  1922. (null *org-drill-current-item*)
  1923. (not (org-drill-entry-p *org-drill-current-item*)))
  1924. (org-drill-pop-next-pending-entry))
  1925. (t ; resuming a suspended session.
  1926. (setq resuming-p nil)
  1927. *org-drill-current-item*))))
  1928. (setq *org-drill-current-item* m)
  1929. (unless m
  1930. (error "Unexpectedly ran out of pending drill items"))
  1931. (save-excursion
  1932. (org-drill-goto-entry m)
  1933. (cond
  1934. ((not (org-drill-entry-due-p))
  1935. ;; The entry is not due anymore. This could arise if the user
  1936. ;; suspends a drill session, then drills an individual entry,
  1937. ;; then resumes the session.
  1938. (message "Entry no longer due, skipping...")
  1939. (sit-for 0.3)
  1940. nil)
  1941. (t
  1942. (setq result (org-drill-entry))
  1943. (cond
  1944. ((null result)
  1945. (message "Quit")
  1946. (setq end-pos :quit)
  1947. (return-from org-drill-entries nil))
  1948. ((eql result 'edit)
  1949. (setq end-pos (point-marker))
  1950. (return-from org-drill-entries nil))
  1951. ((eql result 'skip)
  1952. (setq *org-drill-current-item* nil)
  1953. nil) ; skip this item
  1954. (t
  1955. (cond
  1956. ((<= result org-drill-failure-quality)
  1957. (if *org-drill-again-entries*
  1958. (setq *org-drill-again-entries*
  1959. (shuffle-list *org-drill-again-entries*)))
  1960. (push-end m *org-drill-again-entries*))
  1961. (t
  1962. (push m *org-drill-done-entries*)))
  1963. (setq *org-drill-current-item* nil))))))))))
  1964. (defun org-drill-final-report ()
  1965. (let ((pass-percent
  1966. (round (* 100 (count-if (lambda (qual)
  1967. (> qual org-drill-failure-quality))
  1968. *org-drill-session-qualities*))
  1969. (max 1 (length *org-drill-session-qualities*))))
  1970. (prompt nil)
  1971. (max-mini-window-height 0.6))
  1972. (setq prompt
  1973. (format
  1974. "%d items reviewed. Session duration %s.
  1975. Recall of reviewed items:
  1976. Excellent (5): %3d%% | Near miss (2): %3d%%
  1977. Good (4): %3d%% | Failure (1): %3d%%
  1978. Hard (3): %3d%% | Abject failure (0): %3d%%
  1979. You successfully recalled %d%% of reviewed items (quality > %s)
  1980. %d/%d items still await review (%s, %s, %s, %s, %s).
  1981. Tomorrow, %d more items will become due for review.
  1982. Session finished. Press a key to continue..."
  1983. (length *org-drill-done-entries*)
  1984. (format-seconds "%h:%.2m:%.2s"
  1985. (- (float-time (current-time)) *org-drill-start-time*))
  1986. (round (* 100 (count 5 *org-drill-session-qualities*))
  1987. (max 1 (length *org-drill-session-qualities*)))
  1988. (round (* 100 (count 2 *org-drill-session-qualities*))
  1989. (max 1 (length *org-drill-session-qualities*)))
  1990. (round (* 100 (count 4 *org-drill-session-qualities*))
  1991. (max 1 (length *org-drill-session-qualities*)))
  1992. (round (* 100 (count 1 *org-drill-session-qualities*))
  1993. (max 1 (length *org-drill-session-qualities*)))
  1994. (round (* 100 (count 3 *org-drill-session-qualities*))
  1995. (max 1 (length *org-drill-session-qualities*)))
  1996. (round (* 100 (count 0 *org-drill-session-qualities*))
  1997. (max 1 (length *org-drill-session-qualities*)))
  1998. pass-percent
  1999. org-drill-failure-quality
  2000. (org-drill-pending-entry-count)
  2001. (+ (org-drill-pending-entry-count)
  2002. *org-drill-dormant-entry-count*)
  2003. (propertize
  2004. (format "%d failed"
  2005. (+ (length *org-drill-failed-entries*)
  2006. (length *org-drill-again-entries*)))
  2007. 'face `(:foreground ,org-drill-failed-count-color))
  2008. (propertize
  2009. (format "%d overdue"
  2010. (length *org-drill-overdue-entries*))
  2011. 'face `(:foreground ,org-drill-failed-count-color))
  2012. (propertize
  2013. (format "%d new"
  2014. (length *org-drill-new-entries*))
  2015. 'face `(:foreground ,org-drill-new-count-color))
  2016. (propertize
  2017. (format "%d young"
  2018. (length *org-drill-young-mature-entries*))
  2019. 'face `(:foreground ,org-drill-mature-count-color))
  2020. (propertize
  2021. (format "%d old"
  2022. (length *org-drill-old-mature-entries*))
  2023. 'face `(:foreground ,org-drill-mature-count-color))
  2024. *org-drill-due-tomorrow-count*
  2025. ))
  2026. (while (not (input-pending-p))
  2027. (message "%s" prompt)
  2028. (sit-for 0.5))
  2029. (read-char-exclusive)
  2030. (if (and *org-drill-session-qualities*
  2031. (< pass-percent (- 100 org-drill-forgetting-index)))
  2032. (read-char-exclusive
  2033. (format
  2034. "%s
  2035. You failed %d%% of the items you reviewed during this session.
  2036. %d (%d%%) of all items scanned were overdue.
  2037. Are you keeping up with your items, and reviewing them
  2038. when they are scheduled? If so, you may want to consider
  2039. lowering the value of `org-drill-learn-fraction' slightly in
  2040. order to make items appear more frequently over time."
  2041. (propertize "WARNING!" 'face 'org-warning)
  2042. (- 100 pass-percent)
  2043. *org-drill-overdue-entry-count*
  2044. (round (* 100 *org-drill-overdue-entry-count*)
  2045. (+ *org-drill-dormant-entry-count*
  2046. *org-drill-due-entry-count*)))
  2047. ))))
  2048. (defun org-drill-free-markers (markers)
  2049. "MARKERS is a list of markers, all of which will be freed (set to
  2050. point nowhere). Alternatively, MARKERS can be 't', in which case
  2051. all the markers used by Org-Drill will be freed."
  2052. (dolist (m (if (eql t markers)
  2053. (append *org-drill-done-entries*
  2054. *org-drill-new-entries*
  2055. *org-drill-failed-entries*
  2056. *org-drill-again-entries*
  2057. *org-drill-overdue-entries*
  2058. *org-drill-young-mature-entries*
  2059. *org-drill-old-mature-entries*)
  2060. markers))
  2061. (free-marker m)))
  2062. ;;; overdue-data is a list of entries, each entry has the form (POS DUE AGE)
  2063. ;;; where POS is a marker pointing to the start of the entry, and
  2064. ;;; DUE is a number indicating how many days ago the entry was due.
  2065. ;;; AGE is the number of days elapsed since item creation (nil if unknown).
  2066. ;;; if age > 60, sort by age (oldest first)
  2067. ;;; if age < 60, sort by due (biggest first)
  2068. ;;; if (age a) <= 60 and (age b) <= 60, sort by due
  2069. ;;; else sort by age
  2070. (defun org-drill-order-overdue-entries (overdue-data)
  2071. (let* ((lapsed-days 60)
  2072. (not-lapsed (remove-if (lambda (a) (> (or (second a) 0) lapsed-days))
  2073. overdue-data))
  2074. (lapsed (remove-if-not (lambda (a) (> (or (second a) 0)
  2075. lapsed-days)) overdue-data)))
  2076. (setq *org-drill-overdue-entries*
  2077. (mapcar 'first
  2078. (append
  2079. (sort (shuffle-list not-lapsed)
  2080. (lambda (a b) (> (second a) (second b))))
  2081. (sort lapsed
  2082. (lambda (a b) (> (third a) (third b)))))))))
  2083. (defun org-drill--entry-lapsed-p ()
  2084. (let ((lapsed-days 60))
  2085. (> (or (org-drill-entry-days-overdue) 0) lapsed-days)))
  2086. (defun org-drill-entry-days-since-creation (&optional use-last-interval-p)
  2087. "If USE-LAST-INTERVAL-P is non-nil, and DATE_ADDED is missing, use the
  2088. value of DRILL_LAST_INTERVAL instead (as the item's age must be at least
  2089. that many days)."
  2090. (let ((timestamp (org-entry-get (point) "DATE_ADDED")))
  2091. (cond
  2092. (timestamp
  2093. (- (org-time-stamp-to-now timestamp)))
  2094. (use-last-interval-p
  2095. (+ (org-drill-entry-days-overdue)
  2096. (read (or (org-entry-get (point) "DRILL_LAST_INTERVAL") "0"))))
  2097. (t nil))))
  2098. (defun org-drill-entry-status ()
  2099. "Returns a list (STATUS DUE AGE) where DUE is the number of days overdue,
  2100. zero being due today, -1 being scheduled 1 day in the future.
  2101. AGE is the number of days elapsed since the item was created (nil if unknown).
  2102. STATUS is one of the following values:
  2103. - nil, if the item is not a drill entry, or has an empty body
  2104. - :unscheduled
  2105. - :future
  2106. - :new
  2107. - :failed
  2108. - :overdue
  2109. - :young
  2110. - :old
  2111. "
  2112. (save-excursion
  2113. (unless (org-at-heading-p)
  2114. (org-back-to-heading))
  2115. (let ((due (org-drill-entry-days-overdue))
  2116. (age (org-drill-entry-days-since-creation t))
  2117. (last-int (org-drill-entry-last-interval 1)))
  2118. (list
  2119. (cond
  2120. ((not (org-drill-entry-p))
  2121. nil)
  2122. ((and (org-entry-empty-p)
  2123. (let* ((card-type (org-entry-get (point) "DRILL_CARD_TYPE" nil))
  2124. (dat (cdr (assoc card-type org-drill-card-type-alist))))
  2125. (or (null card-type)
  2126. (not (third dat)))))
  2127. ;; body is empty, and this is not a card type where empty bodies are
  2128. ;; meaningful, so skip it.
  2129. nil)
  2130. ((null due) ; unscheduled - usually a skipped leech
  2131. :unscheduled)
  2132. ;; ((eql -1 due)
  2133. ;; :tomorrow)
  2134. ((minusp due) ; scheduled in the future
  2135. :future)
  2136. ;; The rest of the stati all denote 'due' items ==========================
  2137. ((<= (org-drill-entry-last-quality 9999)
  2138. org-drill-failure-quality)
  2139. ;; Mature entries that were failed last time are
  2140. ;; FAILED, regardless of how young, old or overdue
  2141. ;; they are.
  2142. :failed)
  2143. ((org-drill-entry-new-p)
  2144. :new)
  2145. ((org-drill-entry-overdue-p due last-int)
  2146. ;; Overdue status overrides young versus old
  2147. ;; distinction.
  2148. ;; Store marker + due, for sorting of overdue entries
  2149. :overdue)
  2150. ((<= (org-drill-entry-last-interval 9999)
  2151. org-drill-days-before-old)
  2152. :young)
  2153. (t
  2154. :old))
  2155. due age))))
  2156. (defun org-drill-progress-message (collected scanned)
  2157. (when (zerop (% scanned 50))
  2158. (let* ((meter-width 40)
  2159. (sym1 (if (oddp (floor scanned (* 50 meter-width))) ?| ?.))
  2160. (sym2 (if (eql sym1 ?.) ?| ?.)))
  2161. (message "Collecting due drill items:%4d %s%s"
  2162. collected
  2163. (make-string (% (ceiling scanned 50) meter-width)
  2164. sym2)
  2165. (make-string (- meter-width (% (ceiling scanned 50) meter-width))
  2166. sym1)))))
  2167. (defun org-drill (&optional scope drill-match resume-p)
  2168. "Begin an interactive 'drill session'. The user is asked to
  2169. review a series of topics (headers). Each topic is initially
  2170. presented as a 'question', often with part of the topic content
  2171. hidden. The user attempts to recall the hidden information or
  2172. answer the question, then presses a key to reveal the answer. The
  2173. user then rates his or her recall or performance on that
  2174. topic. This rating information is used to reschedule the topic
  2175. for future review.
  2176. Org-drill proceeds by:
  2177. - Finding all topics (headings) in SCOPE which have either been
  2178. used and rescheduled before, or which have a tag that matches
  2179. `org-drill-question-tag'.
  2180. - All matching topics which are either unscheduled, or are
  2181. scheduled for the current date or a date in the past, are
  2182. considered to be candidates for the drill session.
  2183. - If `org-drill-maximum-items-per-session' is set, a random
  2184. subset of these topics is presented. Otherwise, all of the
  2185. eligible topics will be presented.
  2186. SCOPE determines the scope in which to search for
  2187. questions. It accepts the same values as `org-drill-scope',
  2188. which see.
  2189. DRILL-MATCH, if supplied, is a string specifying a tags/property/
  2190. todo query. Only items matching the query will be considered.
  2191. It accepts the same values as `org-drill-match', which see.
  2192. If RESUME-P is non-nil, resume a suspended drill session rather
  2193. than starting a new one."
  2194. (interactive)
  2195. ;; Check org version. Org 7.9.3f introduced a backwards-incompatible change
  2196. ;; to the arguments accepted by `org-schedule'. At the time of writing there
  2197. ;; are still lots of people using versions of org older than this.
  2198. (let ((majorv (first (mapcar 'string-to-number (split-string (org-release) "[.]")))))
  2199. (if (and (< majorv 8)
  2200. (not (string-match-p "universal prefix argument" (documentation 'org-schedule))))
  2201. (read-char-exclusive
  2202. (format "Warning: org-drill requires org mode 7.9.3f or newer. Scheduling of failed cards will not
  2203. work correctly with older versions of org mode. Your org mode version (%s) appears to be older than
  2204. 7.9.3f. Please consider installing a more recent version of org mode." (org-release)))))
  2205. (let ((end-pos nil)
  2206. (overdue-data nil)
  2207. (cnt 0))
  2208. (block org-drill
  2209. (unless resume-p
  2210. (org-drill-free-markers t)
  2211. (setq *org-drill-current-item* nil
  2212. *org-drill-done-entries* nil
  2213. *org-drill-dormant-entry-count* 0
  2214. *org-drill-due-entry-count* 0
  2215. *org-drill-due-tomorrow-count* 0
  2216. *org-drill-overdue-entry-count* 0
  2217. *org-drill-new-entries* nil
  2218. *org-drill-overdue-entries* nil
  2219. *org-drill-young-mature-entries* nil
  2220. *org-drill-old-mature-entries* nil
  2221. *org-drill-failed-entries* nil
  2222. *org-drill-again-entries* nil)
  2223. (setq *org-drill-session-qualities* nil)
  2224. (setq *org-drill-start-time* (float-time (current-time))))
  2225. (setq *random-state* (make-random-state t)) ; reseed RNG
  2226. (unwind-protect
  2227. (save-excursion
  2228. (unless resume-p
  2229. (let ((org-trust-scanner-tags t)
  2230. (warned-about-id-creation nil))
  2231. (org-map-drill-entries
  2232. (lambda ()
  2233. (org-drill-progress-message
  2234. (+ (length *org-drill-new-entries*)
  2235. (length *org-drill-overdue-entries*)
  2236. (length *org-drill-young-mature-entries*)
  2237. (length *org-drill-old-mature-entries*)
  2238. (length *org-drill-failed-entries*))
  2239. (incf cnt))
  2240. (cond
  2241. ((not (org-drill-entry-p))
  2242. nil) ; skip
  2243. (t
  2244. (when (and (not warned-about-id-creation)
  2245. (null (org-id-get)))
  2246. (message (concat "Creating unique IDs for items "
  2247. "(slow, but only happens once)"))
  2248. (sit-for 0.5)
  2249. (setq warned-about-id-creation t))
  2250. (org-id-get-create) ; ensure drill entry has unique ID
  2251. (destructuring-bind (status due age)
  2252. (org-drill-entry-status)
  2253. (case status
  2254. (:unscheduled
  2255. (incf *org-drill-dormant-entry-count*))
  2256. ;; (:tomorrow
  2257. ;; (incf *org-drill-dormant-entry-count*)
  2258. ;; (incf *org-drill-due-tomorrow-count*))
  2259. (:future
  2260. (incf *org-drill-dormant-entry-count*)
  2261. (if (eq -1 due)
  2262. (incf *org-drill-due-tomorrow-count*)))
  2263. (:new
  2264. (push (point-marker) *org-drill-new-entries*))
  2265. (:failed
  2266. (push (point-marker) *org-drill-failed-entries*))
  2267. (:young
  2268. (push (point-marker) *org-drill-young-mature-entries*))
  2269. (:overdue
  2270. (push (list (point-marker) due age) overdue-data))
  2271. (:old
  2272. (push (point-marker) *org-drill-old-mature-entries*))
  2273. )))))
  2274. scope drill-match)
  2275. (org-drill-order-overdue-entries overdue-data)
  2276. (setq *org-drill-overdue-entry-count*
  2277. (length *org-drill-overdue-entries*))))
  2278. (setq *org-drill-due-entry-count* (org-drill-pending-entry-count))
  2279. (cond
  2280. ((and (null *org-drill-current-item*)
  2281. (null *org-drill-new-entries*)
  2282. (null *org-drill-failed-entries*)
  2283. (null *org-drill-overdue-entries*)
  2284. (null *org-drill-young-mature-entries*)
  2285. (null *org-drill-old-mature-entries*))
  2286. (message "I did not find any pending drill items."))
  2287. (t
  2288. (org-drill-entries resume-p)
  2289. (message "Drill session finished!"))))
  2290. (progn
  2291. (unless end-pos
  2292. (setq *org-drill-cram-mode* nil)
  2293. (org-drill-free-markers *org-drill-done-entries*)))))
  2294. (cond
  2295. (end-pos
  2296. (when (markerp end-pos)
  2297. (org-drill-goto-entry end-pos)
  2298. (org-reveal)
  2299. (org-show-entry))
  2300. (let ((keystr (command-keybinding-to-string 'org-drill-resume)))
  2301. (message
  2302. "You can continue the drill session with the command `org-drill-resume'.%s"
  2303. (if keystr (format "\nYou can run this command by pressing %s." keystr)
  2304. ""))))
  2305. (t
  2306. (org-drill-final-report)
  2307. (if (eql 'sm5 org-drill-spaced-repetition-algorithm)
  2308. (org-drill-save-optimal-factor-matrix))
  2309. (if org-drill-save-buffers-after-drill-sessions-p
  2310. (save-some-buffers))
  2311. (message "Drill session finished!")
  2312. ))))
  2313. (defun org-drill-save-optimal-factor-matrix ()
  2314. (message "Saving optimal factor matrix...")
  2315. (customize-save-variable 'org-drill-optimal-factor-matrix
  2316. org-drill-optimal-factor-matrix))
  2317. (defun org-drill-cram (&optional scope drill-match)
  2318. "Run an interactive drill session in 'cram mode'. In cram mode,
  2319. all drill items are considered to be due for review, unless they
  2320. have been reviewed within the last `org-drill-cram-hours'
  2321. hours."
  2322. (interactive)
  2323. (setq *org-drill-cram-mode* t)
  2324. (org-drill scope drill-match))
  2325. (defun org-drill-tree ()
  2326. "Run an interactive drill session using drill items within the
  2327. subtree at point."
  2328. (interactive)
  2329. (org-drill 'tree))
  2330. (defun org-drill-directory ()
  2331. "Run an interactive drill session using drill items from all org
  2332. files in the same directory as the current file."
  2333. (interactive)
  2334. (org-drill 'directory))
  2335. (defun org-drill-again (&optional scope drill-match)
  2336. "Run a new drill session, but try to use leftover due items that
  2337. were not reviewed during the last session, rather than scanning for
  2338. unreviewed items. If there are no leftover items in memory, a full
  2339. scan will be performed."
  2340. (interactive)
  2341. (setq *org-drill-cram-mode* nil)
  2342. (cond
  2343. ((plusp (org-drill-pending-entry-count))
  2344. (org-drill-free-markers *org-drill-done-entries*)
  2345. (if (markerp *org-drill-current-item*)
  2346. (free-marker *org-drill-current-item*))
  2347. (setq *org-drill-start-time* (float-time (current-time))
  2348. *org-drill-done-entries* nil
  2349. *org-drill-current-item* nil)
  2350. (org-drill scope drill-match t))
  2351. (t
  2352. (org-drill scope drill-match))))
  2353. (defun org-drill-resume ()
  2354. "Resume a suspended drill session. Sessions are suspended by
  2355. exiting them with the `edit' or `quit' options."
  2356. (interactive)
  2357. (cond
  2358. ((org-drill-entries-pending-p)
  2359. (org-drill nil nil t))
  2360. ((and (plusp (org-drill-pending-entry-count))
  2361. ;; Current drill session is finished, but there are still
  2362. ;; more items which need to be reviewed.
  2363. (y-or-n-p (format
  2364. "You have finished the drill session. However, %d items still
  2365. need reviewing. Start a new drill session? "
  2366. (org-drill-pending-entry-count))))
  2367. (org-drill-again))
  2368. (t
  2369. (message "You have finished the drill session."))))
  2370. (defun org-drill-relearn-item ()
  2371. "Make the current item due for revision, and set its last interval to 0.
  2372. Makes the item behave as if it has been failed, without actually recording a
  2373. failure. This command can be used to 'reset' repetitions for an item."
  2374. (interactive)
  2375. (org-drill-smart-reschedule 4 0))
  2376. (defun org-drill-strip-entry-data ()
  2377. (dolist (prop org-drill-scheduling-properties)
  2378. (org-delete-property prop))
  2379. (org-schedule '(4)))
  2380. (defun org-drill-strip-all-data (&optional scope)
  2381. "Delete scheduling data from every drill entry in scope. This
  2382. function may be useful if you want to give your collection of
  2383. entries to someone else. Scope defaults to the current buffer,
  2384. and is specified by the argument SCOPE, which accepts the same
  2385. values as `org-drill-scope'."
  2386. (interactive)
  2387. (when (yes-or-no-p
  2388. "Delete scheduling data from ALL items in scope: are you sure?")
  2389. (cond
  2390. ((null scope)
  2391. ;; Scope is the current buffer. This means we can use
  2392. ;; `org-delete-property-globally', which is faster.
  2393. (dolist (prop org-drill-scheduling-properties)
  2394. (org-delete-property-globally prop))
  2395. (org-map-drill-entries (lambda () (org-schedule '(4))) scope))
  2396. (t
  2397. (org-map-drill-entries 'org-drill-strip-entry-data scope)))
  2398. (message "Done.")))
  2399. (defun org-drill-add-cloze-fontification ()
  2400. ;; Compute local versions of the regexp for cloze deletions, in case
  2401. ;; the left and right delimiters are redefined locally.
  2402. (setq-local org-drill-cloze-regexp (org-drill--compute-cloze-regexp))
  2403. (setq-local org-drill-cloze-keywords (org-drill--compute-cloze-keywords))
  2404. (when org-drill-use-visible-cloze-face-p
  2405. (add-to-list 'org-font-lock-extra-keywords
  2406. (first org-drill-cloze-keywords))))
  2407. (add-hook 'org-font-lock-set-keywords-hook 'org-drill-add-cloze-fontification)
  2408. ;; Can't add to org-mode-hook, because local variables won't have been loaded
  2409. ;; yet.
  2410. ;; (defun org-drill-add-cloze-fontification ()
  2411. ;; (when (eql major-mode 'org-mode)
  2412. ;; ;; Compute local versions of the regexp for cloze deletions, in case
  2413. ;; ;; the left and right delimiters are redefined locally.
  2414. ;; (setq-local org-drill-cloze-regexp (org-drill--compute-cloze-regexp))
  2415. ;; (setq-local org-drill-cloze-keywords (org-drill--compute-cloze-keywords))
  2416. ;; (when org-drill-use-visible-cloze-face-p
  2417. ;; (font-lock-add-keywords nil ;'org-mode
  2418. ;; org-drill-cloze-keywords
  2419. ;; nil))))
  2420. ;; XXX
  2421. ;; (add-hook 'hack-local-variables-hook
  2422. ;; 'org-drill-add-cloze-fontification)
  2423. ;;
  2424. ;; (org-drill-add-cloze-fontification)
  2425. ;;; Synching card collections =================================================
  2426. (defvar *org-drill-dest-id-table* (make-hash-table :test 'equal))
  2427. (defun org-drill-copy-entry-to-other-buffer (dest &optional path)
  2428. "Copy the subtree at point to the buffer DEST. The copy will receive
  2429. the tag 'imported'."
  2430. (block org-drill-copy-entry-to-other-buffer
  2431. (save-excursion
  2432. (let ((src (current-buffer))
  2433. (m nil))
  2434. (cl-flet ((paste-tree-here (&optional level)
  2435. (org-paste-subtree level)
  2436. (org-drill-strip-entry-data)
  2437. (org-toggle-tag "imported" 'on)
  2438. (org-map-drill-entries
  2439. (lambda ()
  2440. (let ((id (org-id-get)))
  2441. (org-drill-strip-entry-data)
  2442. (unless (gethash id *org-drill-dest-id-table*)
  2443. (puthash id (point-marker)
  2444. *org-drill-dest-id-table*))))
  2445. 'tree)))
  2446. (unless path
  2447. (setq path (org-get-outline-path)))
  2448. (org-copy-subtree)
  2449. (switch-to-buffer dest)
  2450. (setq m
  2451. (condition-case nil
  2452. (org-find-olp path t)
  2453. (error ; path does not exist in DEST
  2454. (return-from org-drill-copy-entry-to-other-buffer
  2455. (cond
  2456. ((cdr path)
  2457. (org-drill-copy-entry-to-other-buffer
  2458. dest (butlast path)))
  2459. (t
  2460. ;; We've looked all the way up the path
  2461. ;; Default to appending to the end of DEST
  2462. (goto-char (point-max))
  2463. (newline)
  2464. (paste-tree-here)))))))
  2465. (goto-char m)
  2466. (outline-next-heading)
  2467. (newline)
  2468. (forward-line -1)
  2469. (paste-tree-here (1+ (or (org-current-level) 0)))
  2470. )))))
  2471. (defun org-drill-merge-buffers (src &optional dest ignore-new-items-p)
  2472. "SRC and DEST are two org mode buffers containing drill items.
  2473. For each drill item in DEST that shares an ID with an item in SRC,
  2474. overwrite scheduling data in DEST with data taken from the item in SRC.
  2475. This is intended for use when two people are sharing a set of drill items,
  2476. one person has made some updates to the item set, and the other person
  2477. wants to migrate to the updated set without losing their scheduling data.
  2478. By default, any drill items in SRC which do not exist in DEST are
  2479. copied into DEST. We attempt to place the copied item in the
  2480. equivalent location in DEST to its location in SRC, by matching
  2481. the heading hierarchy. However if IGNORE-NEW-ITEMS-P is non-nil,
  2482. we simply ignore any items that do not exist in DEST, and do not
  2483. copy them across."
  2484. (interactive "bImport scheduling info from which buffer?")
  2485. (unless dest
  2486. (setq dest (current-buffer)))
  2487. (setq src (get-buffer src)
  2488. dest (get-buffer dest))
  2489. (when (yes-or-no-p
  2490. (format
  2491. (concat "About to overwrite all scheduling data for drill items in `%s' "
  2492. "with information taken from matching items in `%s'. Proceed? ")
  2493. (buffer-name dest) (buffer-name src)))
  2494. ;; Compile list of all IDs in the destination buffer.
  2495. (clrhash *org-drill-dest-id-table*)
  2496. (with-current-buffer dest
  2497. (org-map-drill-entries
  2498. (lambda ()
  2499. (let ((this-id (org-id-get)))
  2500. (when this-id
  2501. (puthash this-id (point-marker) *org-drill-dest-id-table*))))
  2502. 'file))
  2503. ;; Look through all entries in source buffer.
  2504. (with-current-buffer src
  2505. (org-map-drill-entries
  2506. (lambda ()
  2507. (let ((id (org-id-get))
  2508. (last-quality nil) (last-reviewed nil)
  2509. (scheduled-time nil))
  2510. (cond
  2511. ((or (null id)
  2512. (not (org-drill-entry-p)))
  2513. nil)
  2514. ((gethash id *org-drill-dest-id-table*)
  2515. ;; This entry matches an entry in dest. Retrieve all its
  2516. ;; scheduling data, then go to the matching location in dest
  2517. ;; and write the data.
  2518. (let ((marker (gethash id *org-drill-dest-id-table*)))
  2519. (destructuring-bind (last-interval repetitions failures
  2520. total-repeats meanq ease)
  2521. (org-drill-get-item-data)
  2522. (setq last-reviewed (org-entry-get (point) "DRILL_LAST_REVIEWED")
  2523. last-quality (org-entry-get (point) "DRILL_LAST_QUALITY")
  2524. scheduled-time (org-get-scheduled-time (point)))
  2525. (save-excursion
  2526. ;; go to matching entry in destination buffer
  2527. (switch-to-buffer (marker-buffer marker))
  2528. (goto-char marker)
  2529. (org-drill-strip-entry-data)
  2530. (unless (zerop total-repeats)
  2531. (org-drill-store-item-data last-interval repetitions failures
  2532. total-repeats meanq ease)
  2533. (if last-quality
  2534. (org-set-property "LAST_QUALITY" last-quality)
  2535. (org-delete-property "LAST_QUALITY"))
  2536. (if last-reviewed
  2537. (org-set-property "LAST_REVIEWED" last-reviewed)
  2538. (org-delete-property "LAST_REVIEWED"))
  2539. (if scheduled-time
  2540. (org-schedule nil scheduled-time)))))
  2541. (remhash id *org-drill-dest-id-table*)
  2542. (free-marker marker)))
  2543. (t
  2544. ;; item in SRC has ID, but no matching ID in DEST.
  2545. ;; It must be a new item that does not exist in DEST.
  2546. ;; Copy the entire item to the *end* of DEST.
  2547. (unless ignore-new-items-p
  2548. (org-drill-copy-entry-to-other-buffer dest))))))
  2549. 'file))
  2550. ;; Finally: there may be some items in DEST which are not in SRC, and
  2551. ;; which have been scheduled by another user of DEST. Clear out the
  2552. ;; scheduling info from all the unmatched items in DEST.
  2553. (with-current-buffer dest
  2554. (maphash (lambda (id m)
  2555. (goto-char m)
  2556. (org-drill-strip-entry-data)
  2557. (free-marker m))
  2558. *org-drill-dest-id-table*))))
  2559. ;;; Card types for learning languages =========================================
  2560. ;;; Get spell-number.el from:
  2561. ;;; http://www.emacswiki.org/emacs/spell-number.el
  2562. (autoload 'spelln-integer-in-words "spell-number")
  2563. ;;; `conjugate' card type =====================================================
  2564. ;;; See spanish.org for usage
  2565. (defvar org-drill-verb-tense-alist
  2566. '(("present" "tomato")
  2567. ("simple present" "tomato")
  2568. ("present indicative" "tomato")
  2569. ;; past tenses
  2570. ("past" "purple")
  2571. ("simple past" "purple")
  2572. ("preterite" "purple")
  2573. ("imperfect" "darkturquoise")
  2574. ("present perfect" "royalblue")
  2575. ;; future tenses
  2576. ("future" "green")
  2577. ;; moods (backgrounds).
  2578. ("indicative" nil) ; default
  2579. ("subjunctive" "medium blue")
  2580. ("conditional" "grey30")
  2581. ("negative imperative" "red4")
  2582. ("positive imperative" "darkgreen")
  2583. )
  2584. "Alist where each entry has the form (TENSE COLOUR), where
  2585. TENSE is a string naming a tense in which verbs can be
  2586. conjugated, and COLOUR is a string specifying a foreground colour
  2587. which will be used by `org-drill-present-verb-conjugation' and
  2588. `org-drill-show-answer-verb-conjugation' to fontify the verb and
  2589. the name of the tense.")
  2590. (defun org-drill-get-verb-conjugation-info ()
  2591. "Auxiliary function used by `org-drill-present-verb-conjugation' and
  2592. `org-drill-show-answer-verb-conjugation'."
  2593. (let ((infinitive (org-entry-get (point) "VERB_INFINITIVE" t))
  2594. (inf-hint (org-entry-get (point) "VERB_INFINITIVE_HINT" t))
  2595. (translation (org-entry-get (point) "VERB_TRANSLATION" t))
  2596. (tense (org-entry-get (point) "VERB_TENSE" nil))
  2597. (mood (org-entry-get (point) "VERB_MOOD" nil))
  2598. (highlight-face nil))
  2599. (unless (and infinitive translation (or tense mood))
  2600. (error "Missing information for verb conjugation card (%s, %s, %s, %s) at %s"
  2601. infinitive translation tense mood (point)))
  2602. (setq tense (if tense (downcase (car (read-from-string tense))))
  2603. mood (if mood (downcase (car (read-from-string mood))))
  2604. infinitive (car (read-from-string infinitive))
  2605. inf-hint (if inf-hint (car (read-from-string inf-hint)))
  2606. translation (car (read-from-string translation)))
  2607. (setq highlight-face
  2608. (list :foreground
  2609. (or (second (assoc-string tense org-drill-verb-tense-alist t))
  2610. "hotpink")
  2611. :background
  2612. (second (assoc-string mood org-drill-verb-tense-alist t))))
  2613. (setq infinitive (propertize infinitive 'face highlight-face))
  2614. (setq translation (propertize translation 'face highlight-face))
  2615. (if tense (setq tense (propertize tense 'face highlight-face)))
  2616. (if mood (setq mood (propertize mood 'face highlight-face)))
  2617. (list infinitive inf-hint translation tense mood)))
  2618. (defun org-drill-present-verb-conjugation ()
  2619. "Present a drill entry whose card type is 'conjugate'."
  2620. (cl-flet ((tense-and-mood-to-string
  2621. (tense mood)
  2622. (cond
  2623. ((and tense mood)
  2624. (format "%s tense, %s mood" tense mood))
  2625. (tense
  2626. (format "%s tense" tense))
  2627. (mood
  2628. (format "%s mood" mood)))))
  2629. (destructuring-bind (infinitive inf-hint translation tense mood)
  2630. (org-drill-get-verb-conjugation-info)
  2631. (org-drill-present-card-using-text
  2632. (cond
  2633. ((zerop (random* 2))
  2634. (format "\nTranslate the verb\n\n%s\n\nand conjugate for the %s.\n\n"
  2635. infinitive (tense-and-mood-to-string tense mood)))
  2636. (t
  2637. (format "\nGive the verb that means\n\n%s %s\n
  2638. and conjugate for the %s.\n\n"
  2639. translation
  2640. (if inf-hint (format " [HINT: %s]" inf-hint) "")
  2641. (tense-and-mood-to-string tense mood))))))))
  2642. (defun org-drill-show-answer-verb-conjugation (reschedule-fn)
  2643. "Show the answer for a drill item whose card type is 'conjugate'.
  2644. RESCHEDULE-FN must be a function that calls `org-drill-reschedule' and
  2645. returns its return value."
  2646. (destructuring-bind (infinitive inf-hint translation tense mood)
  2647. (org-drill-get-verb-conjugation-info)
  2648. (with-replaced-entry-heading
  2649. (format "%s of %s ==> %s\n\n"
  2650. (capitalize
  2651. (cond
  2652. ((and tense mood)
  2653. (format "%s tense, %s mood" tense mood))
  2654. (tense
  2655. (format "%s tense" tense))
  2656. (mood
  2657. (format "%s mood" mood))))
  2658. infinitive translation)
  2659. (org-cycle-hide-drawers 'all)
  2660. (funcall reschedule-fn))))
  2661. ;;; `decline_noun' card type ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2662. (defvar org-drill-noun-gender-alist
  2663. '(("masculine" "dodgerblue")
  2664. ("masc" "dodgerblue")
  2665. ("male" "dodgerblue")
  2666. ("m" "dodgerblue")
  2667. ("feminine" "orchid")
  2668. ("fem" "orchid")
  2669. ("female" "orchid")
  2670. ("f" "orchid")
  2671. ("neuter" "green")
  2672. ("neutral" "green")
  2673. ("neut" "green")
  2674. ("n" "green")
  2675. ))
  2676. (defun org-drill-get-noun-info ()
  2677. "Auxiliary function used by `org-drill-present-noun-declension' and
  2678. `org-drill-show-answer-noun-declension'."
  2679. (let ((noun (org-entry-get (point) "NOUN" t))
  2680. (noun-hint (org-entry-get (point) "NOUN_HINT" t))
  2681. (noun-root (org-entry-get (point) "NOUN_ROOT" t))
  2682. (noun-gender (org-entry-get (point) "NOUN_GENDER" t))
  2683. (translation (org-entry-get (point) "NOUN_TRANSLATION" t))
  2684. (highlight-face nil))
  2685. (unless (and noun translation)
  2686. (error "Missing information for `decline_noun' card (%s, %s, %s, %s) at %s"
  2687. noun translation noun-hint noun-root (point)))
  2688. (setq noun-root (if noun-root (car (read-from-string noun-root)))
  2689. noun (car (read-from-string noun))
  2690. noun-gender (downcase (car (read-from-string noun-gender)))
  2691. noun-hint (if noun-hint (car (read-from-string noun-hint)))
  2692. translation (car (read-from-string translation)))
  2693. (setq highlight-face
  2694. (list :foreground
  2695. (or (second (assoc-string noun-gender
  2696. org-drill-noun-gender-alist t))
  2697. "red")))
  2698. (setq noun (propertize noun 'face highlight-face))
  2699. (setq translation (propertize translation 'face highlight-face))
  2700. (list noun noun-root noun-gender noun-hint translation)))
  2701. (defun org-drill-present-noun-declension ()
  2702. "Present a drill entry whose card type is 'decline_noun'."
  2703. (destructuring-bind (noun noun-root noun-gender noun-hint translation)
  2704. (org-drill-get-noun-info)
  2705. (let* ((props (org-entry-properties (point)))
  2706. (definite
  2707. (cond
  2708. ((assoc "DECLINE_DEFINITE" props)
  2709. (propertize (if (org-entry-get (point) "DECLINE_DEFINITE")
  2710. "definite" "indefinite")
  2711. 'face 'warning))
  2712. (t nil)))
  2713. (plural
  2714. (cond
  2715. ((assoc "DECLINE_PLURAL" props)
  2716. (propertize (if (org-entry-get (point) "DECLINE_PLURAL")
  2717. "plural" "singular")
  2718. 'face 'warning))
  2719. (t nil))))
  2720. (org-drill-present-card-using-text
  2721. (cond
  2722. ((zerop (random* 2))
  2723. (format "\nTranslate the noun\n\n%s (%s)\n\nand list its declensions%s.\n\n"
  2724. noun noun-gender
  2725. (if (or plural definite)
  2726. (format " for the %s %s form" definite plural)
  2727. "")))
  2728. (t
  2729. (format "\nGive the noun that means\n\n%s %s\n
  2730. and list its declensions%s.\n\n"
  2731. translation
  2732. (if noun-hint (format " [HINT: %s]" noun-hint) "")
  2733. (if (or plural definite)
  2734. (format " for the %s %s form" definite plural)
  2735. ""))))))))
  2736. (defun org-drill-show-answer-noun-declension (reschedule-fn)
  2737. "Show the answer for a drill item whose card type is 'decline_noun'.
  2738. RESCHEDULE-FN must be a function that calls `org-drill-reschedule' and
  2739. returns its return value."
  2740. (destructuring-bind (noun noun-root noun-gender noun-hint translation)
  2741. (org-drill-get-noun-info)
  2742. (with-replaced-entry-heading
  2743. (format "Declensions of %s (%s) ==> %s\n\n"
  2744. noun noun-gender translation)
  2745. (org-cycle-hide-drawers 'all)
  2746. (funcall reschedule-fn))))
  2747. ;;; `translate_number' card type ==============================================
  2748. ;;; See spanish.org for usage
  2749. (defun spelln-integer-in-language (n lang)
  2750. (let ((spelln-language lang))
  2751. (spelln-integer-in-words n)))
  2752. (defun org-drill-present-translate-number ()
  2753. (let ((num-min (read (org-entry-get (point) "DRILL_NUMBER_MIN")))
  2754. (num-max (read (org-entry-get (point) "DRILL_NUMBER_MAX")))
  2755. (language (read (org-entry-get (point) "DRILL_LANGUAGE" t)))
  2756. (drilled-number 0)
  2757. (drilled-number-direction 'to-english)
  2758. (highlight-face 'font-lock-warning-face))
  2759. (cond
  2760. ((not (fboundp 'spelln-integer-in-words))
  2761. (message "`spell-number.el' not loaded, skipping 'translate_number' card...")
  2762. (sit-for 0.5)
  2763. 'skip)
  2764. ((not (and (numberp num-min) (numberp num-max) language))
  2765. (error "Missing language or minimum or maximum numbers for number card"))
  2766. (t
  2767. (if (> num-min num-max)
  2768. (psetf num-min num-max
  2769. num-max num-min))
  2770. (setq drilled-number
  2771. (+ num-min (random* (abs (1+ (- num-max num-min))))))
  2772. (setq drilled-number-direction
  2773. (if (zerop (random* 2)) 'from-english 'to-english))
  2774. (cond
  2775. ((eql 'to-english drilled-number-direction)
  2776. (org-drill-present-card-using-text
  2777. (format "\nTranslate into English:\n\n%s\n"
  2778. (propertize
  2779. (spelln-integer-in-language drilled-number language)
  2780. 'face highlight-face))
  2781. (spelln-integer-in-language drilled-number 'english-gb)))
  2782. (t
  2783. (org-drill-present-card-using-text
  2784. (format "\nTranslate into %s:\n\n%s\n"
  2785. (capitalize (format "%s" language))
  2786. (propertize
  2787. (spelln-integer-in-language drilled-number 'english-gb)
  2788. 'face highlight-face))
  2789. (spelln-integer-in-language drilled-number language))))))))
  2790. ;; (defun org-drill-show-answer-translate-number (reschedule-fn)
  2791. ;; (let* ((language (read (org-entry-get (point) "DRILL_LANGUAGE" t)))
  2792. ;; (highlight-face 'font-lock-warning-face)
  2793. ;; (non-english
  2794. ;; (let ((spelln-language language))
  2795. ;; (propertize (spelln-integer-in-words *drilled-number*)
  2796. ;; 'face highlight-face)))
  2797. ;; (english
  2798. ;; (let ((spelln-language 'english-gb))
  2799. ;; (propertize (spelln-integer-in-words *drilled-number*)
  2800. ;; 'face 'highlight-face))))
  2801. ;; (with-replaced-entry-text
  2802. ;; (cond
  2803. ;; ((eql 'to-english *drilled-number-direction*)
  2804. ;; (format "\nThe English translation of %s is:\n\n%s\n"
  2805. ;; non-english english))
  2806. ;; (t
  2807. ;; (format "\nThe %s translation of %s is:\n\n%s\n"
  2808. ;; (capitalize (format "%s" language))
  2809. ;; english non-english)))
  2810. ;; (funcall reschedule-fn))))
  2811. ;;; `spanish_verb' card type ==================================================
  2812. ;;; Not very interesting, but included to demonstrate how a presentation
  2813. ;;; function can manipulate which subheading are hidden versus shown.
  2814. (defun org-drill-present-spanish-verb ()
  2815. (let ((prompt nil)
  2816. (reveal-headings nil))
  2817. (with-hidden-comments
  2818. (with-hidden-cloze-hints
  2819. (with-hidden-cloze-text
  2820. (case (random* 6)
  2821. (0
  2822. (org-drill-hide-all-subheadings-except '("Infinitive"))
  2823. (setq prompt
  2824. (concat "Translate this Spanish verb, and conjugate it "
  2825. "for the *present* tense.")
  2826. reveal-headings '("English" "Present Tense" "Notes")))
  2827. (1
  2828. (org-drill-hide-all-subheadings-except '("English"))
  2829. (setq prompt (concat "For the *present* tense, conjugate the "
  2830. "Spanish translation of this English verb.")
  2831. reveal-headings '("Infinitive" "Present Tense" "Notes")))
  2832. (2
  2833. (org-drill-hide-all-subheadings-except '("Infinitive"))
  2834. (setq prompt (concat "Translate this Spanish verb, and "
  2835. "conjugate it for the *past* tense.")
  2836. reveal-headings '("English" "Past Tense" "Notes")))
  2837. (3
  2838. (org-drill-hide-all-subheadings-except '("English"))
  2839. (setq prompt (concat "For the *past* tense, conjugate the "
  2840. "Spanish translation of this English verb.")
  2841. reveal-headings '("Infinitive" "Past Tense" "Notes")))
  2842. (4
  2843. (org-drill-hide-all-subheadings-except '("Infinitive"))
  2844. (setq prompt (concat "Translate this Spanish verb, and "
  2845. "conjugate it for the *future perfect* tense.")
  2846. reveal-headings '("English" "Future Perfect Tense" "Notes")))
  2847. (5
  2848. (org-drill-hide-all-subheadings-except '("English"))
  2849. (setq prompt (concat "For the *future perfect* tense, conjugate the "
  2850. "Spanish translation of this English verb.")
  2851. reveal-headings '("Infinitive" "Future Perfect Tense" "Notes"))))
  2852. (org-cycle-hide-drawers 'all)
  2853. (prog1 (org-drill-presentation-prompt)
  2854. (org-drill-hide-subheadings-if 'org-drill-entry-p)))))))
  2855. (provide 'org-drill)