Skip to content
Sign UpLog In
Profile icon

Hugh Jass

@Arabica
My GitHub is github.com/PeriodGamingYT. I'm more active on there. Just kidding I lied.
  • BasicEngine

    Cover page
    Made with Python

    Basic Game Engine.

    Recent comments (0)
Repls
Community
Arabica
Arabica
shared a Post
2 years ago
TerrariaRipoff
I made a Terraria Ripoff in a week! Nothing too special, I made it in like a week.
TerrariaRipoff
HTML, CSS, JS
happycoder887
happycoder887
it is not a rip off. it is a MASTER PICE!!!!1 year ago
Arabica
Arabica
shared a Post
2 years ago
It is incomplete and I am still working on it. I've managed to get a few things done. Go ahead and fork it and make your own creation!
BasicEngine
Python
ChristineMoore
ChristineMoore
Thank you for sharing this amazing python project about Game Engine development. I hope it will be an inspiration to many people who are trying to develop such projects. Actually, I am a student of computer science who has passionate about game development. I often play some online pokies games from this resource https://pokieslab.com/free-online-pokies/ where they reviewed top Australian pokies that can help to win real money for players. I m also trying to learn python to create such types of 10 months ago
Arabica
Arabica
shared a Post
2 years ago
This snake using C & C++ and only using the standard library!
Snake
C++
DynamicSquid
DynamicSquid
Nice! But why doesn't the program just stop and wait for the user to press a key? I don't see any threads here...2 years ago
Arabica
Arabica
shared a Post
3 years ago
If you want a guess a number game, (to the ten thousands). Then this post is for you! This relies on an asm() command called "rdtsc". Which is used fo
An RNG in C
C
wynnepaton
wynnepaton
Hi, A really stupid question here! Does any of the code specify the range of the random number generated? Thanks, Catherine2 years ago
Highwayman
Highwayman
I stand corrected lol.3 years ago
Arabica
Arabica
shared a Post
4 years ago
C Language, using the newline trick, worked before, now it does not at all!
mwilki7
mwilki7
Which repl are you referring to? If you are talking about the Interpreter (in C) https://repl.it/@Arabica/CCP-001 try: #include /* For printf() */ #include /* For tokenizing and comparing */ #include /* For getline() */ int main() { printf("Enter character or somethin idk\n"); // Create input with size 50 char input = (char)malloc(sizeof(char) * 50); // Get input (maximum 50 characters) fgets(input, 50, stdin); // Make sure terminator is inside string input[504 years ago
Arabica
Arabica
shared a Post
4 years ago
One thing is that I am having buffer overflow for no reason at all. Even "%c" overflows.
CCP 0.01
C
Klokat
Klokat
I've changed your code a bit. First and foremost char input[] = "" won't allocate any space I think. I think I fixed the while loop as well. I don't know where you wanna go with this after. But good luck! Also check your twitch chat for help next time! :D #include /* For printf() */ #include /* For tokenizing and comparing */ #include /* For getline() */ int main() { char input[256]; fflush(stdin); scanf("%s", input); /* const char *delim = " "; const char *delim1 = "("; const char *de4 years ago