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

ERYFKRAD

Barbarian
Patron
Joined
Sep 25, 2012
Messages
29,535
Strap Yourselves In Serpent in the Staglands Shadorwun: Hong Kong Pillars of Eternity 2: Deadfire Steve gets a Kidney but I don't even get a tag. Pathfinder: Wrath I'm very into cock and ball torture I helped put crap in Monomyth
zwanzig_zwoelf that sounds like a lot of fun for the developer. Just prepare yourself for the negative reviews that will come from the players who find this little feature of yours.
I'm not afraid of negative reviews.
Yeah it's the neutral ones that keep the dude awake at night.
 

beardalaxy

Educated
Joined
Jun 10, 2023
Messages
114
zwanzig_zwoelf that sounds like a lot of fun for the developer. Just prepare yourself for the negative reviews that will come from the players who find this little feature of yours.
I don't know, maybe it's because I AM a developer but seeing this in a game would be awesome, even if I did get a full party wipe I would be flabbergasted. Sounds like an awesome feature to me.
 

ERYFKRAD

Barbarian
Patron
Joined
Sep 25, 2012
Messages
29,535
Strap Yourselves In Serpent in the Staglands Shadorwun: Hong Kong Pillars of Eternity 2: Deadfire Steve gets a Kidney but I don't even get a tag. Pathfinder: Wrath I'm very into cock and ball torture I helped put crap in Monomyth
zwanzig_zwoelf that sounds like a lot of fun for the developer. Just prepare yourself for the negative reviews that will come from the players who find this little feature of yours.
I don't know, maybe it's because I AM a developer but seeing this in a game would be awesome, even if I did get a full party wipe I would be flabbergasted. Sounds like an awesome feature to me.
It is a good feature, but Crom knows there are enough retards out there who get upset if they lose, no matter how well deserved, the more so if they lose to a former teammate.
 

TheDeveloperDude

MagicScreen Games
Developer
Joined
Jan 9, 2012
Messages
555
I am using lwjgl 2.
Do I need to make my own mouse cursor?
Make an image and render at the position of the mouse cursor. And hide the normal (windows?) cursor.
 

Justinian

Arcane
Developer
Joined
Oct 21, 2022
Messages
285
Changed the scale on my game after playing another round of 20 mintues till dawn, and this feels much better. Weapon range matters more, you can see stuff coming from further away & plan accordingly, etc.

8jTDyx7.png

Adjusted character/loadout selection screen again. Generating waifus daughters is addicting but I really gotta stop because I have to draw and animate them the hard way, along with their weapons and traits. Aiming for 12-16 daughters to pick from in the final version. How many should I include in the demo? I'm thinking at least 3. Wanted 5, but I don't want people to get tired of the game and not buy the full version.

NEnZkY5.png
 

Justinian

Arcane
Developer
Joined
Oct 21, 2022
Messages
285
Oh great, I just had the insane idea to turn hell verses from just a fancy name for active spells to things you build out of short expressions. You pick one to start with then string more as you upgrade through a run.

So you might start with one that burns enemies around you, then add the ability to give yourself a boost for every enemy you burn, then tack on another effect when the boost ends.

I think I'll play around with the idea a little, lots of potential to do something unique. also lots of potential to overcomplicate the design when having a bunch of upgradeable spells would serve just fine.
 

TheDeveloperDude

MagicScreen Games
Developer
Joined
Jan 9, 2012
Messages
555
I made a software cursor as well.

Information about attributes and skills.
1. Make a separate manual or
2. make tooltip for every attrib+skill in the game?
3. other idea?
 

Justinian

Arcane
Developer
Joined
Oct 21, 2022
Messages
285
I made a software cursor as well.

Information about attributes and skills.
1. Make a separate manual or
2. make tooltip for every attrib+skill in the game?
3. other idea?
Tooltips are the most convenient for the player.
And making a manual isn't necessarily less work either, so it's my preferred option.
 
