-----------------------------------------------------------------------------------------------------

///// Background Demo. Empty DemoScript ("") for no demo:

#DemoDat    = "Demo\Demo.dat"
#DemoScript = "demo.txt"

-----------------------------------------------------------------------------------------------------

///// Fonts. Can handle every format supported by freetype, ttf included:

#FontCompo   = "fonts\hlmv.pfb"
#FontEntry   = "fonts\hlmc.pfb"
#FontPoints  = "fonts\hlmc.pfb"
#FontWinners = "fonts\hlmv.pfb"

#FontCompoColor   = (1.0, 1.0, 1.0, 0.90)
#FontEntryColor   = (1.0, 1.0, 1.0, 0.90)
#FontPointsColor  = (1.0, 1.0, 1.0, 0.90)
#FontWinnersColor = (1.0, 1.0, 1.0, 0.90)

-----------------------------------------------------------------------------------------------------

///// Client area's normalized margins. Client Area includes compo name, entries and bars:

#LeftMargin   = 0.06
#RightMargin  = 0.08
#TopMargin    = 0.06
#BottomMargin = 0.13

-----------------------------------------------------------------------------------------------------

///// Normalized area where the compo name is gonna be written

#CompoLeft   = 0.00
#CompoRight  = 1.00
#CompoTop    = 0.00
#CompoBottom = 0.08

-----------------------------------------------------------------------------------------------------

///// Normalized area where the podium winners (after the bar animation) are gonna be written:

#WinnersLeft   = 0.1
#WinnersRight  = 0.9
#WinnersTop    = 0.1
#WinnersBottom = 0.9


///// Winners Min & Max font size. If some doesn't fit with the minimum font size, it's truncated:

#WinnersMinFontSize = 25
#WinnersMaxFontSize = 40

-----------------------------------------------------------------------------------------------------

///// Compo files beautifier (true/false). If it's activated (true) then the compo files (Compos\*.txt)
///// are rewritten with proper indentation once the votecounter is executed. I used this only for the
///// original Euskal compo results to be more readable (and edited easier). It's a bit useless :)

#CompoFilesBeautifier = FALSE


///// Tie solve method (0 = accumulate entries in the same position, 1 = limit entries):
///// Example (a = 10 votes, b = 5 votes, c = 5 votes, d = 2 votes) and 3 podium places
///// With method 0 we have
/////     1->a, 2->b+c, 3->d
///// With method 1 we have
/////     1->a  2->b+c

#TieSolve = 0


///// Information at the left side of the bar (0 = author, 1 = prod title):

#EntryInfo = 0


///// Maximum normalized width of the EntryInfo information

#EntryMaxWidth = 0.23


///// Minimum font size in pixels (height) for the entries. If an entry with the minimum font size is
///// wider than EntryMaxWidth, the title is truncated with a "...":

#EntryMinFontSize = 18


///// Maximum font size in pixels (height) for the entries.

#EntryMaxFontSize = 40


///// Maximum number of displayed entries. Should be computed depending on EntryMinFontSize:

#MaxEntries = 25

-----------------------------------------------------------------------------------------------------

///// Bar parameters:

#BarColor       = (0.0, 0.0, 1.0, 0.90)
#BarColorPodium = (1.0, 0.5, 0.0, 0.90)
#BarColorWinner = (0.0, 1.0, 0.0, 0.90)
#BarColorBorder = (0.0, 0.0, 0.0, 0.90)
#BarBorder      = 2
#BarHeight      = 1.0


///// Animation parameteres (in seconds):

#AnimCompoStart   = 3.0
#AnimEntriesStart = 6.2
#AnimWinnersStart = 28.8
#BarAnimStart     = 09.5
#BarAnimEnd       = 25.5
#FadesDuration    = 1.0


///// Number of speed changes in the bar animation (0 = uniform grow):

#BarAnimGrowChanges = 7


///// Intensity of each speed change (0 = uniform grow, 1 = maximum noise grow):

#BarAnimGrowChangeNoise = 0.8


///// Normalized left (entry title) and the right (entry points) margins

#BarLeftMargin  = 0.02
#BarRightMargin = 0.02

-----------------------------------------------------------------------------------------------------