-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
gdscript-comint.el
128 lines (113 loc) · 4.87 KB
/
gdscript-comint.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
;;; gdscript-comint.el --- Support for comint mode -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2020 GDQuest and contributors
;;
;; Author: Josef Vlach <[email protected]>
;; URL: https://github.com/godotengine/emacs-gdscript-mode/
;; Version: 1.0.0
;; Package-Requires: ((emacs "26.3"))
;; Maintainer: [email protected]
;; Created: May 2020
;; Keywords: languages
;;
;; 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:
;;
;; godot-mode for handling stdout and stderr from godot executable.
;;
;; It supports quick navigation from errors to file location.
;;
;;; Code:
(require 'ansi-color)
(require 'comint)
(require 'compile)
(require 'gdscript-customization)
(require 'gdscript-debug)
(require 'gdscript-format)
(require 'gdscript-utils)
(defvar gdscript-comint--mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map
(make-composed-keymap compilation-shell-minor-mode-map
comint-mode-map))
(define-key map (kbd "C-a") 'comint-bol)
(define-key map (kbd "C-c r") 'gdscript-hydra-show)
(define-key map (kbd "C-c n") 'gdscript-debug-hydra)
map)
"Basic mode map for `godot-mode'.")
(defun gdscript-comint--run (arguments)
"Run godot in comint mode.
ARGUMENTS are command line arguments for godot executable.
When run it will kill existing process if one exists."
(let ((buffer-name (gdscript-util--get-godot-buffer-name (member "-e" arguments)))
(inhibit-read-only t)
(godot-command gdscript-godot-executable))
;; support flatpak
(when (string-match-p (rx "run" (+ space) "org.godotengine.Godot") godot-command)
(let ((exec-split (split-string godot-command)))
(setq godot-command (car exec-split))
(setq arguments (append (cdr exec-split) arguments))))
(if (not (or (file-executable-p godot-command)
(executable-find godot-command)))
(error "Error: Could not execute '%s'. Please customize the `gdscript-godot-executable variable'" gdscript-godot-executable)
(with-current-buffer (get-buffer-create buffer-name)
(when gdscript-gdformat-save-and-format
(gdscript-comint-gdformat--modified-buffers))
(unless (derived-mode-p 'godot-mode)
(godot-mode)
(buffer-disable-undo))
(erase-buffer)
(comint-exec (current-buffer) buffer-name godot-command nil arguments)
(set-process-sentinel (get-buffer-process (current-buffer)) 'gdscript-comint--sentinel)
(pop-to-buffer (current-buffer))))))
(defun gdscript-comint--sentinel (process event)
"Custom sentinel for PROCESS and EVENT.
Set process's buffer `inhibit-read-only' temporalily to value t,
so that `internal-default-process-sentinel' can insert status
message into the process’s buffer."
(cond
((string-match "hangup: 1\n" event)
nil)
(t
(with-current-buffer (process-buffer process)
(let ((inhibit-read-only t))
(internal-default-process-sentinel process event))))))
(define-derived-mode godot-mode comint-mode "godot"
"Major mode for godot.
\\{gdscript-comint--mode-map}"
(use-local-map gdscript-comint--mode-map)
(add-hook 'godot-mode-hook 'gdscript-comint--initialize-for-comint-mode)
(add-hook 'godot-mode-hook 'gdscript-comint--initialize-for-compilation-mode))
(defun gdscript-comint--initialize-for-comint-mode ()
"Initialize buffer for comint mode support."
(when (derived-mode-p 'comint-mode)
(setq comint-process-echoes nil)
(setq comint-prompt-regexp "^debug> ")
(setq-local comint-use-prompt-regexp t)
(setq-local comint-prompt-read-only t)
(setq-local comint-buffer-maximum-size 4096)
(setq-local comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom))
(setq ansi-color-for-comint-mode t)))
(defun gdscript-comint--initialize-for-compilation-mode ()
"Initialize buffer for compilation mode support."
(setq-local
compilation-error-regexp-alist
'(
("^ At: res://\\([-_[:word:]\/]+.gd\\):\\([[:digit:]]+\\)." 1 2 nil 2 1)
("^*Frame [[:digit:]]+ - res://\\([-_[:word:]\/]+.gd\\):\\([[:digit:]]+\\)." 1 2 nil 2 1)))
(setq-local compilation-mode-font-lock-keywords nil)
(compilation-setup t))
(provide 'gdscript-comint)
;;; gdscript-comint.el ends here