Joined
Dec 24, 2018
Messages
1,864
I slacked off for quite a while and didn't do much devving for a long time. Today I did a ton of both reworking engine components to make room for editor features, and start adding some of those features.
For purposes of helping avoid cache misses, to keep the size of sim tiles down, a new kind of tile was added, the meta tile. The meta tile is where editor / generation data will go: things that aren't used in the normal game simulation, but are tied to tiles. The meta tile unordered map lives on the simulation controller, and mirrors the sim tile unordered map that lives on each of the world simulation objects (A and B). The first piece of editor / generation data added is the development level, which is used for the generation of basic rural or urban (if applicable) population types. Next is to add tags for urban areas, so that the user can specify prevalence of, say, manufacturing sector, and the generator process can look at the generated populations, slice off an appropriately sized segment (typically gated by what percentage of the tile has been designated as urban), and convert them to specialist populations. That will be a lot of work to code the logic for, of course. But it was important to make room for these systems somewhere without bloating the simulation tiles.

Additionally, tile colour processing has been somewhat improved, including the way tile colours are updated, which leads to painting in the editor causing less framerate drops (but a bit of a delay before a batch of tiles updates).
I would also like to add an "eyedropper" function for editing, so whatever mode the user is in, they can hold alt, click, and whatever relevant data that tile contains will be sampled and used as the active setting for that mode.

EDIT: eyedropper added. Though I'm only partway through adding it for all editor functions, it does work fine for the ones added so far. More cleanup and conversion to using the std:: optional<std::uint32_t> for ids system.

I am pleased to note that SDL2, when a window loses focus, treats that as a "key up" event for any pressed keys, so for modifier keys that were held when the window was tabbed out (for example, the "alt" key used to alt-tab), those modifiers are released even though physically held, and you don't end up with them being latched on despite not actually being pressed when you bring the window back in focus. There are some game engines which have that bug / undesirable behaviour (needing to have a key released while in focus to recognize that it was released), Unreal for example (happens a lot with Satisfactory).
 
Last edited:

RobotSquirrel

Arcane
Developer
Joined
Aug 9, 2020
Messages
2,060
Location
Adelaide
2. make tooltip for every attrib+skill in the game?
Tool tip with Right-Click to then get even more information, this is how I'd do it. You'd have a brief summary and then says (Right Click to learn more) if the concept is a lot more complicated, The reason is that you have limited screen space for tool tips so its best if they're just brief. If you're doing the paradox thing where you write a literal essay in the tool-tip the text is going to end up off screen and it's annoying a simple right click to popup a window fixes that issue. Make sure you align the tool tip based on what side of the screen its on as well (take the screen size width divide by 2 anything under the number is left (tool-tip is therefore Right Aligned) anything above is right (tool-tip is therefore left aligned) this prevents the text going off screen you can also do it for height as well but try to limit how much text is in the tool tip. Having an encyclopedia in game can be useful if your mechanics are really complex that you have to do it for everything.
 
Joined
Dec 24, 2018
Messages
1,864
2. make tooltip for every attrib+skill in the game?
Tool tip with Right-Click to then get even more information, this is how I'd do it. You'd have a brief summary and then says (Right Click to learn more) if the concept is a lot more complicated, The reason is that you have limited screen space for tool tips so its best if they're just brief. If you're doing the paradox thing where you write a literal essay in the tool-tip the text is going to end up off screen and it's annoying a simple right click to popup a window fixes that issue. Make sure you align the tool tip based on what side of the screen its on as well (take the screen size width divide by 2 anything under the number is left (tool-tip is therefore Right Aligned) anything above is right (tool-tip is therefore left aligned) this prevents the text going off screen you can also do it for height as well but try to limit how much text is in the tool tip. Having an encyclopedia in game can be useful if your mechanics are really complex that you have to do it for everything.

