Luke-
My newer layouts already scale based on the base resolution the layout was designed for. The only thing I see that you are doing differently - and, forgive my ignorance on this, is you are creating a function for the math and calling other .nuts with the pixel position based on the BG. That and you can switch from horizontal to vertical which is nice. But, will this code scale much better than what I'm doing below. This is more for learning than a critique.
class UserConfig {
</ label="SpinWheel", help="The artwork to spin", options="marquee,wheel" /> orbit_art="wheel";
</ label="Display Flyer", help="Display the flyer/game box in background.", options="Yes,No" /> enable_flyer="Yes";
</ label="Enable Background", help="Enable/Disable background", options="Yes,No" /> enable_BG="Yes";
</ label="Enable BG mask", help="Enable/Disable mask", options="Yes,No" /> enable_BG_mask="Yes";
</ label="Enable Year", help="Enable/Disable year", options="Yes,No" /> enable_year="Yes";
}
local config = fe.get_config();
local flx = fe.layout.width;
local fly = fe.layout.height;
local flw = fe.layout.width;
local flh = fe.layout.height;
fe.layout.font="coolvetica";
//load animate module
fe.load_module("animate");
//background image
if (config.enable_BG == "Yes") {
fe.add_image( "bg.png", flx*0.0, fly*0.0, flw, flh);
}
//background mask
if (config.enable_BG_mask == "Yes") {
fe.add_image( "mask.png", flx*0.0, fly*0.0, flw, flh);
}
//property animation for snap
local snap = fe.add_artwork("snap", flx*0.1, fly/3, flw/2.8, flh/2.3);
snap.preserve_aspect_ratio = false;
local pos_cfg = { when = Transition.ToNewSelection,
property = "position",
start = { x = -flx*1.0, y = fly/3.5 },
end = { x = flx*0.1, y = fly/3 }, time = 1000 }
animation.add( PropertyAnimation( snap, pos_cfg ) );
//Display flyer on right
if (config.enable_flyer == "Yes") {
local flyer = fe.add_artwork("flyer", flx/1.7, fly/3.9, flw/3.6, flh/1.

;
flyer.rotation = 3
local alpha_cfg = {
when = Transition.ToNewSelection,
property = "alpha",
start = 0,
end = 150,
time = 1000
}
animation.add( PropertyAnimation( flyer, alpha_cfg ) );
local pos_cfg = { when = Transition.ToNewSelection,
property = "position",
start = { x = flx*8.0, y = fly/3.8 },
end = { x = flx/1.7, y = fly/3.9 }, time = 1000 }
animation.add( PropertyAnimation( flyer, pos_cfg ) );
}
local title = fe.add_text("[Title]", flx*0.0, fly/1.25, flw, flh*0.025);
title.set_rgb( 220, 220, 220 );
//title.align = Align.Right;
local scale_cfg =
{ when = Transition.ToNewSelection,
property = "scale",
start = 1.0,
end = 1.5,
time = 1500 }
animation.add( PropertyAnimation( title, scale_cfg ) );
local pos_cfg = { when = Transition.ToNewSelection,
property = "position",
start = { x = flx*0.0, y = fly/1 +100 },
end = { x = flx*0.0, y = fly/1.25 }, time = 1000 }
animation.add( PropertyAnimation( title, pos_cfg ) );
//text stuff
if (config.enable_year == "Yes") {
//local yearshadow = fe.add_text( "[Year]", flx*0.42, fly/8, flw*0.4, flh*0.08 );
//yearshadow.set_rgb( 10, 10, 10 );
//yearshadow.align = Align.Left;
//yearshadow.rotation = 0;
local year = fe.add_text( "[Year]", flx*0.41, fly/95, flw*0.4, flh*0.08 );
year.set_rgb( 255, 255, 255 );
year.align = Align.Left;
year.rotation = 0;
year.alpha = 220;
animation.add( PropertyAnimation( year, {
when = Transition.ToNewSelection,
property = "y",
start = -180, end = year.y,
tween = Tween.Bounce,
time = 2500 } ) );
local pos_cfg = { when = Transition.ToNewSelection,
property = "position",
start = { x = flx*0.41, y = -fly*0.5 },
end = { x = flx*0.41, y = fly/95 }, time = 1000 }
animation.add( PropertyAnimation( year, pos_cfg ) );
}
local msgplay = fe.add_text( "Played :" , flx*0.9, fly*0.01, flw*0.3, flh*0.026 );
msgplay.set_rgb( 255, 255, 255 );
msgplay.align = Align.Left;
local play = fe.add_text( "[PlayedCount]", flx*0.96, fly*0.01, flw*0.3, flh*0.026 );
play.set_rgb( 255, 255, 255 );
play.align = Align.Left;
local filter = fe.add_text( "[ListFilterName]: [ListEntry]-[ListSize]", flx*0.01, fly*0.01, flw*0.3, flh*0.026 );
filter.set_rgb( 255, 255, 255 );
filter.align = Align.Left;
filter.rotation = 0;
fe.load_module( "conveyor" );
fe.load_module( "fade" );
class SimpleArtStrip extends Conveyor
{
m_x=0; m_y=0; m_width=0; m_height=0; m_x_span=0; m_y_span=0;
constructor( artwork_label, num_objs, x, y, width, height, pad=0 )
{
base.constructor();
local my_list = [];
for ( local i=0; i<num_objs; i++ )
my_list.push( SimpleArtStripSlot(this,artwork_label) );
set_slots( my_list );
m_x=x+pad/2; m_y=y+pad/2;
if ( width < height )
{
m_x_span=0;
m_y_span=height;
m_width=width-pad;
m_height=height/m_objs.len()-pad;
}
else
{
m_x_span=width;
m_y_span=0;
m_width=width/m_objs.len()-pad;
m_height=height-pad;
}
reset_progress();
}
};
local my_strip = SimpleArtStrip( "wheel", 5, flx*0.0, fly*0.85 fe.layout.width/1.0, fe.layout.height/7.0, 1 );
my_strip.alpha = 255;
//marquee property animation
local marquee = fe.add_artwork("marquee", flx/4.6, fly/8, flw/1.8, flh/4.5);
local alpha_cfg = {
when = Transition.ToNewSelection,
property = "alpha",
start = 40,
end = 220,
time = 1000
}
animation.add( PropertyAnimation( marquee, alpha_cfg ) );
local pos_cfg = { when = Transition.ToNewSelection,
property = "position",
start = { x = flx/4.6, y = -fly*0.5 },
end = { x = flx/4.6, y = fly/8 }, time = 1000 }
animation.add( PropertyAnimation( marquee, pos_cfg ) );
local message = fe.add_text("Ready Player", flx*0.0, fly*0.4, fe.layout.width,80);
message.alpha = 0;
message.style = Style.Bold;
// Transitions
fe.add_transition_callback( "fancy_transitions" );
function fancy_transitions( ttype, var, ttime ) {
switch ( ttype )
{
case Transition.StartLayout:
case Transition.ToNewList:
case Transition.ToNewSelection:
case Transition.EndLayout:
break;
case Transition.FromGame:
if ( ttime < 255 )
{
foreach (o in fe.obj)
o.alpha = ttime;
message.alpha = 0;
return true;
}
else
{
foreach (o in fe.obj)
o.alpha = 255;
message.alpha = 0;
}
break;
case Transition.EndLayout:
if ( ttime < 255 )
{
foreach (o in fe.obj)
o.alpha = 255 - ttime;
message.alpha = 0;
return true;
}
else
{
foreach (o in fe.obj)
o.alpha = 255;
message.alpha = 0;
}
break;
case Transition.ToGame:
if ( ttime < 255 )
{
foreach (o in fe.obj)
o.alpha = 255 - ttime;
message.alpha = ttime;
return true;
}
break;
}
return false;
}