-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Logo arcade #6
Logo arcade #6
Conversation
sirin_arcades/clients/ui/src/main.c
Outdated
{ | ||
return 1; | ||
} | ||
static bool receive_message(void *busclientconnection) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not C style {
😢🥴🤢🤮
sirin_arcades/clients/ui/src/main.c
Outdated
return 1; | ||
} | ||
static bool receive_message(void *busclientconnection) { | ||
SoToClient received_message; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is wrong with alignments
return result; | ||
} | ||
|
||
int iteration = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why iteration not in game_frame as static
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is is also used in add_random_logo_pixels_changes function
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can pass value into it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is only one reason to have global var, it's when you want to store context for user but you don't want to malloc. It's not a case
|
||
bool is_client_id = false; | ||
int find_random_k(int n) { | ||
srand(time(NULL)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alignments
printf(", "); | ||
char logo[][96] = { | ||
#include "logo.txt" | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Split with enters differen blocks
SoToServerTransitBack *global_array = NULL; | ||
size_t global_array_capacity = 0; | ||
size_t global_array_length = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why you don't use vector here????
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
array must be deallocated at the end, idk how to achieve this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vec->append(vec, &ch, sizeof(char));
vec->release(vec);
return vec->buffer;
You may return buffer from vector and also from vector get size
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't get deallocation idea if you release you will rewrite the data. Anyway It should be done with vector. Please figure out
int temp; | ||
while (b != 0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
split block using new line
sirin_arcades/clients/ui/src/main.c
Outdated
|
||
int yeah = 0; | ||
switch (received_message.tag) { | ||
case DrawPixel: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't use tabs use 4 spaces instead
(In Makefiles tabs are fine) Fix all C and Rust
sirin_arcades/clients/ui/src/main.c
Outdated
received_message.draw_pixel.x, | ||
received_message.draw_pixel.pixel_t.color_pair_id, | ||
received_message.draw_pixel.pixel_t.character | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alignments
} | ||
} | ||
static int x = 0; | ||
static int starting_num = 0; // має бути тей що і x |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Translate or remove comment
.character = ch, | ||
.color_pair_id = RANDOM_COLOR_PAIR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alignments
eprintln!("promises are broken. (format must be like 131;112;). BUT YOU GAVE THIS ABOMINATION {:?}", buf.as_slice()); | ||
return null_mut(); | ||
} | ||
let got_width = i32::from_be_bytes([buf[0], buf[1], buf[2], buf[3]]); // потенційно зберігти отримане для подальшого оффсету |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Translate or remove
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix alignments everywhere. Fix incorrectly styled brackets. Check other comments
@@ -5,28 +5,27 @@ | |||
|
|||
#include <events_bus.h> | |||
|
|||
|
|||
SoToServerTransitBack *global_array = NULL; | |||
size_t global_array_capacity = 0; | |||
size_t global_array_length = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Get rid of this
No description provided.