97 lines
2.8 KiB
Python
97 lines
2.8 KiB
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
# License: GPL v3 Copyright: 2016, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
import os
|
|
import threading
|
|
import pwd
|
|
import ctypes
|
|
import sys
|
|
from collections import namedtuple, defaultdict
|
|
|
|
from .fast_data_types import (
|
|
GLFW_KEY_LEFT_SHIFT, GLFW_KEY_RIGHT_SHIFT, GLFW_KEY_LEFT_ALT,
|
|
GLFW_KEY_RIGHT_ALT, GLFW_KEY_LEFT_CONTROL, GLFW_KEY_RIGHT_CONTROL,
|
|
GLFW_KEY_LEFT_SUPER, GLFW_KEY_RIGHT_SUPER)
|
|
|
|
appname = 'kitty'
|
|
version = (0, 2, 2)
|
|
str_version = '.'.join(map(str, version))
|
|
_plat = sys.platform.lower()
|
|
isosx = 'darwin' in _plat
|
|
|
|
|
|
ScreenGeometry = namedtuple('ScreenGeometry', 'xstart ystart xnum ynum dx dy')
|
|
WindowGeometry = namedtuple('WindowGeometry', 'left top right bottom xnum ynum')
|
|
|
|
|
|
def _get_config_dir():
|
|
# This must be called before calling setApplicationName
|
|
if 'KITTY_CONFIG_DIRECTORY' in os.environ:
|
|
return os.path.abspath(os.path.expanduser(os.environ['VISE_CONFIG_DIRECTORY']))
|
|
|
|
candidate = os.path.abspath(os.path.expanduser(os.environ.get('XDG_CONFIG_HOME') or ('~/Library/Preferences' if isosx else '~/.config')))
|
|
ans = os.path.join(candidate, appname)
|
|
try:
|
|
os.makedirs(ans)
|
|
except FileExistsError:
|
|
pass
|
|
return ans
|
|
|
|
|
|
config_dir = _get_config_dir()
|
|
del _get_config_dir
|
|
|
|
|
|
class ViewportSize:
|
|
|
|
__slots__ = ('width', 'height', 'x_ratio', 'y_ratio')
|
|
|
|
def __init__(self):
|
|
self.width = self.height = 1024
|
|
self.x_ratio = self.y_ratio = 1.0
|
|
|
|
def __repr__(self):
|
|
return '(width={}, height={}, x_ratio={}, y_ratio={})'.format(self.width, self.height, self.x_ratio, self.y_ratio)
|
|
|
|
|
|
def get_boss():
|
|
return get_boss.boss
|
|
|
|
|
|
def set_boss(m):
|
|
get_boss.boss = m
|
|
|
|
|
|
def wakeup():
|
|
os.write(get_boss.boss.write_wakeup_fd, b'1')
|
|
|
|
|
|
def queue_action(func, *args):
|
|
get_boss.boss.queue_action(func, *args)
|
|
|
|
|
|
is_key_pressed = defaultdict(lambda: False)
|
|
mouse_button_pressed = defaultdict(lambda: False)
|
|
mouse_cursor_pos = [0, 0]
|
|
viewport_size = ViewportSize()
|
|
cell_size = ViewportSize()
|
|
base_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
terminfo_dir = os.path.join(base_dir, 'terminfo')
|
|
logo_data_file = os.path.join(base_dir, 'logo', 'kitty.rgba')
|
|
main_thread = threading.current_thread()
|
|
shell_path = pwd.getpwuid(os.geteuid()).pw_shell or '/bin/sh'
|
|
|
|
GLint = ctypes.c_int if ctypes.sizeof(ctypes.c_int) == 4 else ctypes.c_long
|
|
GLuint = ctypes.c_uint if ctypes.sizeof(ctypes.c_uint) == 4 else ctypes.c_ulong
|
|
GLfloat = ctypes.c_float
|
|
if ctypes.sizeof(GLfloat) != 4:
|
|
raise RuntimeError('float size is not 4')
|
|
if ctypes.sizeof(GLint) != 4:
|
|
raise RuntimeError('int size is not 4')
|
|
|
|
MODIFIER_KEYS = (
|
|
GLFW_KEY_LEFT_SHIFT, GLFW_KEY_RIGHT_SHIFT, GLFW_KEY_LEFT_ALT,
|
|
GLFW_KEY_RIGHT_ALT, GLFW_KEY_LEFT_CONTROL, GLFW_KEY_RIGHT_CONTROL,
|
|
GLFW_KEY_LEFT_SUPER, GLFW_KEY_RIGHT_SUPER)
|