diff --git a/mos/background16x9.png b/mos/background16x9.png new file mode 100644 index 0000000..4451458 Binary files /dev/null and b/mos/background16x9.png differ diff --git a/mos/background4x3.png b/mos/background4x3.png new file mode 100644 index 0000000..84b3fbc Binary files /dev/null and b/mos/background4x3.png differ diff --git a/mos/box.png b/mos/box.png new file mode 100755 index 0000000..54876e6 Binary files /dev/null and b/mos/box.png differ diff --git a/mos/bullet.png b/mos/bullet.png new file mode 100644 index 0000000..a05ef26 Binary files /dev/null and b/mos/bullet.png differ diff --git a/mos/bullet.svg b/mos/bullet.svg new file mode 100644 index 0000000..38ef80e --- /dev/null +++ b/mos/bullet.svg @@ -0,0 +1,49 @@ + + + + + + + + + + diff --git a/mos/entry.png b/mos/entry.png new file mode 100755 index 0000000..a9f4157 Binary files /dev/null and b/mos/entry.png differ diff --git a/mos/lock.png b/mos/lock.png new file mode 100644 index 0000000..1838bae Binary files /dev/null and b/mos/lock.png differ diff --git a/mos/lock.svg b/mos/lock.svg new file mode 100644 index 0000000..9b2c65d --- /dev/null +++ b/mos/lock.svg @@ -0,0 +1,53 @@ + + + + diff --git a/mos/mos.plymouth b/mos/mos.plymouth new file mode 100644 index 0000000..32b05e4 --- /dev/null +++ b/mos/mos.plymouth @@ -0,0 +1,9 @@ +[Plymouth Theme] +Name=MOS +Description=MOS Plymouth theme. +ModuleName=script + +[script] +ImageDir=/usr/share/plymouth/themes/mos +ScriptFile=/usr/share/plymouth/themes/mos/mos.script +UseFirmwareBackground=false diff --git a/mos/mos.script b/mos/mos.script new file mode 100644 index 0000000..b777b6b --- /dev/null +++ b/mos/mos.script @@ -0,0 +1,173 @@ +# background +fun imglogo( image, scaleX, scaleY ) +{ + image.Scale( image.GetWidth() * scaleX, image.GetHeight() * scaleY ); +} + +# background +if( Window.GetWidth()/Window.GetHeight() > 1.5 ) +{ + logo.raw = Image("background16x9.png"); +} +else +{ + logo.raw = Image("background4x3.png"); +} + +logo.image = imglogo( logo.raw, Window.GetWidth()/logo.raw.GetWidth(), Window.GetHeight()/logo.raw.GetHeight()); +logo.sprite = Sprite(logo.image); +logo.sprite.SetPosition(0, 0, 0); + +#----------------------------------------- Ptogress Bar __________________________ + +if (Plymouth.GetMode () == "boot") +{ + progress_box.image = Image("progress_box.png"); + progress_box.sprite = Sprite(progress_box.image); + + progress_box.x = Window.GetX() + Window.GetWidth() / 2 - progress_box.image.GetWidth() / 2; + #change here + progress_box.y = Window.GetY() + Window.GetHeight() * 0.65 - progress_box.image.GetHeight() / 2; + progress_box.sprite.SetPosition(progress_box.x, progress_box.y, 0); + + progress_bar.original_image = Image("progress_bar.png"); + progress_bar.sprite = Sprite(); + + progress_bar.x = Window.GetX() + Window.GetWidth() / 2 - progress_bar.original_image.GetWidth() / 2; + #change here + progress_bar.y = Window.GetY() + Window.GetHeight() / 2 * 1.3 - progress_box.image.GetHeight() / 2 + (progress_box.image.GetHeight() - progress_bar.original_image.GetHeight()) / 2; + progress_bar.sprite.SetPosition(progress_bar.x, progress_bar.y, 1); + + fun progress_callback (duration, progress) + { + if (progress_bar.image.GetWidth () != Math.Int (progress_bar.original_image.GetWidth () * progress)) + { + progress_bar.image = progress_bar.original_image.Scale(progress_bar.original_image.GetWidth(progress_bar.original_image) * progress, progress_bar.original_image.GetHeight()); + progress_bar.sprite.SetImage (progress_bar.image); + } + } + + Plymouth.SetBootProgressFunction(progress_callback); +} +#----------------------------------------- Dialog -------------------------------- + +status = "normal"; + +fun dialog_setup() + { + local.box; + local.lock; + local.entry; + + box.image = Image("box.png"); + lock.image = Image("lock.png"); + entry.image = Image("entry.png"); + + box.sprite = Sprite(box.image); + box.x = Window.GetX() + Window.GetWidth() / 2 - box.image.GetWidth ()/2; + box.y = Window.GetY() + Window.GetHeight() / 2 - box.image.GetHeight()/2; + box.z = 10000; + box.sprite.SetPosition(box.x, box.y, box.z); + + lock.sprite = Sprite(lock.image); + lock.x = box.x + box.image.GetWidth()/2 - (lock.image.GetWidth() + entry.image.GetWidth()) / 2; + lock.y = box.y + box.image.GetHeight()/2 - lock.image.GetHeight()/2; + lock.z = box.z + 1; + lock.sprite.SetPosition(lock.x, lock.y, lock.z); + + entry.sprite = Sprite(entry.image); + entry.x = lock.x + lock.image.GetWidth(); + entry.y = box.y + box.image.GetHeight()/2 - entry.image.GetHeight()/2; + entry.z = box.z + 1; + entry.sprite.SetPosition(entry.x, entry.y, entry.z); + + global.dialog.box = box; + global.dialog.lock = lock; + global.dialog.entry = entry; + global.dialog.bullet_image = Image("bullet.png"); + dialog_opacity (1); + } + +fun dialog_opacity(opacity) + { + dialog.box.sprite.SetOpacity (opacity); + dialog.lock.sprite.SetOpacity (opacity); + dialog.entry.sprite.SetOpacity (opacity); + for (index = 0; dialog.bullet[index]; index++) + { + dialog.bullet[index].sprite.SetOpacity(opacity); + } + } + +fun display_normal_callback () + { + global.status = "normal"; + if (global.dialog) + dialog_opacity (0); + } + +fun display_password_callback (prompt, bullets) + { + global.status = "password"; + if (!global.dialog) + dialog_setup(); + else + dialog_opacity(1); + for (index = 0; dialog.bullet[index] || index < bullets; index++) + { + if (!dialog.bullet[index]) + { + dialog.bullet[index].sprite = Sprite(dialog.bullet_image); + dialog.bullet[index].x = dialog.entry.x + index * dialog.bullet_image.GetWidth(); + dialog.bullet[index].y = dialog.entry.y + dialog.entry.image.GetHeight() / 2 - dialog.bullet_image.GetHeight() / 2; + dialog.bullet[index].z = dialog.entry.z + 1; + dialog.bullet[index].sprite.SetPosition(dialog.bullet[index].x, dialog.bullet[index].y, dialog.bullet[index].z); + } + if (index < bullets) + dialog.bullet[index].sprite.SetOpacity(1); + else + dialog.bullet[index].sprite.SetOpacity(0); + } + } + +Plymouth.SetDisplayNormalFunction(display_normal_callback); +Plymouth.SetDisplayPasswordFunction(display_password_callback); + +#----------------------------------------- Quit -------------------------------- + +fun quit_callback () +{ + logo.sprite.SetOpacity (1); +} + +Plymouth.SetQuitFunction(quit_callback); + +#----------------------------------------- Message -------------------------------- + +message_sprites = []; +message_sprite_count = 0; +message_sprite_y = 10; + +fun display_message_callback (text) +{ + my_image = Image.Text(text, 1, 1, 1); + message_sprites[message_sprite_count] = Sprite(my_image); + message_sprites[message_sprite_count].SetPosition(10, message_sprite_y, 10000); + message_sprites[message_sprite_count].text = text; + message_sprite_count++; + message_sprite_y += my_image.GetHeight(); +} + +fun hide_message_callback (text) +{ + for (i = 0; i < message_sprite_count; i++) + { + if (message_sprites[i].text == text) + message_sprites[i] = NULL; + } +} + +Plymouth.SetDisplayMessageFunction (display_message_callback); +Plymouth.SetHideMessageFunction (hide_message_callback); + + diff --git a/mos/progress_bar.png b/mos/progress_bar.png new file mode 100644 index 0000000..fd9977a Binary files /dev/null and b/mos/progress_bar.png differ diff --git a/mos/progress_box.png b/mos/progress_box.png new file mode 100644 index 0000000..7c61d2a Binary files /dev/null and b/mos/progress_box.png differ