cave story is my favourite game and more or less the reason i got into programming so it has some influence over everything i make :D
quou
Creator of
Recent community posts
Minimal template I have: https://codeberg.org/quou/corrosion/src/branch/master/corrosion/ems_shell.html. Pass --shell-file whatever.html
to the compiler to specify what template file to use.
Go to the settings in Firefox and scroll down to “Performance” and make sure the box labelled “Use hardware acceleration when available” is ticked, to start with.
What kind of computer do you have? If it’s not very powerful (like a Chromebook or other low-cost laptop), that may be why it’s struggling.
If you’re using Linux or Mac OS setting up a C++ compiler is very easy. Pretty much all Linux distros have both GCC and Clang on their repositories for you to install with a simple command. On Mac OS you can type “clang” in a terminal and it will prompt you to install development tools, which will include the Clang compiler and some other tools.
Windows kind of sucks for development, but it is possible with a bit more difficulty. GCC and Clang tend to be kind of hard to set up - I have used Msys in the past and it has worked alright. Microsoft’s development tools are fine as long as you don’t care about using Microsoft’s shitware (I’m assuming you don’t if you’re using Windows xD). MSVC is their compiler and it tends to be pretty good for most purposes, all things considered. It’s faster than GCC in my experience, but the optimiser is a bit worse sometimes so it can produce slower code - not really anything you need to worry about though given you’re probably not going to be making programs complex enough where such minor differences will matter. You can install MSVC with Visual Studio which is a giant, hard to use, complex IDE that is full of bugs and hangs all the time. You can use it if you want to but you can also just compile from the command line with the cl
command once it’s installed.
A zoomer once came to Mozart and asked: “Mr. Mozart, how do I make a game from scratch, with all my own custom tools and make all of the art and sound for it?”
Mozart said: “That, I’m afraid, dear child, is impossible.”
“What!?”, replied the zoomer in apparent surprise, “But Mozart, you did it!”.
“Ah”, said Mozart. “But I didn’t ask how”.
Too many people ask how to start instead of just starting. It doesn’t matter where you start, just start. Make sprites in MS Paint, cobble them together with RPG Maker or something.
I think this particular technology is very similar to all-in-one generic game engines like Godot and Unreal Engine. They do lots and lots for you, but the person making the game is still responsible for making a lot of decisions about how a game comes together and it still takes a lot of technical knowledge to make a good game. Here, it still requires quite a lot of creative input to make a high quality drawing, it just takes less mechanical skill as you don’t have to draw details for every part of the picture you’re trying to create.
Hello, here’s the callstack:
#0 __GI__IO_fwrite (buf=0x814c212, size=1, count=6, fp=0x0) at iofwrite.c:37
#1 0x08064a6c in logic_end () at src/logic/logic.c:1248
#2 0x0805f8fa in performOneThing (n=0x8404940) at src/logic/logic.c:757
#3 0x08061abb in logic_update (dt=0.0163798276) at src/logic/logic.c:1076
#4 0x0804e8aa in main (argc=1, argv=0xffffd5b4) at src/fw.c:184
As far as I can tell, it seems to be failing to open the file handle to save the game, which is most likely due to denied permissions as that is how I prefer to run untrusted programs. Maybe you could make it print an error message so at least it’s easier to diagnose what the problem is?
Apologies for wasting your time.
I really liked this, particularly the animations of the hands doing stuff with the eggs. I played it for maybe 20 minutes, collected I think four of the eggs, but then the game crashed when I went around the corner on the road near where the green sign is. Everything started shaking and some kind of monster fell down behind me, then it faded to black and segfaulted.
Your best bet is probably to look for freelancers; Search around game development groups (such as game development-related hash tags on Twitter, or even itch.io) for people who are open for freelancing and who’s work you like the look of. Even if someone doesn’t explicitly say they’re a freelancer but you like their work, nothing’s stopping you from reaching out to them and asking if they’re interested.
Depends on the game. As a player, I hate web games if they take more than about 30 seconds to load up the first time, because it feels clunky and it clutters up the browser cache. If the game is made in a bloated engine like Unity or it has lots of fancy graphics, then you’re better off distributing it as native binaries. Otherwise web games are fairly convenient.