Putting the 'role' back in role-playing games since 2002.
Donate to Codex
Good Old Games
  • Welcome to rpgcodex.net, a site dedicated to discussing computer based role-playing games in a free and open fashion. We're less strict than other forums, but please refer to the rules.

    "This message is awaiting moderator approval": All new users must pass through our moderation queue before they will be able to post normally. Until your account has "passed" your posts will only be visible to yourself (and moderators) until they are approved. Give us a week to get around to approving / deleting / ignoring your mundane opinion on crap before hassling us about it. Once you have passed the moderation period (think of it as a test), you will be able to post normally, just like all the other retards.

Vapourware Codexian Game Development Thread

Tyranicon

A Memory of Eternity
Developer
Joined
Oct 7, 2019
Messages
6,112
super-friendly rev split with devs
Sorry, what's that?

How much devs get paid per game. By default (unless they changed it) Itch gives devs 100% of revenue. You have to manually adjust it if you want to give Itch some money.

It's completely voluntary.
 

KafkaBot

Scholar
Joined
May 4, 2016
Messages
223

That being said, it's mostly for tech demos and porn. That's what's most popular on the site.
This is actually something that annoys me somewhat; Itch is essentially seen as some sort of early access platform or a place where you can get people to pay to beta test your game. Not too long ago a small studio released a game on Steam almost one year after putting it on itch.io because, according to them, "a Steam release" should be fully polished. They did that even though their game was released for free on both Itch and Steam.

It saddens me a bit, won't lie. Itch is a cool platform with nice features that could easily be a "GOG for indies", but no one really seems to take it all that seriously - not even its users.
 

Twiglard

Poland Stronk
Patron
Staff Member
Joined
Aug 6, 2014
Messages
7,241
Location
Poland
Strap Yourselves In Codex Year of the Donut
Had a fair bit of trouble implementing this, and it's not very efficient, math was never my strong suit. I should probably find some good geo/trig textbooks and brush up on the material, see if I can rewrite it later down the line to be more accurate and efficient.
Maybe try asking questions. This orientation, projection, inverse projection stuff can be done using elementary school math, just need to treat a few concepts as black boxes. If you're using orthographic projection, it's even easier and doesn't require trig.
 

baboogy

