Welcome, Guest. Please login or register.

Login with username, password and session length

 
Advanced search

1411196 Posts in 69314 Topics- by 58380 Members - Latest Member: feakk

March 19, 2024, 12:31:56 AM

Need hosting? Check out Digital Ocean
(more details in this thread)
TIGSource ForumsCommunityDevLogsAo
Pages: [1] 2 3 ... 41
Print
Author Topic: Ao  (Read 93801 times)
oahda
Level 10
*****



View Profile
Ao
« on: February 10, 2019, 06:28:34 AM »

Ảo


Time travel detective work!





Premise and gameplay have changed a bit since the initial updates, so it's best to look at the newest posts. Smiley

This detective story sees you travelling back in time through witness accounts of the moments leading up to the flooding of your small seaside town. By examining the past with full control over the flow of time, you deduce where to find survivors in the present to rescue and interrogate. Extract nodes of information at any point in time and space and connect them to create new leads, then present them to your fellow characters in order to progress in both timelines.

GIF



Screenshots





Mockup

Working out how the player will deal with information and connections to progress through the game.



Prototype

Tried to hack together some of the basics without fancy graphics just to demonstrate.



Concepting

Painted with actual watercolour!



« Last Edit: December 26, 2022, 03:33:31 PM by Prinsessa » Logged

ProgramGamer
Administrator
Level 10
******


aka Mireille


View Profile
« Reply #1 on: February 10, 2019, 09:15:06 AM »

Obviously, posting to follow!
Logged

noomnau
Level 0
**


let's do this, quick and painful!


View Profile WWW
« Reply #2 on: February 10, 2019, 09:17:05 AM »

Great shaded art, i like it very much!
Logged

Kernel Bug - action platformer\runner\adventure videogame https://forums.tigsource.com/index.php?topic=47957.0
qMopey
Level 6
*


View Profile WWW
« Reply #3 on: February 10, 2019, 01:41:21 PM »

Following Smiley
Logged
amasinton
Level 1
*



View Profile
« Reply #4 on: February 10, 2019, 03:11:06 PM »

Very nice.  Love the watercolor shader.  

The idea of investigating your own demise is particularly intriguing.  I look forward to watching your progress!
« Last Edit: August 12, 2020, 07:26:36 PM by amasinton » Logged
oahda
Level 10
*****



View Profile
« Reply #5 on: February 11, 2019, 11:50:23 AM »

Thanks, everyone! <3



Want to keep my main post up to date, so I'm dumping the original post here:



0

I'm kicking the thread off with a GIF of actual gameplay, currently in its humble beginnings with a camera controller (I wrote a tutorial!) and character movement and some animation blockouts having been my focus during the last few weeks:



« Last Edit: March 12, 2019, 01:16:51 AM by Prinsessa » Logged

Guntha
Level 0
***


View Profile WWW
« Reply #6 on: February 11, 2019, 12:56:27 PM »

I have to admit I'm more sensible to projects using a custom engine, probably because it's the path I advocate for :p

Can't wait to see the mechanics and more scenery using that watercolor shader.
Logged

ChrisLSound
Level 1
*



View Profile WWW
« Reply #7 on: February 12, 2019, 10:22:52 AM »

Awesome! Following Smiley
Logged

I make video/tabletop games and music!
Zorg
Level 9
****



View Profile
« Reply #8 on: February 23, 2019, 09:48:16 AM »

Following.  Smiley





Edit: May i ask what happened to that submarine and cat game?
« Last Edit: February 23, 2019, 10:06:02 AM by Zorg » Logged
oahda
Level 10
*****



View Profile
« Reply #9 on: February 24, 2019, 05:03:57 AM »

<3

May i ask what happened to that submarine and cat game?
Cat game was always meant as a collaboration between me and my partner and when she wasn’t really feeling up to it anymore it kind of stopped.

This new game is basically a continuation of the submarine game, the idea just changed so much over time that I wasn’t able to conceive it in the same way anymore. And it was sort of not based on my own premise initially to begin with, so at some point I had to ask myself why I kept working on that out of principle instead of really making what I would actually like to play myself... And at this point I finally feel like I have the skillset necessary to do so! So I’m really excited about this, it feels “me” more than any previous large project I’ve ever worked on. Doing all those LD games over the years now I think I’ve found my style...
Logged

oahda
Level 10
*****



View Profile
« Reply #10 on: March 02, 2019, 04:06:14 AM »

1

Greyboxing and pathfinding

After almost two weeks of downtime I've had a very productive current week!



Here's what I've been doing:

  • Modelling a little greybox world with uneven terrain to start testing slopes and navigation, and adding support for mesh colliders to the physics system so that this model itself can be used as a collider for the character to interact with and walk on.

  • Adding the Recast and Detour libraries for navmesh generation and pathfinding respectively to my engine. A navmesh (navigation mesh) is the geometry that defines where and how an area can be traversed by a pathfinding algorithm, and I'll be using this to move NPC's around without walking through walls and so on after they've dynamically decided where to go.

  • Blocking out code for NPC's to be going about their individual business using pathfinding to find their way around the greybox mesh, using a blocky test model. A start point and an end point can be used to calculate a path on the navmesh that only traverses valid geometry, respects terrain elevation and so on! Different parts of the mesh can be tagged with a cost so that the NPC prefers to walk on lower cost triangles, so they won't wade through water if they can cross a bridge instead for example.



