-
Notifications
You must be signed in to change notification settings - Fork 6
/
ob-scad.el
69 lines (56 loc) · 2.49 KB
/
ob-scad.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
;;; ob-scad.el --- Babel Functions for OpenSCAD -*- lexical-binding: t -*-
;; This file is not part of GNU Emacs.
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Org Babel support for OpenSCAD
;;; Code:
(require 'ob)
(defvar scad-command)
(defvar scad-preview-colorscheme)
(defvar scad-preview-projection)
(defvar scad-preview-view)
(defvar org-babel-default-header-args:scad
'((:results . "file")
(:exports . "results"))
"Default arguments for evaluating a scad source block.")
(defvar org-babel-header-args:scad
'((colorscheme . :any)
(size . :any)
(projection . :any)
(camera . :any)
(view . :any))
"Scad specific header args.")
(defun org-babel-execute:scad (body params)
"Evaluate BODY with `scad-command' given PARAMS."
(let* ((outfile (or (alist-get :file params)
(error "Scad code block requires :file header argument")))
(infile (org-babel-temp-file "scad-")))
(with-temp-file infile (insert body))
(apply #'call-process scad-command nil 0 nil
(delq nil
(list "-o" outfile
"--preview"
"--viewall"
(format "--projection=%s"
(alist-get :projection params scad-preview-projection))
(format "--colorscheme=%s"
(alist-get :colorscheme params scad-preview-colorscheme))
(format "--view=%s" (or (alist-get :view params)
(mapconcat #'identity scad-preview-view ",")))
(when-let (camera (alist-get :camera params))
(format "--camera=%s" camera))
(when-let (size (alist-get :size params))
(format "--imgsize=%s" size))
infile)))
nil))
(provide 'ob-scad)
;;; ob-scad.el ends here