Author Topic: Operation: RECON  (Read 2413 times)

0 Members and 1 Guest are viewing this topic.

Offline natbudin

Operation: RECON
« on: February 20, 2022, 03:01:23 PM »
As a testbed for agikit development, I've reconstructed the source code for the Operation: RECON trailer and posted it to Github: https://github.com/nbudin/oprecon

Operation: RECON was a game project created by Randy Dykstra in the mid-90s.  He posted on the MegaTokyo message boards looking for programming help and I volunteered to do it.  We got to the point where we released a trailer, and eventually Randy brought in Leigh Ann Frey as a third member of the development team.

I eventually ended up stepping back from the project without really communicating it to my collaborators, which in hindsight I strongly regret.  The README for the Github repository goes into my side of the story in more detail, but the upshot of it was that I had a lot of complicated feelings around the project, but as a high schooler, I wasn't very good at expressing them at the time, and I wish I had been able to do so better.

Anyway, I hope this release brings back as many memories for you as it has for me!



Offline Collector

Re: Operation: RECON
« Reply #1 on: February 20, 2022, 06:19:57 PM »
You know that the original demo has a Wiki page.

http://agiwiki.sierrahelp.com/index.php?title=Operation:_RECON_Demo

Feel free to update it as needed.
KQII Remake Pic

Offline natbudin

Re: Operation: RECON
« Reply #2 on: February 22, 2022, 03:56:50 PM »
Updated with links to Github.  I thought about putting some version of my story on that wiki page and decided it probably wasn't appropriate, since the project was mostly Randy's brainchild and I'm unsure of what he and Leigh Ann ended up doing after I dropped out of contact with them.

Offline Collector

Re: Operation: RECON
« Reply #3 on: February 22, 2022, 05:11:55 PM »
If you can still contact him, perhaps you can get him interested in the project again.
KQII Remake Pic

Offline Cloudee1

Re: Operation: RECON
« Reply #4 on: February 23, 2022, 03:04:19 PM »
I remember that one, I even added a review of it way back when

https://sciprogramming.com/fangames.php?action=review&id=162
Halloween Competition Brass Lantern Prop Competition Groundhog Day Competition

Offline EricOakford

Re: Operation: RECON
« Reply #5 on: February 25, 2022, 01:57:06 PM »
I've been reconstructing the source for Residence 44 Quest, optimizing it in the process and upgrading the interpreter to AGI3. I did this in the process of researching the game for the SCI01 remake.

I may do the same for Space Quest: The Lost Chapter and Space Quest 0, for research into potential remakes.
My SCI templates
SCI0 SCI0.1 SCI1.0 SCI1.1
SCI2.1 planned

Offline Cloudee1

Re: Operation: RECON
« Reply #6 on: February 25, 2022, 06:05:34 PM »
Don't be in too big of a hurry on the SQ remakes, I've got one in the works that attempts to combine SQ1-3 and Replicated and TLC into a single playable game.
Halloween Competition Brass Lantern Prop Competition Groundhog Day Competition

Offline Collector

Re: Operation: RECON
« Reply #7 on: February 25, 2022, 06:23:32 PM »
SCI1.1?
KQII Remake Pic

Offline Cloudee1

Re: Operation: RECON
« Reply #8 on: February 25, 2022, 06:54:26 PM »
Pretty sure
Just played through it as far as I could from the beginning, Made it through 1 and 0, and ran into some dead ends in 2...
The way I have it planned, slightly reordered... starts with 1... taking the elevator at the end, takes you to a different level where instead of an escape pod, is the beginning of 0... at the end of that, blue chick drops you off at the beginning of 2... at the end of 2 we let TLC pick up from there, and at the end of TLC, the junk freighter beams up the junk ship from the planet to land us at the beginning of 3
« Last Edit: February 25, 2022, 07:01:05 PM by Cloudee1 »
Halloween Competition Brass Lantern Prop Competition Groundhog Day Competition

Offline Collector

Re: Operation: RECON
« Reply #9 on: February 26, 2022, 07:01:23 AM »
Pretty sure

I take it that you are just at the planning stage then, if you have not started coding it.
KQII Remake Pic

Offline Cloudee1

Re: Operation: RECON
« Reply #10 on: February 26, 2022, 07:21:46 PM »
Oh no, a ton of coding has been done...
SQ1 about 85%, need more sounds, and more looks but can be played all the way through
SQ0 about 75%, can be played all the way through, but a bit buggy in places
SQ2 about 80%, can't be played all the way through, but only missing a few elements that make that possible
TLD 0%, that things just massive and haven't delved into it too far yet
SQ3 about 45%, most rooms are present but overall, very fragmented
Halloween Competition Brass Lantern Prop Competition Groundhog Day Competition

Offline EricOakford

Re: Operation: RECON
« Reply #11 on: March 04, 2022, 07:36:34 PM »
Oh no, a ton of coding has been done...
SQ1 about 85%, need more sounds, and more looks but can be played all the way through
SQ0 about 75%, can be played all the way through, but a bit buggy in places
SQ2 about 80%, can't be played all the way through, but only missing a few elements that make that possible
TLD 0%, that things just massive and haven't delved into it too far yet
SQ3 about 45%, most rooms are present but overall, very fragmented

By TLD, I assume you're referring to TLC, The Lost Chapter. Yeah, that game is massive. I've been going through the game's decompiled code and reconstructing it. One thing I did was merge Logics 249-254 (the alien shuttle cutscene) into a single Logic 249, freeing up some space for dynamic logics for underwater (and removing redundant code from each room as a result), as well as a RoomInit logic that properly implements local and dynamic variables and flags.

Any views that aren't animated have been made into add.to.pics to save valuable memory.

I've been moving any variables and flags that don't need to be kept on room change into the 220-239 range.

Also, I've removed the leftover items from SQ2 (save for the glowing gem, since only it returns in SQ3), which Wilco Interactive confirms are useless. That freed up some space for reorganizing the inventory and icons so that they can all be looked at via show.obj, which wasn't properly supported at first.
My SCI templates
SCI0 SCI0.1 SCI1.0 SCI1.1
SCI2.1 planned

Offline Collector

Re: Operation: RECON
« Reply #12 on: March 04, 2022, 08:27:39 PM »
Might be nice if Replicated could be fixed to run on the AGI executable rather than NAGI.
KQII Remake Pic

Offline Collector

Re: Operation: RECON
« Reply #13 on: March 04, 2022, 08:29:52 PM »
Should we split the SQ chatter off into its own thread and leave this thread for the Operation: RECON trailer? It kind of took over this thread.
KQII Remake Pic


SMF 2.0.19 | SMF © 2021, Simple Machines
Simple Audio Video Embedder

Page created in 0.048 seconds with 23 queries.