123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- REM
- This file was created by the BLIde solution explorer and should not be modified from outside BLIde
- EndRem
- '------------------------------------------------------------------------------------------------------------------------------------------------------
- '#Region &HFF Program Info
- 'Program: Font Machine
- 'Version: 1
- 'Subversion: 5
- 'Revision: 1
- '#EndRegion &HFF
- '------------------------------------------------------------------------------------------------------------------------------------------------------
- '#Region &H01 Compile Options
- SuperStrict
- Rem
- bbdoc:blide\fontmachine
- End Rem
- Module blide.fontmachine
- '#EndRegion &H01
- '------------------------------------------------------------------------------------------------------------------------------------------------------
- '#Region &H0F Framework
- Import brl.max2d
- Import brl.pngloader
- Import brl.retro
- Import brl.system
- Import brl.reflection
- '#EndRegion &H0F
- '------------------------------------------------------------------------------------------------------------------------------------------------------
- '#Region &HAF Imports
- '?flags
- Import ".\Utils\fontmachineUtils.bmx"
- '?
- '#EndRegion &HAF
- '------------------------------------------------------------------------------------------------------------------------------------------------------
- '#Region &H04 MyNamespace
- 'GUI
- 'guid:e3390d53_c8a7_41d3_9293_f4dcf0f638b5
- Private
- TYPE z_e3390d53_c8a7_41d3_9293_f4dcf0f638b5_3_0 abstract 'Resource folder
- End Type
- TYPE z_blide_bge3390d53_c8a7_41d3_9293_f4dcf0f638b5 Abstract
- Const Name:string = "Font Machine" 'This string contains the name of the program
- Const MajorVersion:Int = 1 'This Const contains the major version number of the program
- Const MinorVersion:Int = 5 'This Const contains the minor version number of the program
- Const Revision:Int = 1 'This Const contains the revision number of the current program version
- Const VersionString:String = MajorVersion + "." + MinorVersion + "." + Revision 'This string contains the assembly version in format (MAJOR.MINOR.REVISION)
- Const AssemblyInfo:String = Name + " " + MajorVersion + "." + MinorVersion + "." + Revision 'This string represents the available assembly info.
- ?win32
- Const Platform:String = "Win32" 'This constant contains "Win32", "MacOs" or "Linux" depending on the current running platoform for your game or application.
- ?
- ?MacOs
- Const Platform:String = "MacOs"
- ?
- ?Linux
- Const Platform:String = "Linux"
- ?
- ?PPC
- Const Architecture:String = "PPC" 'This const contains "x86" or "Ppc" depending on the running architecture of the running computer. x64 should return also a x86 value
- ?
- ?x86
- Const Architecture:String = "x86"
- ?
- ?debug
- Const DebugOn : Int = True 'This const will have the integer value of TRUE if the application was build on debug mode, or false if it was build on release mode
- ?
- ?not debug
- Const DebugOn : Int = False
- ?
- EndType
- Type z_My_e3390d53_c8a7_41d3_9293_f4dcf0f638b5 Abstract 'This type has all the run-tima binary information of your assembly
- Global Application:z_blide_bge3390d53_c8a7_41d3_9293_f4dcf0f638b5 'This item has all the currently available assembly version information.
- Global Resources:z_e3390d53_c8a7_41d3_9293_f4dcf0f638b5_3_0 'This item has all the currently available incbined files names and relative location.
- End Type
- Global My:z_My_e3390d53_c8a7_41d3_9293_f4dcf0f638b5 'This GLOBAL has all the run-time binary information of your assembly, and embeded resources shortcuts.
- Public
- '#EndRegion &H04 MyNamespace
- '------------------------------------------------------------------------------------------------------------------------------------------------------
- '#Region &H03 Includes
- Include "BitMapFont.bmx"
- Include "Font Properties\fontBlends.bmx"
- Include "Exceptions\TDrawTextException.bmx"
- Include "Font Properties\BitMapChar.bmx"
- Include "FontFX\TextRendererFX.bmx"
- Include "FontFX\FontKerning.bmx"
- '#EndRegion &H03
|