flipperzero-firmware/assets
Skorpionm 31259d5304
[FL-3091] SubGhz: add protocol Alutech at-4n (#2352)
* GubGhz: add protocol Alutech at-4n
* SubGhz: fix syntax
* SubGhz: fix subghz_protocol_decoder_alutech_at_4n_get_hash_data
* SubGhz: add unit test alutech at-4n
* SubGhz: add name key

Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2023-02-09 01:59:49 +09:00
..
dolphin Assets: correct MicroSD card pinout in service animations (#2323) 2023-01-29 17:55:04 +07:00
icons BadUSB: Keyboard Layouts (#2256) 2023-02-09 00:01:00 +09:00
protobuf@6460660237 [FL-2957] Unified Info API, App Error, Data Xchange (#1998) 2022-11-29 18:08:08 +09:00
resources [FL-3091] SubGhz: add protocol Alutech at-4n (#2352) 2023-02-09 01:59:49 +09:00
slideshow [FL-2692, FL-2604, FL-2632] New first start sequence (#1456) 2022-07-26 21:44:03 +09:00
unit_tests [FL-3091] SubGhz: add protocol Alutech at-4n (#2352) 2023-02-09 01:59:49 +09:00
.gitignore fbt fixes pt4 (#1899) 2022-10-26 07:15:02 +09:00
ReadMe.md Amap and PVS Studio reports in CI/CD (#1526) 2022-08-23 20:29:26 +09:00
SConscript SCons: do not include backup files in build (#2221) 2023-02-08 18:35:38 +09:00

Requirements

  • Python3
  • Python3 packages: Pillow & heatshrink2

Compiling

./fbt icons proto dolphin_internal dolphin_blocking dolphin_ext resources

Asset naming rules

Images and Animations

NAME_VARIANT_SIZE

  • NAME - mandatory - Asset name in CamelCase. [A-Za-z0-9], special symbols not allowed
  • VARIANT - optional - icon variant: can relate to state or rendering conditions. Examples: active, inactive, inverted.
  • SIZE - mandatory - size in px. Example square 10, 20, 24, etc. Example rectangular: 10x8, 19x5, etc.

Image names will be automatically prefixed with I_, animation names with A_. Icons and Animations will be gathered into icon.h and icon.c.

Dolphin and Games assets

Rules are same as for Images and Animations plus assets are grouped by level and level prepends NAME. Good starting point: https://docs.unrealengine.com/4.27/en-US/ProductionPipelines/AssetNaming/

Important notes

Don't include assets that you are not using, compiler is not going to strip unused assets.

Structure

  • compiled - Output folder made for compiled assets, after building project, in build directory.
  • dolphin - Dolphin game assets sources. Goes to compiled and resources folders in build directory.
  • icons - Icons sources. Goes to compiled folder in build directory.
  • protobuf - Protobuf sources. Goes to compiled folder in build directory.
  • resources - Assets that is going to be provisioned to SD card.
  • slideshow - One-time slideshows for desktop
  • unit_tests - Some pre-defined signals for testing purposes.