2020-08-08 21:06:53 +00:00
|
|
|
#include "ui_about_simple.hpp"
|
|
|
|
|
2023-05-18 20:16:05 +00:00
|
|
|
namespace ui {
|
|
|
|
AboutView::AboutView(NavigationView& nav) {
|
|
|
|
add_children({&console, &button_ok});
|
2020-08-08 21:06:53 +00:00
|
|
|
|
2023-05-18 20:16:05 +00:00
|
|
|
button_ok.on_select = [&nav](Button&) {
|
|
|
|
nav.pop();
|
|
|
|
};
|
2020-08-08 21:06:53 +00:00
|
|
|
|
2023-05-18 20:16:05 +00:00
|
|
|
console.writeln("\x1B\x07List of contributors:\x1B\x10");
|
|
|
|
console.writeln("");
|
|
|
|
}
|
2020-08-08 21:06:53 +00:00
|
|
|
|
2023-05-18 20:16:05 +00:00
|
|
|
void AboutView::update() {
|
|
|
|
if (++timer > 200) {
|
|
|
|
timer = 0;
|
2020-08-08 21:06:53 +00:00
|
|
|
|
2023-05-18 20:16:05 +00:00
|
|
|
switch (++frame) {
|
2020-08-08 21:06:53 +00:00
|
|
|
case 1:
|
|
|
|
// TODO: Generate this automatically from github
|
|
|
|
// https://github.com/eried/portapack-mayhem/graphs/contributors?to=2022-01-01&from=2020-04-12&type=c
|
|
|
|
console.writeln("\x1B\x06Mayhem:\x1B\x10");
|
|
|
|
console.writeln("eried,euquiq,gregoryfenton");
|
|
|
|
console.writeln("johnelder,jwetzell,nnemanjan00");
|
2021-02-03 21:23:12 +00:00
|
|
|
console.writeln("N0vaPixel,klockee,GullCode");
|
|
|
|
console.writeln("jamesshao8,ITAxReal,rascafr");
|
|
|
|
console.writeln("mcules,dqs105,strijar");
|
2021-06-22 10:44:19 +00:00
|
|
|
console.writeln("zhang00963,RedFox-Fr,aldude999");
|
2021-05-03 02:00:39 +00:00
|
|
|
console.writeln("East2West,fossum,ArjanOnwezen");
|
2021-06-22 10:44:19 +00:00
|
|
|
console.writeln("vXxOinvizioNxX,teixeluis");
|
2021-11-01 10:48:14 +00:00
|
|
|
console.writeln("Brumi-2021,texasyojimbo");
|
2022-01-12 14:35:30 +00:00
|
|
|
console.writeln("heurist1,intoxsick,ckuethe");
|
2022-03-29 06:28:31 +00:00
|
|
|
console.writeln("notpike,jLynx,zigad");
|
2023-01-25 13:14:12 +00:00
|
|
|
console.writeln("MichalLeonBorsuk,jimilinuxguy");
|
2020-08-08 21:06:53 +00:00
|
|
|
console.writeln("");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
// https://github.com/eried/portapack-mayhem/graphs/contributors?to=2020-04-12&from=2015-07-31&type=c
|
|
|
|
console.writeln("\x1B\x06Havoc:\x1B\x10");
|
2022-01-04 03:14:05 +00:00
|
|
|
console.writeln("furrtek,mrmookie,NotPike");
|
2020-08-08 21:06:53 +00:00
|
|
|
console.writeln("mjwaxios,ImDroided,Giorgiofox");
|
|
|
|
console.writeln("F4GEV,z4ziggy,xmycroftx");
|
|
|
|
console.writeln("troussos,silascutler");
|
|
|
|
console.writeln("nickbouwhuis,msoose,leres");
|
|
|
|
console.writeln("joakar,dhoetger,clem-42");
|
|
|
|
console.writeln("brianlechthaler,ZeroChaos-...");
|
|
|
|
console.writeln("");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
// https://github.com/eried/portapack-mayhem/graphs/contributors?from=2014-07-05&to=2015-07-31&type=c
|
|
|
|
console.writeln("\x1B\x06PortaPack:\x1B\x10");
|
|
|
|
console.writeln("jboone,argilo");
|
|
|
|
console.writeln("");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
// https://github.com/mossmann/hackrf/graphs/contributors
|
|
|
|
console.writeln("\x1B\x06HackRF:\x1B\x10");
|
|
|
|
console.writeln("mossmann,dominicgs,bvernoux");
|
|
|
|
console.writeln("bgamari,schneider42,miek");
|
|
|
|
console.writeln("willcode,hessu,Sec42");
|
|
|
|
console.writeln("yhetti,ckuethe,smunaut");
|
|
|
|
console.writeln("wishi,mrbubble62,scateu...");
|
|
|
|
console.writeln("");
|
2023-05-18 20:16:05 +00:00
|
|
|
frame = 0; // Loop
|
2020-08-08 21:06:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2023-05-18 20:16:05 +00:00
|
|
|
}
|
2020-08-08 21:06:53 +00:00
|
|
|
|
2023-05-18 20:16:05 +00:00
|
|
|
void AboutView::focus() {
|
|
|
|
button_ok.focus();
|
|
|
|
}
|
2020-08-08 21:06:53 +00:00
|
|
|
|
2021-02-03 21:23:12 +00:00
|
|
|
} /* namespace ui */
|