-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCLIRes.py
73 lines (58 loc) · 1.76 KB
/
CLIRes.py
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
# -*- coding: UTF-8 -*-
# 实现资源的相关类;
# 模块内应当有一个Res的基类,和若干可能的此类的派生,用于作为资源,
# 单个Res是一个独立的界面单位,应当可以在加载后通过其定义的接口与其他系统交互,并可对其内的内容完成自决;
# 实现内容如,管理当前Res的若干Elem,对外接入接口并提供给Elem作为回调,或在内部实现可内部完成的回调;
from ..OLDLog import logger;
from .CONSTS import *;
__all__ = [
"Res",
];
class Res:
"""
A res is a page, a scene, an UI, etc;
"""
def __init__(self, h:int = 0, w:int = 0) -> None:
"""
Init to the res;
h, w: window / display size;
"""
self._elems = {};
self._focus = -1;
self._ressize = (h, w);
return;
@property
def elems(self) -> dict:
"""
The contained elems of this res;
"""
return self._elems;
@property
def focus(self) -> int:
"""
The focus of this res;
"""
return self._focus;
@property
def ressize(self) -> tuple:
"""
The window / display size of this res;
"""
return self._ressize;
@ressize.setter
def ressize(self, val:tuple) -> None:
self._ressize = val;
return;
def update(self, input:str) -> None:
"""
Called to transmit the control flow to the res;
input: control flow to the res;
return none;
"""
return;
def draw(self, y: int = 1, x: int = 1, h: int = 0, w: int = 0) -> str:
"""
Called to get the draw flow of the res;
return the string to draw the res;
"""
return '';