mirror of
https://gitlab.com/ryzen-controller-team/ryzen-controller.git
synced 2024-12-22 10:03:28 +07:00
60 lines
2.0 KiB
Python
60 lines
2.0 KiB
Python
|
import os, sys, time
|
||
|
from ctypes import *
|
||
|
from shutil import copyfile
|
||
|
|
||
|
lib_path = os.path.dirname(os.path.abspath(__file__))
|
||
|
os.chdir(lib_path)
|
||
|
|
||
|
if sys.platform == 'win32' or sys.platform == 'cygwin':
|
||
|
try:
|
||
|
os.add_dll_directory(lib_path)
|
||
|
except AttributeError:
|
||
|
pass #not needed for old python version
|
||
|
|
||
|
winring0_driver_file_path = os.path.join(os.path.dirname(os.path.abspath(sys.executable)), 'WinRing0x64.sys')
|
||
|
if not os.path.isfile(winring0_driver_file_path):
|
||
|
copyfile(os.path.join(lib_path, 'WinRing0x64.sys'), winring0_driver_file_path)
|
||
|
|
||
|
lib = cdll.LoadLibrary('libryzenadj')
|
||
|
else:
|
||
|
lib = cdll.LoadLibrary('libryzenadj.so')
|
||
|
|
||
|
# define ctype mappings for types which can not be mapped automatically
|
||
|
lib.init_ryzenadj.restype = c_void_p
|
||
|
lib.get_table_ver.argtypes = [c_void_p]
|
||
|
lib.get_table_size.argtypes = [c_void_p]
|
||
|
lib.get_table_values.restype = POINTER(c_float)
|
||
|
lib.get_table_values.argtypes = [c_void_p]
|
||
|
lib.refresh_table.argtypes = [c_void_p]
|
||
|
|
||
|
ry = lib.init_ryzenadj()
|
||
|
|
||
|
if not ry:
|
||
|
sys.exit("RyzenAdj could not get initialized")
|
||
|
|
||
|
print("pmtable version: {:x}".format(lib.get_table_ver(ry)))
|
||
|
|
||
|
input("Press any key to show all pmtable values...")
|
||
|
|
||
|
pmtable_size = lib.get_table_size(ry) // 4
|
||
|
pmtable = lib.get_table_values(ry)
|
||
|
|
||
|
while True:
|
||
|
lib.refresh_table(ry)
|
||
|
columns, lines = os.get_terminal_size()
|
||
|
table_columns = columns // 16 # 16 chars per table entry
|
||
|
os.system('cls' if sys.platform == 'win32' else 'clear')
|
||
|
table_rows = 0
|
||
|
for index in (range(pmtable_size)):
|
||
|
sys.stdout.write("{:3d}:{:8.2f}\t".format(index, pmtable[index]))
|
||
|
if index % table_columns == table_columns - 1:
|
||
|
sys.stdout.write('\n')
|
||
|
table_rows += 1
|
||
|
if table_rows >= lines - 1:
|
||
|
sys.stdout.write('{:d} More entries ...'.format(pmtable_size - 1 - index))
|
||
|
break
|
||
|
|
||
|
if index % table_columns != table_columns - 1: sys.stdout.write('\n')
|
||
|
sys.stdout.flush()
|
||
|
time.sleep(1)
|