Yeah, do right click. Don't do that nu-paradox shit where you have to hover your mouse for a specified time, that's always aggravating to the user. They should be able to bring the expanded tooltip up immediately with one click, not have to sit and wait.
 

zwanzig_zwoelf

Graverobber Foundation
Developer
Joined
Nov 21, 2015
Messages
3,161
Location
デゼニランド
F0OojY_XsAIyRXq


Finally finished the game and sent it to a few testers to sanity-check the whole thing.

Time to start working on that trailer thing everyone's talking about and catch zzzs for a month or so.
 

beardalaxy

Educated
Joined
Jun 10, 2023
Messages
114
Fixed some bugs, ironed out some inconsistencies, and fixed lag on the file select screen while also making it a little cleaner. Now there are only 16 save files but they fit nicely into the window, and I can't imagine people needing more than that. If you do, well, copy and paste is your friend I suppose.

Finished a side quest about delivering some supplies to a camp in need of them. It's not all that it seems, though...

I also started working on another side quest where there is a man about to attempt offering his spirit to the Elder Tree. You can do meditative yoga with him that grants some health benefits.
 

zwanzig_zwoelf

Graverobber Foundation
Developer
Joined
Nov 21, 2015
Messages
3,161
Location
デゼニランド
F0OojY_XsAIyRXq


Finally finished the game and sent it to a few testers to sanity-check the whole thing.

Time to start working on that trailer thing everyone's talking about and catch zzzs for a month or so.
when is release?
Later this month. I'm going to start working on the trailer tomorrow -- most of the material has been recorded during the development, so it won't take too long.
 

zwanzig_zwoelf

Graverobber Foundation
Developer
Joined
Nov 21, 2015
Messages
3,161
Location
デゼニランド
Why does the camera not point forward?
It's slightly angled to help the game look less 'flat', the decision was somewhat inspired by old Macromedia Director games and The Dark Spire.

Initially, I thought about doing it to make screenshots look a bit more interesting, but I posted a short clip as a joke and noticed that people were feeling uneasy about it -- which is exactly what I needed.
 

beardalaxy

Educated
Joined
Jun 10, 2023
Messages
114
Aaand the trailer is up. Sorry for tripleposting, shit's moving faster than my own shit after two coffees and chainsmoking session.


It's looking really good, I agree that the slight off-centered camera gives a strange, uneasy feeling. I like the aspect of having to choose who opens chests and takes potions too, that seems like a really unique feature but I haven't played a whole lot of games like this so maybe it's one of those "what was old is now new" kind of things haha.
 

Abu Antar

Turn-based Poster
Patron
Joined
Jan 19, 2014
Messages
14,024
Enjoy the Revolution! Another revolution around the sun that is. Shadorwun: Hong Kong Divinity: Original Sin 2 Pillars of Eternity 2: Deadfire Pathfinder: Wrath I'm very into cock and ball torture I helped put crap in Monomyth

Nathaniel3W

Rockwell Studios
Patron
Developer
Joined
Feb 5, 2015
Messages
1,302
Location
Washington, DC
Strap Yourselves In Codex Year of the Donut Codex+ Now Streaming!
Torn between side projects, mega projects, and mega mega projects. I still haven't published a game in 10 years.
How much time can you put towards your projects? What do you know how to do? You want to do some free labor for me? Then you'll have worked on a released game and I'll put your name in the credits.

Edit: If you want, you could use all of Septaroad Voyager's assets to make a new campaign. Tell your own story. What would you think of that?
 

Tavernking

Don't believe his lies
Developer
Joined
Sep 1, 2017
Messages
1,256
Location
Australia
Torn between side projects, mega projects, and mega mega projects. I still haven't published a game in 10 years.
How much time can you put towards your projects? What do you know how to do? You want to do some free labor for me? Then you'll have worked on a released game and I'll put your name in the credits.

Edit: If you want, you could use all of Septaroad Voyager's assets to make a new campaign. Tell your own story. What would you think of that?
You'll pay me a salary right?
 

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