aboutsummaryrefslogtreecommitdiff
path: root/openguilion/openguilionCommon.py
blob: e4be930a8227bfc255fd957f6088a62cdbce6d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
os.environ['PYGAME_HIDE_SUPPORT_PROMPT'] = "hide"
import time
import pygame
import pygame.freetype
from pygame.locals import *

appName = "OpenGUIlion"
appVersion = "v1.1"

pygame.init()
pygame.display.set_caption(appName + " " + appVersion)
w, h = 1024, 512
screen = pygame.display.set_mode((w, h), 32, pygame.NOFRAME)

fontHelv      = pygame.font.Font('./openguilion/fonts/helvet.ttf', 60)
fontHelvGiant = pygame.font.Font('./openguilion/fonts/helvet.ttf', 600)
fontHelvB     = pygame.font.Font('./openguilion/fonts/helvetb.ttf', 60)
fontMatisse   = pygame.font.Font('./openguilion/fonts/matisse.ttf', 60)
fontSinkin    = pygame.font.Font('./openguilion/fonts/sinkin.ttf', 200)

# Test vars
textX = 100
textY = 55