DAMASK_EICMD/python/damask/_environment.py

51 lines
1.2 KiB
Python
Raw Normal View History

2019-12-13 01:19:16 +05:30
import os
2020-06-03 17:02:47 +05:30
from pathlib import Path
2019-12-13 01:19:16 +05:30
class Environment:
2019-12-13 01:19:16 +05:30
def __init__(self):
"""Do Nothing."""
pass
@property
def screen_size(self):
width = 1024
height = 768
2020-03-19 16:21:30 +05:30
try:
import wx
_ = wx.App(False) # noqa
width, height = wx.GetDisplaySize()
except ImportError:
try:
import tkinter
tk = tkinter.Tk()
width = tk.winfo_screenwidth()
height = tk.winfo_screenheight()
tk.destroy()
2020-06-30 07:36:40 +05:30
except Exception as e:
pass
return (width,height)
2019-12-13 01:19:16 +05:30
2020-06-03 17:02:47 +05:30
@property
def options(self):
2020-03-13 00:22:33 +05:30
options = {}
for item in ['DAMASK_NUM_THREADS',
'MSC_ROOT',
'MARC_VERSION',
]:
2020-03-13 00:22:33 +05:30
options[item] = os.environ[item] if item in os.environ else None
return options
2020-06-03 17:02:47 +05:30
2020-06-03 17:02:47 +05:30
@property
def root_dir(self):
"""Return DAMASK root path."""
return Path(__file__).parents[2]
# for compatibility
def rootDir(self):
return str(self.root_dir)