Skip to content
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

Merged
merged 16 commits into from
Mar 24, 2025
Merged

Logo arcade #6

merged 16 commits into from
Mar 24, 2025

Conversation

DKotov29
Copy link
Collaborator

No description provided.

{
return 1;
}
static bool receive_message(void *busclientconnection) {
Copy link
Owner

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 { 😢🥴🤢🤮

return 1;
}
static bool receive_message(void *busclientconnection) {
SoToClient received_message;
Copy link
Owner

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;
Copy link
Owner

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

Copy link
Collaborator Author

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

Copy link
Owner

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

Copy link
Owner

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));
Copy link
Owner

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"
};
Copy link
Owner

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

Comment on lines 9 to 11
SoToServerTransitBack *global_array = NULL;
size_t global_array_capacity = 0;
size_t global_array_length = 0;
Copy link
Owner

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????

Copy link
Collaborator Author

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

Copy link
Owner

@dkushche dkushche Mar 20, 2025

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

Copy link
Owner

@dkushche dkushche Mar 20, 2025

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

Comment on lines 75 to 76
int temp;
while (b != 0)
Copy link
Owner

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


int yeah = 0;
switch (received_message.tag) {
case DrawPixel:
Copy link
Owner

@dkushche dkushche Mar 20, 2025

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

received_message.draw_pixel.x,
received_message.draw_pixel.pixel_t.color_pair_id,
received_message.draw_pixel.pixel_t.character
);
Copy link
Owner

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
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Translate or remove comment

Comment on lines 143 to 144
.character = ch,
.color_pair_id = RANDOM_COLOR_PAIR
Copy link
Owner

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]]); // потенційно зберігти отримане для подальшого оффсету
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Translate or remove

Copy link
Owner

@dkushche dkushche left a 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;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Get rid of this

@dkushche dkushche merged commit 893c8b6 into master Mar 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants