author | František Kučera <franta-hg@frantovo.cz> |
Fri, 01 Dec 2023 20:25:49 +0100 | |
branch | v_0 |
changeset 5 | ee4ba9f5a053 |
parent 0 | bb715a82a8f1 |
permissions | -rw-r--r-- |
0 | 1 |
# ShaderShark |
2 |
# Copyright © 2023 František Kučera (Frantovo.cz, GlobalCode.info) |
|
3 |
# |
|
4 |
# This program is free software: you can redistribute it and/or modify |
|
5 |
# it under the terms of the GNU General Public License as published by |
|
6 |
# the Free Software Foundation, version 3 of the License. |
|
7 |
# |
|
8 |
# This program is distributed in the hope that it will be useful, |
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 |
# GNU General Public License for more details. |
|
12 |
# |
|
13 |
# You should have received a copy of the GNU General Public License |
|
14 |
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 |
||
16 |
_shader_shark_completion() { |
|
17 |
local w0 w1 w2 w3 |
|
18 |
||
19 |
COMPREPLY=() |
|
20 |
w0=${COMP_WORDS[COMP_CWORD]} |
|
21 |
w1=${COMP_WORDS[COMP_CWORD-1]} |
|
22 |
w2=${COMP_WORDS[COMP_CWORD-2]} |
|
23 |
w3=${COMP_WORDS[COMP_CWORD-3]} |
|
24 |
||
25 |
local COLOR=( |
|
26 |
"333333" |
|
27 |
"345678" |
|
28 |
"147258" |
|
29 |
) |
|
30 |
||
5
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
31 |
local SHADER_TYPE=( |
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
32 |
"vertex" |
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
33 |
"fragment" |
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
34 |
) |
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
35 |
|
0 | 36 |
if [[ "$w1" == "--texture" ]]; then |
37 |
COMPREPLY=($(compgen -f -- "$w0"; compgen -d -S / -- "$w0")) |
|
5
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
38 |
elif [[ "$w1" == "--shader" ]]; then |
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
39 |
COMPREPLY=($(compgen -W "${SHADER_TYPE[*]}" -- "$w0")) |
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
40 |
elif [[ "$w2" == "--shader" ]]; then |
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
41 |
COMPREPLY=($(compgen -f -- "$w0"; compgen -d -S / -- "$w0")) |
0 | 42 |
elif [[ "$w1" == "--background-color" ]]; then |
43 |
COMPREPLY=($(compgen -W "${COLOR[*]}" -- "$w0")) |
|
44 |
else |
|
45 |
local OPTIONS=( |
|
46 |
"--texture" |
|
5
ee4ba9f5a053
OOP for Shader and ShaderProgram
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
47 |
"--shader" |
0 | 48 |
"--background-color" |
49 |
"--root-window" |
|
50 |
) |
|
51 |
COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0")) |
|
52 |
fi |
|
53 |
} |
|
54 |
||
55 |
complete -F _shader_shark_completion shader-shark |