Jump to content

postpostdoc

Members
  • Posts

    21
  • Joined

  • Last visited

About postpostdoc

  • Birthday 09/01/1976

Profile Information

  • Custom Status
    @PRGE
  • Gender
    Male
  • Location
    somewhere near the Canadian-USA border
  • Currently Playing
    IntyBASIC
  • Playing Next
    IntyBASIC with Keyboard

Recent Profile Visitors

1,626 profile views

postpostdoc's Achievements

Space Invader

Space Invader (2/9)

54

Reputation

  1. The Intellivision Music Synthesizer plays Breakout! The keys act as absolute position inputs, so if you want to go the rightmost position on the screen, then you press the rightmost key on the synthesizer. The black keys move the paddle a little bit higher up the screen, and the white keys move the paddle back down to their original height. The graphic along the bottom of the screen shows which key (or pair of keys) you are pressing at any moment. I'd call this a "work in progress" but it is more of a quick demo that I wanted to share before heading to PRGE. The .rom is available to download, but be warned that I haven't tried it on real Intellivision yet and the footage is done with jzintv. I'll also attach a .rom that you can use to test an Intellivision Music Synthesizer to see if it has any issues with the keys. The source code for both projects is mostly written in IntyBASIC, and the source code for the testing program is attached and is also available here. Thank you to @intvnut for posting the basis for this project (including IntyBASIC callbacks) in this post. BreakoutSynthVideo.mp4 breakout_demo.rom synth_kt.rom synth_test.zip
  2. Maniac is a 10 episode mini-series that premiered on Netflix on September 21st, 2018. Although seemingly set in modern times, the technology in the show has an interesting retro (and often dystopian) aesthetic as discussed here. Tonight I was watching Episode 9 and spotted an Aquarius Mini Expander and 4K Memory Cartridge! The image of the Mini Expander also has a second (unknown) cartridge and the tips of two controllers. A couple of pictures and a short clip are attached, and I'll include a little bit of additional information in spoiler text below. There seems to be another thread on AtariAge about Maniac, but I thought that it would be more fun to post this small detail in this forum. ManiacClip.mov
  3. While the Intellivision Neural-Net Super-Computer is processing the contest results, I have had some time to continue working on the flip phone menu. The animated gif shows that the songs and volumes can be changed from the new music menu. The player can even save time by using the INTY phone's "media keys" (ie keypad buttons 1, 3, 7, 9) and these keys work regardless of which state the phone is in. The phone also flips open and closed and scrolls on and off the screen, although it seems that there are still a few graphical glitches that I need to sort out. This is probably the last update I'm going to make to this little side project before integrating it into the main MazezaM game ... unless someone can convince me that the flip phone needs to have a version of Snake for authenticity The attached rom features three songs that have been converted from other old-school games using decle's MusoCheat. Bonus points if you can identify any of the three songs Flip.rom
  4. In the spirit of anxiously checking the time, here is a quick update on cell phone usage in MazezaM. Instead of a standard in-game menu, our hero Hannah will pull out her trusty INTY flip phone and make selections on it. In a classic case of over-engineering, the phone also keeps track of the time throughout the game, as well as its battery charge, and the reception. The attached video shows the time sped up to 1 minute per second, so that you can watch the icons updating more quickly. Thank you to nanochess for the IntyColor application that has helped speed up these cell phone developments. I'm still working on the music menu, but a big thank you in advance to decle's MusoCheat which helped me create some adequate in-game music. A friend of mine with actual musical talent has also been doing some musical compositions for the game, and I'll save all of those updates for next time.
  5. In the spirit of Intellivision's "telephone" controllers, I have been working on simulating cell phone texting using IntyBASIC. The animated preview below is a reimagining of the first storyboard in MazezaM. In the above clip Otto types out an SOS on his touch screen phone -- complete with accurate thumb typing time delays! -- and the main character Hannah replies. In later cut scenes I'm hoping that Hannah's T9 flip phone will also make an appearance. This will all take a little while longer to work into the actual MazezaM game, but I thought I'd share a little preview in the meantime. Source code and .rom are also attached. PS You can also speed up Otto's typing by pressing any of the controller buttons once or twice. texting.rom texting.zip
  6. A manual is attached below as manual.txt. If you visit the git repository then the manual will be rendered nicely as a markdown file. A screen capture of the main controls is also given as an image below for convenience. The latest rom is Version 1.1 and it has a few minor fixes. The manual includes the basics that you would expect (e.g. story and controls) as well as some less likely material, including the history of MazezaM and its computational complexity. At the risk of getting too nerdy (maybe not an issue on this subforum?!?) the puzzle is PSPACE-complete. PSPACE is a complexity class of decision problems that are "solvable in a polynomial amount of space with respect to the size of the input" and PSPACE-complete means MazezaM is among the hardest problems in this complexity class. In particular, it is likely to be harder than all puzzle games that are NP-complete, where NP means "solvable in polynomial-time using non-determinism". Links to a couple of papers on the subject are included, and feel free to post here or send me a message if you have any questions about that. In particular, this paper will help anyone stuck on the later SOS levels . As some personal background, I teach courses in theoretical computer science at a small college, and MazezaM is a puzzle that I had previously studied before implementing it for this contest. I should also mention that I haven't finished at least 10 of the puzzles in this game, so kudos if you do! And my apologies for not including a manual earlier -- the game is already hard enough! manual.txt MazezaM_V11.rom
  7. You can also find the update under V0.10 in the Releases tab of the corresponding git repository https://src-code.simons-rock.edu/git/awilliams/MazezaM_SOS.
  8. Thanks guys, that totally makes sense! re: link to source code. The link should be back up now https://src-code.simons-rock.edu/git/awilliams/MazezaM_SOS. We run our own git server at our college, but the uptime is much lower than 100% largely due to my incompetence in the area
  9. Here is a slightly squished version of the MazezaM.rom file down to 34kb from 42kb. This is related to a post about .rom size I just made on the IntyBASIC compiler v1.2.9: The good things are now better! thread. I also took the opportunity to fix a few small bugs and make a few small improvements. MazezaM_V10.rom
  10. I have a question about .rom size. Near the end of the IntyBASIC Programming Contest my MazezaM.rom file started getting close to 42k and it wouldn't load in jzintv. When this happened I would usually try to trim some code or move the various "asm org" commands around until it would work with jzintv again. After the contest I returned to this issue and started getting a bit confused. In my program I only used the following segments: Segment 0 (by default) (8kb) Segment 1 (asm org $A000) (8kb) Segment 2 (asm org $C040) (approx 16kb) But these segments have a total size of 32kb and yet my .rom file was 42kb and seemed to work. Was my .rom file clobbering other areas of memory? Would it have worked if I had put it only a flash cart (like LTO Flash)? I was only working with jzintv and never seemed to have a problem, but now I am a bit suspicious that I wasn't really creating a valid .rom file. The manual for IntyBASIC does give a pointer on how to investigate the memory locations that are used: However, I'm still a bit of a noob and don't really know what I'm looking at when I open the resulting .list file . I also skimmed through Oscar's new book (so good! ) but that didn't seem to resolve my confusion. PS This issue also motivated me to start squishing the MazezaM.rom file and I'll post a new 34kb version on the MazezaM thread.
  11. Before the deadline I was able to add a twist that I had been planning for a little while. In a "MazezaM SOS" level the player must rescue another player who is trapped inside of maze. Then the player must bring themselves and the rescued party to the exit. In these levels you control the trapped player using the keypad, so it takes advantage of the Intellivision controller. In total I added 5 SOS levels to go along with the original set of 30 Classic levels. The motivation for SOS levels came from everyone's comments on developing a story. I tried to think of a theme that could fit an abstract puzzle like MazezaM, and search and rescue seemed appropriate. The fact that "SOS" is a palindrome was an added bonus To go along with the SOS theme I added a more complete story to the game. Every 6 levels you will confront an SOS level and more of the story will be revealed. I'm not particularly pleased by the presentation of the story, but I ran out of time. Speaking of time, there were still a number of things that I wished I was able to do before the deadline (e.g. sound!), but I'm sure that is true for all of the other contestants too. Thank you for a great contest! PS The source code for my submission can be found at https://src-code.simons-rock.edu/git/awilliams/MazezaM_SOS (click on Releases and then Version 0.9 for the version submitted via email). MazezaM_V9.rom
  12. re: sound. Yes, I definitely intend to add some sound. re: story. Stay-tuned! Thank you for your continued feedback!
  13. re: HUD. I agree that the count-down counter is not the most intuitive, but I do like the general idea of showing the number of moves remaining for each accomplishment. The HUD could be easier to parse if I remove the stone pattern from the top row, so I may end up doing that. Although it looks like there is a lot of empty space on the screen, this actually isn't true on the later levels. Some of the later levels are quite tall. For example, Level 17 has 11 rows. If you add the bottom and top rows of the wall, then that puts you at 13 rows which is one too many since my graphics are all card-based (except on the Level Select screen which uses color squares mode). On Level 17 I don't display the bottom wall, and the top wall is covered by the HUD. Some of the later levels are quite wide. The maximum width is 16 columns. If you add the left and right walls, then that puts you at 18 columns which only leaves two blank ones.
  14. re: controls. When you are playing a level you can reset your progress with the bottom-left button (i.e. B1). Then if you press the same bottom-left button again (i.e. B1 again) then you are returned back to the Level Select screen that you mentioned. I should have explained that in my previous post, so thank you for mentioning the issue!
  15. I have been working pretty consistently on the game for the past week and have two big updates. The level unlocking and achievements are now implemented. The player earns 0, 1, 2, or 3 stars on each level depending on how many moves they make. Move counters have been added to the heads-up display. A password system that saves your achievements is now implemented. You can also press one of the top buttons (i.e. B0) during any level to bring up a "pause" screen. This screen will give you information on the achievement requirements for the given level, and your current password for all of your achievements. You current password can also be found in the new Password option off of the main menu. To navigate through the various screens you can generally use the bottom-right button (i.e. B2) to move forward and the bottom-left button (i.e. B1) to move backwards on either controller. On my installation of jzintv this means Ctrl to move forward and Alt to move backward with Shift to access the pause menu. And you can use the keypad for entering the passwords, where the B0 button toggles between numbers 0-9 and letters A-J. I have a couple of other big ideas that I'd love to implement. Most notably I've done some planning for an "SOS" mode where you rescue another playable character. However, due to the time constraints, I'll probably switch into polishing mode now (e.g. sound, nicer graphics on the various screens, more consistent controls, etc). And more importantly I need to catch up on playing the other entries! MazezaM_V7.rom MazezaM_V7.zip
×
×
  • Create New...