[v0.04] Improved long nvidia logo. Finished the logos part

This commit is contained in:
Dr-Noob
2021-08-16 12:27:23 +02:00
parent 7b2328589a
commit 9a5bc9f3ed
2 changed files with 18 additions and 66 deletions

View File

@@ -59,79 +59,31 @@ $C2## ## ## ## ## ## ## ## #: :# \
$C2## ## ## ## ## ## ## ## ####### \
$C2## ## ### ## ###### ## ## ## "
#define ASCII_NVIDIA_L_V1 \
"$C1 #################################### \
$C1 #################################### \
$C1 #################################### \
$C1 ##### ########################## \
$C1 ####### ###### ###################### \
$C1 ###### ########### ################### \
$C1 ####### ##### ####### ################# \
$C1 ###### ####### # ###### ############## \
$C1####### ###### ##### ###### ############## \
$C1 ##### ##### ##### ####### ################ \
$C1 ##### ### ############ ################## \
$C1 ###### ###### ########## ####### ####### \
$C1 ##### ############## ####### #### \
$C1 ##### ### ######### ######## \
$C1 ####### ############# ############ \
$C1 ############### ################# \
$C1 ##### ######################### \
$C1 #################################### \
$C1 #################################### "
#define ASCII_NVIDIA_L_V2 \
"$C1 #################################### \
$C1 #################################### \
$C1 ##### ########################## \
$C1 ######### ###### ###################### \
$C1 ###### ########### ################### \
$C1 ####### #### ####### ################# \
$C1 ####### ###### # ###### ############## \
$C1####### ###### ##### ###### ############## \
$C1 ###### ##### ##### ####### ################ \
$C1 ##### ### ############ ################## \
$C1 ###### ##### ########## ####### ####### \
$C1 ##### ############# ####### #### \
$C1 ##### ### ######### ######## \
$C1 ###### ############# ############ \
$C1 ######### ################# \
$C1 #### ######################### \
$C1 #################################### \
$C1 #################################### \
$C1 \
$C2 @@@@@@@@@ @@@ @@@ @@@ @@@@@@@@@ @@@ @@ \
$C2 @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@@ \
$C2 @@@ @@@ @@ @@ @@@ @@@ @@ @@@ @@ @@ \
$C2 @@@ @@@ @@ @@ @@@ @@@ @@ @@@ @@ @@ \
$C2 @@@ @@@ @@ @@ @@@ @@@ @@@ @@@ @@@@@@@@@@ \
$C2 @@@ @@@ @@@@ @@@ @@@@@@@@@ @@@ @@@ @@@ "
#define ASCII_NVIDIA_L \
"$C1 ############################## \
$C1 ############################## \
$C1 ;: '######################## \
$C1 :cclloo ,:;. ################### \
$C1 :cloc :ooollcc: '############### \
$C1 :cloc ;:ccl lolc, ############# \
$C1.cloo: :clo. ;c: .ool; ########### \
$C1 :ooo: ,ooo :ool, .cloo. ;l########### \
$C1 ,ooo: ,ooc :ooooccooo. :####, o####### \
$C1 oooc. ool: :oooooo' ,clooo .#### \
$C1 .ool: .olc .:clooo :#### \
$C1 oolc, ;:::ccclooo. :######## \
$C1 oolcc:: ,:cclo######### \
$C1 l ;:::cclll############### \
$C1 .:: '######################### \
$C1 ccllooo;:;. ;################## \
$C1 cloc :ooollcc: :############### \
$C1 cloc :ccl; lolc, ;############ \
$C1.cloo: :clo ;c: .ool; ########### \
$C1 ooo: ooo :ool, .cloo. ;l########### \
$C1 ooo: ooc :ooooccooo. :#### l####### \
$C1 ooc. ool: :oooooo' ,cloo. #### \
$C1 ool:. olc: .:cloo. :#### \
$C1 olc, ;:::cccloo. :######## \
$C1 olcc::; ,:cclo######### \
$C1 :......o###################### \
$C1 :lll########################## "
typedef struct ascii_logo asciiL;
// -----------------------------------------------------------------------------------------------------
// | LOGO | W | H | REPLACE | COLORS LOGO (>0 && <10) | COLORS TEXT (=2) |
// -----------------------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------------------------
// | LOGO | W | H | REPLACE | COLORS LOGO (>0 && <10) | COLORS TEXT (=2) |
// ------------------------------------------------------------------------------------------------------
asciiL logo_nvidia = { ASCII_NVIDIA, 45, 19, false, {COLOR_FG_GREEN, COLOR_FG_WHITE}, {COLOR_FG_WHITE, COLOR_FG_GREEN} };
// Long variants | --------------------------------------------------------------------------------------------------|
// Long variants | ---------------------------------------------------------------------------------------------------|
asciiL logo_nvidia_l = { ASCII_NVIDIA_L, 50, 15, false, {COLOR_FG_GREEN, COLOR_FG_WHITE}, {COLOR_FG_WHITE, COLOR_FG_GREEN} };
asciiL logo_unknown = { NULL, 0, 0, false, {COLOR_NONE}, {COLOR_NONE, COLOR_NONE} };
asciiL logo_unknown = { NULL, 0, 0, false, {COLOR_NONE}, {COLOR_NONE, COLOR_NONE} };
#endif

View File

@@ -7,7 +7,7 @@
#include "../cuda/cuda.hpp"
#include "../cuda/uarch.hpp"
static const char* VERSION = "0.03";
static const char* VERSION = "0.04";
void print_help(char *argv[]) {
const char **t = args_str;