Literate
Joined
Dec 22, 2023
Messages
36
Testing textured ceilings/floors. Had a fair bit of trouble implementing this, and it's not very efficient, math was never my strong suit. I should probably find some good geo/trig textbooks and brush up on the materia
This isn't hard, especially if you're using Doom-style orthographic 2.5D rendering rather than perspective (then you don't need matrices and trig at all to project 3D -> 2D). Orthographic camera projection is so simple you only need elementary school math.

If perspective projection is what you want— the code to create a camera matrix from yaw/pitch/roll values you can treat as a black box rather than re-derive yourself. In order to compose rotations, just multiply the matrices. Then in order to project 3D to 2D, you simply multiply the vec4(xyz, 1) with the 4x4 matrix.

Of course it helps to prototype on the CPU at least some wireframe drawing.
I have a lot of trouble wrapping my head around / visualizing 3D spaces. The math doesn't come that easy to me either- I'm sure to some people it isn't hard at all :lol:

It's all currently done in software. No fancy matrix/vector math, just some geometry and trig. I'm sure it could be simplified even further than it currently is but I want to get it working right first.

Had a fair bit of trouble implementing this, and it's not very efficient, math was never my strong suit. I should probably find some good geo/trig textbooks and brush up on the material, see if I can rewrite it later down the line to be more accurate and efficient.
Maybe try asking questions. This orientation, projection, inverse projection stuff can be done using elementary school math, just need to treat a few concepts as black boxes. If you're using orthographic projection, it's even easier and doesn't require trig.
A lot of this I'm trying to derive/figure out myself, having fun doing it. But I definitely think I will have questions at some point. There are a few more rendering problems along these lines with perfect alignment of walls/floors that I don't 100% understand and if I really can't figure it out I'll have to come here and ask about it.

Orthographic projection is a bit different right, all same objects are the same height at any distance? I'm not super familiar with the concept. Skimming it online probably what I'm doing is closer to perspective projection since I'm casting rays.
 

Tyranicon

A Memory of Eternity
Developer
Joined
Oct 7, 2019
Messages
6,112
This is actually something that annoys me somewhat; Itch is essentially seen as some sort of early access platform or a place where you can get people to pay to beta test your game.

Itch does kind of market itself as a casual alternative to steam, which is part of the draw. Everything about working with Itch, registering, financials, uploading builds, etc is generally easier and more hassle-free. Also no 100 USD buy-in to release a game.

This means that devs with less overall experience flock to it, giving Itch a different reputation. I think this is slowly changing though. Itch is already considered a serious contender.
 

Twiglard

Poland Stronk
Patron
Staff Member
Joined
Aug 6, 2014
Messages
7,241
Location
Poland
Strap Yourselves In Codex Year of the Donut
Orthographic projection is a bit different right, all same objects are the same height at any distance?
Doom uses an orthographic projection, as lines in parallel in the world geometry are parallel on the screen regardless of the observer's position and orientation. It scales the sprite by its center's distance to the viewer. Scaling the entire sprite by a scalar number is sometimes called weak perspective projection. If you're drawing textures on the CPU using a 2.5D projection, the old-school scanline algorithm doesn't produce any distortion.

Maybe learning (in a non-algebraic way) about (yaw, pitch, roll) rotation (they're Tait-Bryan angles) and translation could help you get the necessary intuition. You can transform the position and orientation of the camera in arbitary order, as well as compose transforms together (sometimes they're called affine transforms). None of this requires understanding trig or what a cross product is.
 

Bester

⚰️☠️⚱️
Patron
Vatnik
Joined
Sep 28, 2014
Messages
11,146
Location
USSR
A game I programmed was released this year. I was only a lead programmer, the game director was the guy with the money and he wanted things done his way or the high way. Some of the game design wasn't good, I debated it with him until blue in the face, then eventually he couldn't take it anymore and became kinda hostile to any feedback I gave, so I stopped giving it. I managed to convince him to make some changes at the beginning, but it was a drop in the ocean.

Two things to say now that it's released.

1. You give a big portion of yourself to a project and then see streamers go "what a shit game man haha I'm uninstalling" - it's soul crushing.
I've heard people use the expression, but I never experienced it before. And it's not even your fault, and your couldn't have done anything else. The programming part you delivered did its job.

2. Whenever the design doc was lacking in details, I filled in the gaps with my own ideas of how things should be. There's definitely a portion of my game design in it.
Example: the streamers (I watched a lot of them for days) could never figure out how to split the stack in the inventory. They ended up convinced that it's unsplittable. It was terrible seeing this.
I did it like in World of Warcraft, but apparently that didn't translate at all. If we had playtesters, I would've seen it and changed it, but we were on a tight budget.
Looking at these design decisions (that are mine) falling flat on their face, big time, was another soul crushing experience. Not even humbling, but soul crushing.

To have a game you worked on super hard come out to "REVIEWS: NEGATIVE" on Steam is one of the saddest things you can get in any profession. I didn't understand how people could get emotional about their games before or talk so much about them 20 years later like Tim Cain does. Now I see.
 
Joined
Oct 26, 2016
Messages
1,916
A game I programmed was released this year. I was only a lead programmer, the game director was the guy with the money and he wanted things done his way or the high way. Some of the game design wasn't good, I debated it with him until blue in the face, then eventually he couldn't take it anymore and became kinda hostile to any feedback I gave, so I stopped giving it. I managed to convince him to make some changes at the beginning, but it was a drop in the ocean.

Two things to say now that it's released.

1. You give a big portion of yourself to a project and then see streamers go "what a shit game man haha I'm uninstalling" - it's soul crushing.
I've heard people use the expression, but I never experienced it before. And it's not even your fault, and your couldn't have done anything else. The programming part you delivered did its job.

2. Whenever the design doc was lacking in details, I filled in the gaps with my own ideas of how things should be. There's definitely a portion of my game design in it.
Example: the streamers (I watched a lot of them for days) could never figure out how to split the stack in the inventory. They ended up convinced that it's unsplittable. It was terrible seeing this.
I did it like in World of Warcraft, but apparently that didn't translate at all. If we had playtesters, I would've seen it and changed it, but we were on a tight budget.
Looking at these design decisions (that are mine) falling flat on their face, big time, was another soul crushing experience. Not even humbling, but soul crushing.

To have a game you worked on super hard come out to "REVIEWS: NEGATIVE" on Steam is one of the saddest things you can get in any profession. I didn't understand how people could get emotional about their games before or talk so much about them 20 years later like Tim Cain does. Now I see.
What game was it?
 

Bester

⚰️☠️⚱️
Patron
Vatnik
Joined
Sep 28, 2014
Messages
11,146
Location
USSR
What game was it?
Have you seen the shit I say on these forums? It's a decision I made early on, years ago - this account has to be anonymous.
I've doxxed myself to some people in private, but I hope this never comes back to bite me in the ass.
 

baboogy

Literate
Joined
Dec 22, 2023
Messages
36
Orthographic projection is a bit different right, all same objects are the same height at any distance?
Doom uses an orthographic projection, as lines in parallel in the world geometry are parallel on the screen regardless of the observer's position and orientation. It scales the sprite by its center's distance to the viewer. Scaling the entire sprite by a scalar number is sometimes called weak perspective projection. If you're drawing textures on the CPU using a 2.5D projection, the old-school scanline algorithm doesn't produce any distortion.

Maybe learning (in a non-algebraic way) about (yaw, pitch, roll) rotation (they're Tait-Bryan angles) and translation could help you get the necessary intuition. You can transform the position and orientation of the camera in arbitary order, as well as compose transforms together (sometimes they're called affine transforms). None of this requires understanding trig or what a cross product is.
Thank you, I'll read up on these concepts and try to get a better grasp on the visualization aspect.

That first part does sound more or less like what I am currently doing. I'm casting lines by screen width and checking tiles along the way, scaling their height on the screen (drawn outwards from the center) as the inverse of their distance from the player multiplied by the number that the sprite's size on the screen should be at a single unit distance from the camera. More or less what wolf3d does but I support a few more things it doesn't. Floor/wall pixels I draw as some calculation I did using the ratio of their angle to the player and FOV angle. Then entities are drawn in using a depth buffer in a similar way (sprite height is inverse of distance).
 

shihonage

Subscribe to my OnlyFans
Patron
Joined
Jan 10, 2008
Messages
7,163
Location
location, location
Bubbles In Memoria
Which video service is best for posting game engine videos w/music? Youtube is gestapo. I see people using Vimeo and Rumble, can you get shot down by copyright there?
 

NoMoneyNoFameNoDame

Artist Formerly Known as Prosper
Patron
Joined
Feb 22, 2022
Messages
924
A game I programmed was released this year. I was only a lead programmer, the game director was the guy with the money and he wanted things done his way or the high way. Some of the game design wasn't good, I debated it with him until blue in the face, then eventually he couldn't take it anymore and became kinda hostile to any feedback I gave, so I stopped giving it. I managed to convince him to make some changes at the beginning, but it was a drop in the ocean.

Two things to say now that it's released.

1. You give a big portion of yourself to a project and then see streamers go "what a shit game man haha I'm uninstalling" - it's soul crushing.
I've heard people use the expression, but I never experienced it before. And it's not even your fault, and your couldn't have done anything else. The programming part you delivered did its job.

2. Whenever the design doc was lacking in details, I filled in the gaps with my own ideas of how things should be. There's definitely a portion of my game design in it.
Example: the streamers (I watched a lot of them for days) could never figure out how to split the stack in the inventory. They ended up convinced that it's unsplittable. It was terrible seeing this.
I did it like in World of Warcraft, but apparently that didn't translate at all. If we had playtesters, I would've seen it and changed it, but we were on a tight budget.
Looking at these design decisions (that are mine) falling flat on their face, big time, was another soul crushing experience. Not even humbling, but soul crushing.

To have a game you worked on super hard come out to "REVIEWS: NEGATIVE" on Steam is one of the saddest things you can get in any profession. I didn't understand how people could get emotional about their games before or talk so much about them 20 years later like Tim Cain does. Now I see.
I know the feel man. Except I actually made everything in my game myself. The outcome however is the same. You need very good anti-retard tech and design decisions
or people will find a reason to get frustrated and quit.

Worse yet you probably can't go fix those issues can you? I can actually clean up my shit if i really wanted to.

All I can say is you can learn from this and go make another game. Also you're right not to tell codex about your game unless they are your target demographiic like Redaxium 2 was.
But a good way to end up poor is to make codexers a target demographic when you yourself are one. Didn't DU or tallytooting have some bizarre ascii game where you could explore it in,
but it was builtin to codex. But what happened? It's gone now, that's what happened. So either they realize we aren't a reliable bunch or that we can't be trusted to be a primary demographic.
 

Nathaniel3W

Rockwell Studios
Patron
Developer
Joined
Feb 5, 2015
Messages
1,241
Location
Washington, DC
Strap Yourselves In Codex Year of the Donut Codex+ Now Streaming!
Which video service is best for posting game engine videos w/music? Youtube is gestapo. I see people using Vimeo and Rumble, can you get shot down by copyright there?
You could license some music or use royalty-free music. There's tons out there. You might be surprised at how good the quality is and how cheap you can license music. You don't even need to go to those music libraries. The Unity Asset Store has tons that you can use.
 

shihonage

Subscribe to my OnlyFans
Patron
Joined
Jan 10, 2008
Messages
7,163
Location
location, location
Bubbles In Memoria
Which video service is best for posting game engine videos w/music? Youtube is gestapo. I see people using Vimeo and Rumble, can you get shot down by copyright there?
You could license some music or use royalty-free music. There's tons out there. You might be surprised at how good the quality is and how cheap you can license music. You don't even need to go to those music libraries. The Unity Asset Store has tons that you can use.
Youtube is an unsuitable service for anything serious, too many ads.
 

CryptRat

Arcane
Developer
Joined
Sep 10, 2014
Messages
3,572
I would have asked if you had considered instant movement as an option so teleporter scrolls are a welcome addition.
 

zwanzig_zwoelf

Graverobber Foundation
Developer
Joined
Nov 21, 2015
Messages
3,112
Location
デゼニランド
I would have asked if you had considered instant movement as an option so teleporter scrolls are a welcome addition.
Well, think of it this way -- the combat is automatic and time-based, so anything that changes the intended speed can become an exploit to weasel one's way through rooms full of monsters. That's why teleporter scrolls and paid fast travel became a thing -- they save time, but scrolls have to be purchased first (and price increases with each purchase), while other fast travel options require you to pay or find magic circles that you can use to return to town quickly.
 

baboogy

Literate
Joined
Dec 22, 2023
Messages
36
Spent some time upgrading and updating the jam game to the point where I thought I should put it on Steam to measure player interest in a simple Mordor-style crawler.

Awesome, looks like many of the things I personally wanted are making it in, I'll be picking it up for sure when it's out. You've got pretty impressive work ethic, do you work on these games full time? Or parcel out a set amount of hours each day?

I've been pretty slow development wise the last few weeks. Haven't done anything of note, been bogged down with my other job. Wondering how people find time to juggle both.
 

baboogy

Literate
Joined
Dec 22, 2023
Messages
36
You've got pretty impressive work ethic, do you work on these games full time? Or parcel out a set amount of hours each day?
Full-time, sometimes a few hours a day, sometimes crunching like crazy, depending on the situation.
Sounds like the dream for most people, being able to work on passion projects full time. I'm jealous, to be honest, keep up the good work :lol:

Though I suppose on the other hand it's probably a whole lot more stress than working for someone else, because you only get paid if you succeed, and not just paid for work in general regardless of if a project does well or busts.
 

zwanzig_zwoelf

Graverobber Foundation
Developer
Joined
Nov 21, 2015
Messages
3,112
Location
デゼニランド
You've got pretty impressive work ethic, do you work on these games full time? Or parcel out a set amount of hours each day?
Full-time, sometimes a few hours a day, sometimes crunching like crazy, depending on the situation.
Sounds like the dream for most people, being able to work on passion projects full time. I'm jealous, to be honest, keep up the good work :lol:

Though I suppose on the other hand it's probably a whole lot more stress than working for someone else, because you only get paid if you succeed, and not just paid for work in general regardless of if a project does well or busts.
Thanks. Yes, it's way more stressful than working for a company, but also more rewarding.

I started from zero with very little money and no experience, so I had to make do with whatever I could make or commission for low prices. The first few years were stressful, as my early work didn't sell enough to make big steps forward, and I wasn't experienced enough to be as efficient as I am now. Plus, sometimes I took contract work to stay afloat and continue making my games.

Right now I'm in a position where I can try different ideas and have enough experience and libraries to make a small-scale game in a few months, measure player interest and reception, and develop a bigger game if people like it.

Which is, frankly, great.
 

Bad Sector

Arcane
Patron
Joined
Mar 25, 2012
Messages
2,236
Insert Title Here RPG Wokedex Codex Year of the Donut Codex+ Now Streaming! Steve gets a Kidney but I don't even get a tag.
I think it also helps that you're not spending ages on every single game and are reusing assets between games (as far as i can tell).
 

zwanzig_zwoelf

Graverobber Foundation
Developer
Joined
Nov 21, 2015
Messages
3,112
Location
デゼニランド
I think it also helps that you're not spending ages on every single game and are reusing assets between games (as far as i can tell).
Yes, along with techniques, but it depends on the project's needs -- sometimes it makes zero sense to redo things from scratch, e.g. PSG sound effects from Ringlorn Saga were reused in Demon Lord Reincarnation and Dragon Ruins, with small additions.

I was apprehensive about it at first, but later realized that most people don't give a shit, so I stopped sweating over it and focused on what was important.

And yes, if you can afford to spend several years on a single game -- bully for you, but it's still a lottery. IMO, making games you want to make while staying lean and mean is key here.
 

As an Amazon Associate, rpgcodex.net earns from qualifying purchases.
Back
Top Bottom