This repository has been archived on 2020-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
conlang-layer/funcs.el

115 lines
4.6 KiB
EmacsLisp
Raw Normal View History

2019-07-21 14:48:11 +00:00
;;; funcs.el --- Conlanging Layer functions File for Spacemacs
;;
;; Copyright (c) 2019-2020 Lucien Cartier-Tilet
;;
;; Author: Lucien Cartier-Tilet <phundrak@phundrak.fr>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq latin-to-runes-table '((", *" . "")
("\\. *" . "")
(" +" . "")
("ċ" . "") ("ch" . "")
("ae" . "") ("æ" . "")
("dh" . "") ("z" . "") ("ð" . "")
("th" . "") ("s" . "") ("þ" . "")
("w" . "") ("ƿ" . "")
("g" . "") ("" . "")
("ea" . "")
("f" . "")
("u" . "")
("o" . "")
("r" . "")
("c" . "")
("h" . "")
("n" . "")
("i" . "")
("j" . "")
("p" . "")
("v" . "")
("t" . "")
("b" . "")
("e" . "")
("m" . "")
("l" . "")
("d" . "")
("é" . "")
("a" . "")
("y" . "")))
(setq latin-to-native-table '((" +" . " ")
("ch" . "ċ")
("ae" . "æ")
("th" . "þ") ("s" . "þ")
("dh" . "ð") ("z" . "ð")
("w" . "ƿ")
("j" . "i")))
(setq latin-to-latex-runes '((", *" . ":")
("\\. *" . "*")
(" +" . ".")
("ch" . "I") ("ċ" . "I")
("ae" . "æ")
("ea" . "\\\\ea") ("ƿ" . "w")
("dh" . "s") ("z" . "s") ("ð" . "s")
("th" . "þ") ("s" . "þ")
("v" . "\\\\ng")
("é " . "\\\\oe")))
(defun conlanging//replace-string-by-char (t-string t-correspondance-table)
2019-07-21 15:24:46 +00:00
"Return a copy of t-string converted with the correspondance
table"
2019-07-21 14:48:11 +00:00
(while t-correspondance-table
(let ((cur-from-char (car (car t-correspondance-table)))
(cur-to-char (cdr (car t-correspondance-table))))
(setq t-string (replace-regexp-in-string cur-from-char
cur-to-char
t-string))
(setq t-correspondance-table (cdr t-correspondance-table))))
t-string)
(defun conlanging//get-boundary ()
2019-07-21 15:24:46 +00:00
"Get the boundary of either the selected region, or if there is
none the word the cursor is over"
2019-07-21 14:48:11 +00:00
(interactive)
(let* ((beg (region-beginning))
(end (region-end))
(boundary-word (bounds-of-thing-at-point 'word)))
(if (= beg end)
boundary-word
(cons beg end))))
(defun conlanging//replace-char-by-table (correspondance-table)
2019-07-21 15:24:46 +00:00
"Replaces selected texts strings according to the table passed
as argument. The table is a list of pairs, the first element of
the pair is a regex to be searched in the selected text and the
second element of the pair the string it has to be replaced
with."
2019-07-21 14:48:11 +00:00
(let* ((cur-boundary (conlanging//get-boundary))
(beg (car cur-boundary))
(end (cdr cur-boundary)))
(setq regionp (buffer-substring-no-properties beg end))
(setq regionp (conlanging//replace-string-by-char regionp
correspondance-table))
(delete-region beg end)
(goto-char beg)
(insert regionp)))
(defun conlanging/matter-to-runes ()
2019-07-21 15:24:46 +00:00
"Replaces transliterated Mattér to its runic writing system"
2019-07-21 14:48:11 +00:00
(interactive)
(conlanging//replace-char-by-table latin-to-runes-table))
(defun conlanging/matter-to-native-latin ()
2019-07-21 15:24:46 +00:00
"Replaces transliterated Mattér by its corresponding native
latin writing system"
2019-07-21 14:48:11 +00:00
(interactive)
(conlanging//replace-char-by-table latin-to-native-table))
(defun conlanging/matter-to-latex-runes ()
2019-07-21 15:24:46 +00:00
"Replaces transliterated Mattér by its corresponding runes"
2019-07-21 14:48:11 +00:00
(interactive)
(conlanging//replace-char-by-table latin-to-latex-runes))