Above, in order: collision mesh, navmesh and a path calculated on the navmesh from A to B!

« Last Edit: March 12, 2019, 01:22:48 AM by Prinsessa » Logged

amasinton
Level 1
*



View Profile
« Reply #11 on: March 04, 2019, 08:29:33 PM »

An interesting premise AND you're building your own engine!

My goodness, a true polymath!

It's fun watching this develop; it seems like a very satisfying project - art AND code - something to satisfy both halves of the brain.
Logged
oahda
Level 10
*****



View Profile
« Reply #12 on: March 06, 2019, 01:18:44 AM »

Wow, thank you! Embarrassed
Logged

oahda
Level 10
*****



View Profile
« Reply #13 on: March 08, 2019, 03:21:03 AM »

2

Time loop and NPC schedules

This week I've been porting over a system, that I'd already designed for an earlier prototype, to my own engine: scheduling events for NPC's over the course of the game's time cycle in a way that can be sped up, slowed down and rewound by the player!



Here both NPC's walk along a path, stop for five seconds at the foot of the slope, and then walk along another path, in opposite directions.

As a little extra touch, at the end of the GIF you can see the colour of the sky change over the course of three hours as time is sped up by a factor of a thousand. I'm not sure yet how many hours the player will have to explore town before the disaster strikes, but I do know that I want it to play out in real time like this.

The player is going to be able to make NPC's change their course of action by revealing visions to them through photographs, which is going to have somewhat of a "controlled butterfly effect" as their different choices may in turn affect those of others, and so on, but not to the point where it becomes impossible to keep up for the player, and not to the point where I as the game designer lose control over the game's writing~

« Last Edit: March 08, 2019, 05:33:37 AM by Prinsessa » Logged

ProgramGamer
Administrator
Level 10
******


aka Mireille


View Profile
« Reply #14 on: March 08, 2019, 04:55:58 AM »

As someone who loved Majora's Mask for the NPC quests in town, this is looking very promising! Seems like you're going to put your own spin on it though, which I'm even more excited about. I'll be patiently looking forward to more progress on this!
Logged

oahda
Level 10
*****



View Profile
« Reply #15 on: March 08, 2019, 06:29:40 AM »

Thank you! In a way I suppose this will be like a mega version of Anju & Kafei extrapolated into a whole game. Cheesy And yes, while the core mechanic is shared with MM, my hope is to explore what else can be done with it in order to make something hopefully quite different. I've always thought it's a super interesting premise!
« Last Edit: March 08, 2019, 10:15:21 AM by Prinsessa » Logged

oahda
Level 10
*****



View Profile
« Reply #16 on: March 14, 2019, 11:13:23 AM »

3

Photography mechanic

Somewhat incomplete but good enough for me to move on to the next system for now, se here's an update! I've been working on letting the player snap photos:



  • Added a first person controller in addition to the third person one, with a different field of view for what the character's polaroid camera sees.

  • Implemented a barebones algorithm to detect who or what is in the photo and whether they can be identified, which will fail if not enough of them is in the frame, if they are facing the wrong way, if something is in the way, if they are too far away and so on.

  • Rendering the actual photo to a separate image that always has the same 4:3 aspect and resolution regardless of what the screen looks like on whatever system/settings the game is running on. Plan on updating the first person view to match, with letterboxing as necessary, and to display in real time what can be seen so that the player doesn't have to be unsure if they were able to capture what they wanted in a photo.



Logged

ChrisLSound
Level 1
*



View Profile WWW
« Reply #17 on: March 14, 2019, 12:42:50 PM »

It's been awesome watching progress on Twitter. Truly impressive work!

I really like the camera mechanic, but I'm curious how exactly it'll be used in gameplay. What's the purpose of taking pictures from a game mechanic standpoint?
Logged

I make video/tabletop games and music!
oahda
Level 10
*****



View Profile
« Reply #18 on: March 14, 2019, 01:47:59 PM »

Thank you so much! ;v;

Alongside the time system, photography is basically one of the two main mechanics of the game. Since you're like a ghost that other people can't see, you can't interact with them directly. Instead you can take photos of people, places or situations of interest and then "possess" people with visions of what's in these photos to make them react (and thereby change their course of action during that cycle of the time loop) or allow you to extract information in the form of memories, which is what this game is all about, unlocking new memories to get access to more information and more places; the town itself is unlocked piece by piece as you get access to memories of what went on that day from people who were there to see it! c:
« Last Edit: March 15, 2019, 02:53:18 AM by Prinsessa » Logged

ChrisLSound
Level 1
*



View Profile WWW
« Reply #19 on: March 14, 2019, 05:35:07 PM »

Oh that sounds really interesting! How open-ended will it be? Multiple ways to progres, or maybe something more linear?
Logged

I make video/tabletop games and music!
Pages: [1] 2 3 ... 41
Print
Jump to:  

Theme orange-lt created by panic