Log In  
Page:
1
2

Cart #minima-0 | 2019-07-14 | Code ▽ | Embed ▽ | No License
76

.
The Land of Miskatonia needs a hero to save it from the evil Faxon and its minions. Can you be that hero? Explore Miskatonia and its settlements, talk to its residents, build up your skills, and finally challenge Faxon in its secret lair.

This is my little homage to the old-school 8-bit Ultima games as they were found on the C128. I hope you enjoy it.

It exhausts almost every resource available to a PICO-8 app, and required minimization before it could be converted into a cartridge. The full source of Minima is available on GitHub for anyone interested in how it works. I have also provided a manual for it in a couple of formats, so you may want to grab and peruse the Minima manual as a PDF or the Minima manual as an ePub as well as the cartridge itself. Downloadable binaries are also available on the Itch.io Minima page.

If you have any comments, questions, or even just random thoughts related to it, I'll be happy to listen. I have played all the way through and do not know of any bugs in this version (1.1.1) but I could have easily missed some. I believe this to be the best version of Minima yet. (Several months after writing that previous line, I've stumbled onto two minor glitches. They have now both been fixed in 1.1.2, so again we're back to zero known bugs.)

If you enjoy Minima, you may also like the game Anteform (play online or download) that was built using the same engine. Both have similar interfaces but entirely different stories, settings, and characters.

New in version 1.1.2

  • Bug fix for erroneous report about finding certain magic item again after it had already been found.

  • Bug fix for incorrectly reporting a wall ahead in a dungeon when in fact a passage was there when using the look command.

New in version 1.1.1

  • Bug fix for game freeze that was impacting some folks in Zanders Guild Shop.

  • Bug fix for weird graphics glitch that was intermittently causing animations to get messed up after several game loads.

New in version 1.1

  • Dungeons are bigger and more challenging.

  • There is a guild shop with skeleton keys and torches.

  • Creature movement is much improved.

  • There are more townies, more dialog, and more clues.

  • Treasure chests are back, meaning less grinding is required.

  • Shrines can be entered.

  • Many minor bugs and glitches have been fixed.

  • The manual is fully updated to reflect the changes.

  • The cartridge picture is much improved.

Please note that loading / saving is incompatible between 1.0 and 1.1. That is, saves made with version 1.0.X cannot be loaded into version 1.1.X.

This version makes use of Tyler Neylon's JSON parser as suggested by @freds72. Minima is still hitting the wall, but now it's the compression size wall more than the token count wall.

P#56273 2018-09-06 12:46 ( Edited 2022-01-09 15:54)

Very deep, and rich, rewarding game. Marking as Favorite and gold star !

Nicely done, Feneric !

P#56275 2018-09-06 13:09 ( Edited 2018-09-06 17:11)

This looks nice.

Am I going to be asking "name? job?" a lot then?

P#56277 2018-09-06 13:26 ( Edited 2018-09-06 17:26)

@dw817 Thanks!

@enargy No, the interface doesn't really support it. There are only a handful of addressable keys out-of-the-box and so I had to get creative to make the commands fit in. As with all the Ultimas some people do provide clues as to how to win, but the dialog is somewhere between what III and IV offers. Each person has a couple of things to say, but there's no prompting them beyond the base dialog command.

P#56280 2018-09-06 13:41 ( Edited 2018-09-06 17:41)

Now Feneric, I don't know if you knew but current PICO-8 can read any alphanumeric key on the keyboard. You are not limited to the default PICO-8 buttons anymore.

I recently wrote a program to demonstrate this.

https://www.lexaloffle.com/bbs/?tid=31598

P#56290 2018-09-06 14:42 ( Edited 2018-09-06 18:42)

I actually had seen your example after I was quite a ways in, but at that point I didn't have the tokens to spare to change up the input method. Is that technique supported on the PocketCHIP, too?

I'd definitely use that approach for future projects.

P#56294 2018-09-06 14:53 ( Edited 2018-09-06 18:53)

I - don't have a PocketCHIP. That keyboard just looked ghastly. :)

Let me check what I wrote and see if I can optimize it.

It's a lot of unnecessary fluff. I think I can break it down:

cls()
poke(24365,1)
repeat
  k=stat(31)
  if (k>"") print(k)
  flip()
until k=="q"

Works here. Hit letters A-Z or digits 0-9, press "Q" to exit.

Make the key reading code (k=stat(31)) as part of your _UPDATE(), leave out the FLIP() and it should work just fine for reading the keyboard.

P#56296 2018-09-06 15:10 ( Edited 2018-09-06 19:10)

Even with that I don't think I can fit it without doing some major surgery. To give you an idea of where Minima is at relative to PICO-8 limitations, it's presently using 8189/8192 tokens, all the map space, all the sprites that don't overlap with the map space, 61/64 SFX slots, and (before minification) 55314 out of 65536 characters and 19331 out of 15360 compressed bytes (which is why the minification is presently required). I'd also at one point blown past the runtime memory allotment when I tried to save some tokens by making some table allocations less smart. I don't know how close I am to that runtime memory limit now, but I suspect not too far away...

If I'd known about that technique back when I first started I would have definitely tried to use it though. It would have made quite a few decisions a lot easier. Note the care with which I named spells and weapons, for example.

P#56302 2018-09-06 15:26 ( Edited 2018-09-06 19:26)

Wow - okay then. Hmm, I hadn't checked the size of your cart. You know in the future I was planning - still planning on writing an RPG Maker.

But yeah, I was wondering how you managed to cram in all that great conversation text from the sprites in the game. I see now it was a huge cost. Hmm ...

I'm looking at these lines in your code now:

o=n[1]
p=n[2]
q=n[3]
r=n[4]
s=n[5]
t=n[6]
u=n[7]
v=n[8]
w=n[9]
x=n[10]
y=n[11]
z=n[12]
ba=n[13]
bb=n[14]
bc=n[15]
bd=n[16]
be=n[17]
bf=n[18]
bg=n[19]
bh=n[20]
bi=n[21]
bj=n[22]

There may be a way to make that a bit smaller.

In any case, you'll be ready for next project with this keyboard input then, Feneric. :)

P#56305 2018-09-06 15:54 ( Edited 2018-09-06 19:59)

Token Police speaking: you are nowhere close to pico limits :) I can easily free around 1500 tokens but plugin in my usual json parser...
EDIT: you are already using standard lua optimizations :/

EDIT: early json version here: https://www.dropbox.com/s/uolo5sxopvgrzng/minima_json.p8?dl=0

Note: one of the main data structure should be slightly rewritten to be 'json' compatible. That woudl put the token count around 6400 (not to mention various simplifications that it would allow)

Couple of things to maximise json usage:

  • the json parser can reference anthing that is declared in the _g table. Ex:
_g.id=1
_g.update_player=function(self)
  self.x+=1
  self.y+=0.5
end
local player=json_parse('{"x":0,"y":0,"side":"id","update":"update_player"}')
-- prints 1
print(player.side)
-- calls update_player function
player:update()
  • json objects can be named. No need for:
creature=basetypes[1]
ankhtype=basetypes[2]
...

Simply:

basetypes=json_parse'{"creature":{"hp":10,"armor"...
  • clone your actual actors from json structure. I use the following function to create actors with random attributes:
function clone(src,dst)
    -- safety checks
    if(src==dst) assert()
    if(type(src)!="table") assert()
    dst=dst or {}
    for k,v in pairs(src) do
        if(not dst[k]) dst[k]=v
    end
    -- randomize selected values
    if src.rnd then
        for k,v in pairs(src.rnd) do
            -- don't overwrite existing values
            if not dst[k] then
                dst[k]=v[3] and rndarray(v) or rndlerp(v[1],v[2])
            end
        end
    end
    return dst
end
-- example use:
local player_template=json_parse('{"x":0,"y":0,"rnd":{"stamina":[1,8]}}')
local player=clone(player_template)
-- stamina is a random value between 1-8
print(player.stamina)

And cool game premises btw!

P#56310 2018-09-06 16:22 ( Edited 2018-09-07 20:07)

I'd be happy for you to take a stab at it, as there were features I had to drop in order to shoehorn in what I got in.

I think you need to look at the source prior to minification, though, via the link above. It's making pretty heavy use of metatables in order to spare repeated initialization, and it is using multi-variable initialization, no-parentheses calls, etc. everywhere in the original version. Apparently some of that is getting undone as part of the minification process. If you modify the minimized one we'll end up with something that'll be really gnarly to work on going down the road, but if you can reduce the token count of the clean version we ought to be able to do quite a bit with it. It's largely data-driven so it won't be a huge task to replace the maps and town data with a new set and thus create a new game if we preserve its data structure.

P#56314 2018-09-06 16:35 ( Edited 2018-09-06 20:35)

@freds72 -

> but plugin

Paging Dr. Freud! ;) :D

P#56315 2018-09-06 16:52 ( Edited 2018-09-06 20:52)

English is not my native language, things just don't click like that, you pervert =:)

P#56317 2018-09-06 17:07 ( Edited 2018-09-06 21:07)

As soon as I opened it up I'm like, "the music is nostalgic but the arrangement is grating," so rather than complain about it I just went in and reworked the whole thing. I didn't put in the triplet parts from the original(they're possible, just tedious since you have to run those patterns at higher speed) but everything's been given some more ornaments now.

__sfx__
000100002365024650206501e64000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00010000245202a6403075034660367703667034770326602f6602d75029650297502a640296402b7402c6502e6502f7502f6502d640296302563022720000000000000000000000000000000000000000000000
0001000017070160601505016050170501a06021060290702f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00020000276432f4732f4732f4732f4732f4732f4733b1733b2733b2733b2733b2733b2733b2733b2733b2733b2733b2333851500000000000000000000000000000000000000000000000000000000000000000
0002000002643024730347305473074730a4730d47311173162731b2731f27324273292732d27331273362733b2733e2333f51500000000000000000000000000000000000000000000000000000000000000000
001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
012000000742407422074220742502424024220242202425074240742207422074250242402422024220242507424074220742207425024240242202422024250742407422074220742502424024220242202425
0120000007424074220742207425024240242202422024250742407422074220742502424024220e4240e42207424074220e4240e42202424024220e4240e42207424074220e4240e42202424024220e4240e422
0120000007420074200e4200e42002420024200e4200e42007420074200e4200e4200242002420024200242007420074200e4200e42002420024200e4200e42007420074200e4200e42002420024200e4200e420
0120000007420074200e4200e42002420024200e4200e42007420074200e4200e4200242002420024200242007420074200742007420024200242002420024200742007420074200742002420024200242002420
0120000007420074200742007420024200242002420024200742007420074200742002420024200242002420074200742007420074200242002420024200242007420094200a4200c4200e4200e4200e4200e420
012000000c4200c4200c4200c420054200542005420054200a4200c4200e4200f42011420114201242012420134201342013420134200c4200c4200c4200c4200e4200a420094200742009420074200942007420
0120000007420074200e4200e42002420024200e4200e42007420074200e4200e42002420024200e4200e42007420074200e4200e42002420024200e4200e42007420074200e4200e42002420024200242002420
01200000004200042005420054200a4200a4200b4200b4200c4200e42010420124201342013420114201142014420144201442014420154201442012420104201242012420124201242014420144201a4201a420
01200000194201542010420154200d4200d4200d4200d420184201542010420154200c4200c4200c4200c42017420134200e420134200b4200b4200b4200b42016420134200e420134200a4200a4200c4200c420
01200000004200042005420054200a4200a4200b4200b4200c4200e42010420124201342013420124201242014420144201442014420154201442012420104201242012420124201242014420144201a4201a420
01200000134201342007420074200e4200e4200242002420074200742007420004000040000400004000040000400004000040000400004000040000400004000040000400004000040000400004000040000400
01200000004000040000400004000040000400004000040000400004000040000400004000040000400264252b4252d4252e4252b4252d4252e425304252d4252e4222e4253242232425304252e4252d42530425
012000002e4252d4252b4252e4252d4222d4252a4222a4252b4222b4252642226425244002440026422264252b2242d2242e2242b2242d2242e224302242d2242e2242e2223222432222302242e2242d22430224
012000002e2242d2242b2242e2242d2242d2222a2242a2222b2242b2222622426222244002440026422264252b4252d4252e4222e4252d4252e42530422304252e425304253242232425304252e4252d4222d425
012000002e4252d4252b4222b4252d4252b4252a4222a4252b4252d4252b4222b425264222642226422264252b4252d4252e4252b4252d4252e425304252d4252e4222e4253242232425304252e4252d42530425
012000002e4252d4252b4252e4252d4222d4252a4222a4252b4222b4252642226425244002440026224262222d2242b2242d2242b2242a2242a222332243322232224322222e2242e2222e2222a4002e2242e222
01200000302242e224302242e2242d2242d222332243322232224322222e2242e2222e2222e2222d2242d2222e2242e2222b2242b222292242922227224272222622426222262222622229224292222922229222
012000002b2242d2242e2242b2242d2242e224302242d2242e2242e2223222432222302242e2242d224302242e2242d2242b2242e2242d2242d2222a2242a2222b2242b222262242622200000000002642226425
012000002b4252d4252e4222e4252d4252e42530422304252e425304253242232425304252e4252d4222d4252e4252d4252b4222b4252d4252b4252a4222a4252b4252d4252b4222b42526422264222642226425
012000002742526425244222442526422264222642226425284252642524422244252642226425274222742528422284252f4222f425314252f4252d4252c4252d4222d4222d4222d4252f4222f4252c4222c425
012000002d425284252542528425214222142221422214252d425284252442528425214222142221422214252b4252642523425264251f4221f4221f4221f4252b4252642522425264251f4221f4251e4221e425
012000002742526425244222442526422264222642226425284252642524422244252642226425274222742528422284252f4222f425314252f4252d4252c4252d4222d4222d4222d4252f4222f4252c4222c425
012000002b4252d4252e425304253242533425364253242537422374223742237412374152100022000210001f0001f000210001f0001e0001e00000000000000000000000000000000000000000000000000000
01200000220051a0051f005220051a0051f005210051e005000000000000000000000000000000000000000022734267342b73422734267342b7342d7342a7342b7342b7322e7342e7322d7342b7342a7342d734
012000002b7342b73226734267322a7342a73224734247322273426734217341f7341a7341b7341e734247342a734287342a73428734267342673230734307322e7342e7322b7342b7342b7322b7002b7342b732
012000002d7342b7342d7342b734297342973230734307322e7342e7322973429732297322973226734267322b7342b7322773427732217342173224734247322273422732227322273221734217322173221732
0120000022734267342b7342e734267342b7342d7342a7342b7342b7322e7342e7322d7342b7342a7342d7342b7342b73226734267322a7342a7322473424732227341a734227341f7341a7341b7341e73424734
012000002473422734217342173222734227321f7341f732247342373421734217342373423732237342373223734237322373223732287342873228732284002873428732277342773228734287322873228732
01200000287342573421734257341c7341c7321c7321c732287342473421734247341c7341c7321c7321c73226734237341f734237341a7341a7321a7321a73226732227341f734227341a7341a7321a7341a732
0120000022734217341f73422734217341f7341e734217341f7341f7321f7321f7221f71500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
011800000924409225102441022515244152251024410225112441122011210112150020000200002000020009244092251024410225152441522518244182251c2441c2201c2101c21500200002000020000000
011800000924409225102441022515244152251024410225112441122011210112150020000200002000020010244102251124411225102440e2440c2440b2440924409220092100921500200002000020000000
01180000005001a7241a72521722217252672426725217222172522722227222272500700007000070000700007001a7241a725217222172526724267251d722297252d7222d7222d72500700007000070000500
01180000007001a7241a725217222172526724267252172221725227222272222725007000070000700007000070021724217252272222725217241f7251d7221c7251a7221a7221a72500700007000070000700
01180000005000954009545105401054515540155451054010545115401154011545005001152500500115150050009540095451054010545155401554518540185451c5401c5401c545005001c525005001c515
01180000000000954009545105401054515540155451054010545115401154011545000001152500000115150000010540105451154011545105450e5450c5450b54509540095400954500000000000000000000
011800002471024720247302474024750247402473024720217402173021720217100070000700007000070024710247202473024740247502474024730247201f7401f7301f7201f7101c700007000070000700
011800002471024720247302474024750247402473024720217402173021720217100000000000000000000020710207202073020740237502374023730237202474024730247202471000000000000000000000
01180000247102472028730287402d7502d740287302872027740277302772027710007000070000700007002171024720287302c7402d7502b74028730287202b7402b7302b7202b71000700007000070000000
011800002471024720287302874024750247402873028720297402973029720297100070000700007000070028710267202873024740267502474026730237202174021730217202171000700007000070000700
0118000015710157201c7301c74021750217401c7301c7201d7401d7301d7201d7100070000700007000070021710217201c7301c740217502174024730247202874028730287202871000700007000070000000
0118000015720157201c7201c72021720217201c7201c7201d7201d7201d7201d720007000070000700007001c7201c7201d7201d7201c7201a72018720177201572015720157201572000000000000000000000
011800000000015120151201c1201c12021120211201c1201c1201d1201d1201d1201d1250000000000000000000015120151201c1201c1202112021120241202412028122281222812228125000000000000000
011800000010015120151201c1201c12021120211201c1201c1201d1201d1201d1201d125001000010000100001001c1201c1201d1201d1201c1201a120181201712015122151221512215125001000010000100
01180000007003572435725397223972532724327253972239725367223672236725367000070000700007000070032724357253b7223172532724317253b7223b72530722307223072530700007000070000700
011800000070035724357253972239725327243272539722397253672236722367253670000700007000070000700397243772539722357253772435725377223472532722327223272532700007000070000700
011800001800024421244202442024420244202442224412200002142021420204211800000000000000000021000244212442024420244202442024422244121800020421204222041200000000000000000000
011800001800024421244202442024420244202442224412000002142021420204210000000000000000000000000204202042220422234212342223422244212442024422244222442224412244122441500000
011800003451434512345123451234512345123451234515335103351033510335150000000000000000000034514345123451234512345123451234512345153451034510345103451500000000000000000000
011800003451434512345123451234512345123451234515355103551035510355150000000000000000000034514345103451034510385103851038510385103951039510395103951500000000000000000000
01180000345143451039510395103c5103b510395103951539510395123951239515000000000000000000003051434510395103b5103c5103b51039510395123b5103b5123b5123b51500000000000000000000
01180000345143451039510395103c5103b510395103951539510395123951239515000000000000000000003c5143b5103c510395103b510395103b510385103951039512395123951500000000000000000000
011800001c0101c02023010230202801028020230102302024010240202402024015000000000000000000001d0101d020230102302028010280202b0102b0202f0102f0202f0202f01500000000000000000000
011800001c0101c02023010230202801028020230102302024010240202402024015000000000000000000002301023020240102402023010210101f0101e0101c0101c0201c0201c01500000000000000000000
01180000000002d1102d11034110341103911039110341103411035110351103511035115000000000000000000002d1102d110341103411039110391103c1103c11034110341103411034115000000000000000
01180000001002d1102d1103411034110391103911034110341103511035110351103511500100001000010000100341103411035110351103411032110301102f1102d1102d1102d1102d115001000010000100
011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
__music__
00 06114344
00 07124344
00 08134344
00 09141d44
00 0a151e44
00 0b161f44
00 0c172044
00 0c182044
00 0d192144
00 0e1a2244
00 06174344
00 0c172044
00 0d1b2144
00 0e1a2244
00 06182044
00 0c182044
02 101c2344
01 246a4344
00 25424344
00 242a3644
00 252b3744
00 242c3844
00 252d3944
00 242e3a44
00 252f3b44
00 24303c44
00 25313d44
00 26324344
00 27334344
00 28344344
02 29354344

Having finished my quest, I played the game start to finish. Lots of fun.

It feels like Ultimas I and II in terms of fleshing out the content - some grinding, a handful of puzzles, a lot of filler parts. Which is understandable since RPG content is pretty tough to fill in, especially so when you have PICO-8 limits to work against. In those games the dungeons were tacked on and just served to grind experience - and here it's the same apart from the final dungeon...bug report: when I won I tried to ascend to the dungeon again and it sent me to an empty void.

P#56359 2018-09-07 07:39 ( Edited 2018-09-07 11:39)

Thanks, I'm glad you like it.

Yeah, story-wise it's pretty similar in complexity to Ultima II, scale-wise it's closer to Ultima I, but it's got a few Ultima III & Ultima IV sorts of features thrown in, too. Space constraints were what limited me the most with regard to RPG content. I'd planned out more people with more custom dialog and one more puzzle thread that I just couldn't work in (along with a list of specific features that I'd had to drop at various points along the way -- if you're interested in the full list I included them on the GitHub page). One of the final things I had to give up was treasure chests in dungeons. These would have reduced grind and made the mimics a little more meaningful.

Even without chests there actually is something to find in each of the three non-final dungeons in Minima. Obviously none of them are essential. They can make winning easier though. There are a few clues in there about them, but they're terser than I'd like.

Thanks for the music; I'll definitely give it a listen.

P#56364 2018-09-07 09:03 ( Edited 2018-09-07 13:03)

Was just listening to the music edition you prepared, TripleFox. Pretty good !

P#56377 2018-09-07 15:36 ( Edited 2018-09-07 19:36)

@triplefox: Your take on the music is great, better than mine. Are you sure it's even possible to do the triplet parts from the original within the limits we've got? I'm not questioning whether or not the timing can be done, as obviously the answer there is "yes", but more whether or not it'd fit within the available count. When I'd considered it earlier I didn't think it could.

@freds72: Yeah, I was already using the standard optimizations plus a bunch of other things that I'm sure are very much non-standard. If you've got an efficient JSON parser for PICO-8 that could definitely save 1000 tokens easily while still keeping Minima data-driven (and thus easily usable as a framework for other similar types of games).

P#56420 2018-09-08 17:39 ( Edited 2018-09-08 21:39)

I’ve already edited my initial post with details and examples. The json version is actually even more data driven than the original!
The full json version should be around 6400 tokens (exercise left to the reader - the version I posted is working but not fully converted, some code & data must be modified to be fully json-compatible ;)

P#56433 2018-09-09 01:34 ( Edited 2018-09-09 05:34)

@Feneric: I haven't measured the pattern counts, but my suspicion is that it wouldn't impact as much as we think. The way PICO-8 music deals with short patterns is to loop them until the longest one ends, hence you have some room to modulate speed/size over the course of the song to only include the fast stuff where it's needed. For most triplet patterns this means going from 64 to 96 effective rows - or by multiplying the rows by three and running it three times as fast. Better hope your speed is divisible by three! As a last resort you could turn to the SFX instruments feature, and define SFX to play notes with triplet offsetting.

Given all those considerations it could easily turn into a juggling act where it could be done, or mostly done, but it's logistically difficult and the whole song has to run a little bit faster or slower, which is why I didn't look into it closely.

The other way that this could be done, which would take a lot of tokens to pull off, is to rewrite it in MML form. And then generate the pattern data on demand by compiling it. AFAIK we don't have any such compiler right now. It would be an interesting tech project.

P#56434 2018-09-09 01:36 ( Edited 2018-09-09 05:36)

Whups ! Found an error. Saved my game, reset, loaded my game, I wound up in the water with no way back to land.

P#57239 2018-09-28 20:50 ( Edited 2018-09-29 00:50)

Truly brilliant...except that I always end up being killed by the first or second monster!?!

I got some piece of cloth in town, get to the first dungeon and well, it doesn't end up well :/
First encounter: ok, level up
Second encounter: nope.nada (don't have MP anymore, not enough HP, can't exit, can't Medic...)

Any "survive the first minute" advice for the noob traveller?

P#57247 2018-09-29 03:33 ( Edited 2018-09-29 07:33)

@dw817 I've been loading and saving all day and didn't run into that; you didn't save on version 1.0 and load on version 1.1, did you? The two save files aren't compatible and mixing them will definitely cause that. There had been an earlier problem where the minimization was sometimes causing the load & save to break. Hopefully that's not back, but if it is I'll try and get it resolved.

@freds72 Thanks, I'm glad you like it. I'm making pretty good use of the JSON parser; now the big limitation is compression size. It's especially hard at the beginning. My advice for you is as follows: ensure you get both armor and a weapon ASAP and upgrade both aggressively. Get familiar with your spells as magic matters a lot in Minima. Don't bother trying dungeons until you're a little more experienced and better equipped. With regard to fighting monsters when unarmed -- it's sometimes better to run away.

P#57253 2018-09-29 09:16 ( Edited 2018-09-29 13:59)

Ah ! Load works great now. [10-06-18]

Going to explore some more of this marvel game today now that I can save properly.

P#57624 2018-10-06 17:56 ( Edited 2018-10-06 21:56)

Good, you had me worried for a bit because I couldn't reproduce it and thought there may be something weird lurking there. Please let me know what you think of it once you've had a chance to dig in a little.

P#57786 2018-10-10 11:28 ( Edited 2018-10-10 15:28)

@hwd2002 No worries. I tried to cover all that in the manual (but please let me know if I missed anything) and also included an abbreviated list of commands in the in-game help accessible via the pause menu.

P#57857 2018-10-12 11:37 ( Edited 2018-10-12 15:37)

Ah this is fantastic. Thanks for making this. I am hoping to make a tiny rpg at some point as well.

P#57879 2018-10-12 20:04 ( Edited 2018-10-13 00:04)

I really want to give this game enough shots to do it justice, I can see a lot of work went into it. However, I really don't know how to progress. I can get the cloth---but I can't find a dagger. Clues I've found:

"the secret room is key." - I got REALLY excited when I found the mismatched block in Saugus at the top. I was like THIS IS THE SECRET ROOM AND A DAGGER IS IN IT. But, nope, all it does is exit the town. That was unexpected :D

I also keep trying to go in that dungeon to the southwest to see if I can find anything in there. I can use a torch, I walk around but I ALWAYS DIE.

I keep hoping to find somebody who is kind enough to heal me for free, but all I can find is buying "medic" for 8$ then I'm out of money and it only gives me 1 hit point. Then I meet a monster and die. Running away doesn't seem like a good strategy if I want to level up?

Any hints? I really like the game and I'm gonna keep trying for a while.

P#57946 2018-10-14 16:35 ( Edited 2018-10-14 20:35)

AHA!!! I am making progress after taking a break. I did not realize at first that mp and hp recover slowly based on your food level. That helps a lot. I should be able to level up now.

P#57952 2018-10-14 17:50 ( Edited 2018-10-14 21:50)

Hi! I'm having a lot of fun playing Minima now that I understand the food mechanic. I encountered what appears to be a bug. I returned to the village and some of the people get chests in their animations. hope this helps.

BTW, Here is the saved game file minima0.p8d.txt which causes the bug. I find that if I load this game, then enter the town, the two guard guys MIGHT have the wrong animation. The animations change after multiple loads. I've seen treasure chests, krakens and other things. Resetting the cart completely then loading seems to clear the guys to their original animations.

0008000000000000000d00000004000000080000000800000008000000000000
0000000000040000000000000000000000050000002800000003000000280000
002300000020000000300000001d0000203d0000001d0000100a000000320000
100600000032000010050000001d000032060000001e000010040000002c0000
392d0000001e000010080000001d000010070000001e000011060000001f0000
1105000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
P#57959 2018-10-14 20:05 ( Edited 2018-10-15 00:10)

Another bug. I got to this "Zander" shop, did dialog---now I cannot dismiss the choices. I can't pick the choices either---I'm just stuck. Animations still are playing, but gameplay is effectively halted.

edit upon re-loading a game, the game was still frozen input wise. When I reset the cart, the input was no longer frozen and I could continue playing.

P#57960 2018-10-14 20:36 ( Edited 2018-10-15 00:38)

@gradualgames I'll try to answer all your questions and comments. First off, you're welcome, I hope you enjoy it. The engine it uses can be pretty easily repurposed for another game if you so choose.

I've seen that animation corruption a couple times myself, but so far as I can tell there's nothing in the code to cause it, and it's always gone upon restarting PICO-8. It's acting almost like an out-of-bounds pointer has caused internal corruption, but there are no pointers in Minima. In fact there's nothing in Minima that can cause the selected animation frames to change during a game anyway; they're only set during loading and I can point out where if anyone would like to serve as a second set of eyes.

I've never seen it freeze, and I've definitely gotten stuff at Zanders more often than I can recall. This could also be explained by internal corruption, but off the top of my head I can't think of anything in Minima that should cause such corruption.

Which platform are you playing on?

For a quick hint on your described predicament, don't restrict yourself to Saugus. Of course if you've not done so yet I'd recommend perusing the manual, too, as there are some tips in there.

P#57974 2018-10-15 11:14 ( Edited 2018-10-15 15:14)

Same bug at Zanders - not enough money, can't exit dialog :/
(was playing on Chrome after reloading a saved game)

P#57983 2018-10-15 15:24 ( Edited 2018-10-15 19:24)

@Feneric Could it be a global variable somewhere perhaps that is introduced during gameplay or a global that was meant to be a local? It is interesting the bug persisted until full cart reset, changing the animation frames each time. I.e. "load game" is not the same as reset, right? Only reset would clear globals i think?

I play on PC, Mac and raspberry pi but i found these bugs on a win7 laptop, lastest pico 8 build. I'll try to reproduce elsewhere as I'll be playing this more :)

P#57992 2018-10-15 20:28 ( Edited 2018-10-16 00:33)

I'll see if I can reproduce the Zanders bug. Note though that all shops share a lot of code between them (they have to in order to fit) so there's not a big surface there that's unique to just guild shops.

I don't think it could be a global / local issue on the animation frames as all of that comes from an enormous data structure that gets loaded at start-up and not changed. Any overwriting ought to just break the structure, not just set one value within it to something else. Plus, it hardly ever seems to happen. For all the times I've played it through beginning to end, I only saw it twice and have no idea what triggered it.

I'm still a little worried that it's an obscure artifact of the minification. I had to make quite a few changes to the minimizer to get it not to break Minima, but there may still be something lurking in there.

P#58016 2018-10-16 15:22 ( Edited 2018-10-16 19:22)

@Feneric: I can reproduce the sprite tiles bug instantly with the saved game posted above---just tried it out on my mac all I have to do is load the saved game, enter Saugus, then re-load the saved game and enter Saugus a second time. It appears to happen nearly every time? (tried again just now, took me about 4 load game/enter Saugus'es to see the bug)

P#58059 2018-10-17 15:44 ( Edited 2018-10-17 19:45)

@gradualgames Cool, thanks, that's good to know. I'll take a look at it and see if there's some specific way that particular save games can mess it up.

P#58161 2018-10-19 13:11 ( Edited 2018-10-19 17:11)

@Feneric This evening I'm spending a couple hours playing Minima on my raspberry pi. I'm getting a lot further now and having a fantastic time playing it! I ran into the same behaviors on this system, as well if that helps; these are not interfering with my enioyment of the game in the slightest however. I'd never played this style of rpg in the past---only jrpg. I am finding I really enjoy this style of game, especially not having random battles as in most jrpgs. It seems to foster a sense of flow/engagement much better. I finally ventured far enough to find the arms dealer!!

P#58173 2018-10-19 21:30 ( Edited 2018-10-20 02:38)

I'm glad you're liking it. Minima is strongly influenced by the old-school Ultima games, so you'd probably like those, too. Ultima IV is available for free from GOG, and the XU4 program provides an open source interface to play it on a range of systems beyond what's directly supported by GOG (including the PocketCHIP if you've got one; I did the easy install scripts for it in PocketInstaller). Ultima IV has a much more complex story than Minima (which is more comparable story-wise to Ultima I) but I think you'll recognize the feel. One of the key things in this style of game is that the dialog from the townies (including what you can hear in pubs) really helps to shape the playing experience.

Also, believe it or not, I'd intended the arms shop to be easier to find than the guild shop (and in fact there are multiple arms shops) but with an open world things can really be done in any order.

P#58207 2018-10-21 09:58 ( Edited 2018-10-21 13:58)

OK, I believe I found the root cause for the Zanders bug and have fixed it. I also believe I have a fix for the animation bug, but I'm still puzzled at the cause as essentially some table attributes that get read once at start-up are getting changed. The fix is to force the rereading of this data every time a saved game is loaded.

P#58313 2018-10-23 22:09 ( Edited 2018-10-24 02:09)

Just to let you know, Feneric. You have a few admirers. Scrub and myself are working on a joint project.

Me ? I'm hoping it will be a kind of RPG Maker.

Scrub is hoping it will be a kind of Ultima Game.

Between the two of us, we should come up with something interesting. :)

Will use standard (O) and (X) buttons though only.

P#58314 2018-10-23 22:17 ( Edited 2018-10-24 02:17)

Feneric - This is stunning. You're my PICO hero at the moment. Congrats on getting something so bad ass finished!

P#58322 2018-10-24 04:57 ( Edited 2018-10-24 08:57)

So upon reflecting further on it I think I know generally where that animation problem was coming from, and my rereading of the data at game load time is the proper fix, so all should be well.

@dw817 & @WarrenM I'm just really thrilled that people are playing Minima and enjoying it. I'm still pretty amazed that folks have played all the way through and won it. There were a lot of features that I wanted working before I'd consider it a viable game, and there were a few times along the way I wasn't certain I was going to be able to squeeze them all in. Although I did give up on some of my "nice-to-haves" all the ones I thought were essential are in there. Even after getting it working though it's so different from most other PICO-8 games I wasn't sure anyone would care to play it.

If there's anything in there that'd help with other projects, please be my guest. The Minima engine can be reworked into another game without too much effort; dropping in new graphics, audio, and data will make it a completely different game with the same mechanics. The only code that'd need to be touched are a couple of endgame bits. Restricting it to the (O) and (X) buttons would be a bit more work, but not too bad. The gotcha with restricting the interface is that it's ironically easy to make it less friendly as both the overlaps can get complex and the failure messages can become misleading.

P#58367 2018-10-24 16:25 ( Edited 2018-10-24 20:25)

Beat it!! Does Faxon only show up when you reach a given level? I'd been thru the same part of his lair one or two times at lower levels before I ran into him. Fantastic job sir. I want more haha guess its time to play Ultima IV! ;)

Also re: soundtrack. I actually love the simple unadorned style. We're in some kind of chiptune baroque era because it looks to me like many chiptune musicians such as the one above who redid your soundtrack are all but allergic to simplicity. For me, the simplicity makes it feel even more nostalgic and old like you were going for. Love it.

Note* I do like triplefox's arrangement as well though.

Also @Feneric, who wrote the song for Minima? Is it from an Ultima game or did you or a friend write it? It's very good.

P#58459 2018-10-26 20:37 ( Edited 2018-10-27 01:10)

That's excellent! Maybe someday I'll do a Minima II (I have some ideas) but not right away. I'll give folks time to discover / play / win Minima first, and if enough people seem to like this kind of game I'll definitely revisit it. Besides the Ultima games I was always a fan of strategy games, 4X types both on land and in space. I'll probably take a look in that direction before coming back this way.

RE Faxon, that'd be telling, but of course the source is all up on the GitHub page, and the bit concerning Faxon hasn't changed from the easier-to-read early versions.

A deeper bit of Minima trivia is that some of the locations are real places in "Lovecraft Country" (or at least the area where many of his stories was set, Northern Massachusetts) and some of the design details reflect the real places in varying ways.

My very limited musical skills were already stretched to their limit just in trying to convert / arrange those two pieces for PICO-8. The original composer (and he's given credit on the GitHub page etc. as well) is Kenneth W. Arnold, and his original versions are much better than my attempts to mimic them. The two pieces in Minima were both from Ultima III. I also really liked and wanted to use the Ultima III Dungeon Theme, but there was only room for two pieces within the confines of a single cartridge, and that one also has a lot of extra complexities related to timing.

P#58532 2018-10-29 13:41 ( Edited 2018-10-30 00:58)

Congratulations on Minima. Simply outstanding. Ultima IV is my all time favorite game. Two questions:

  1. Your tile set it terrific but the bridge kind of stands out for its simplicity. I have little graphic ability and have been able to do a more ultima humped type bridge. Yours is reminiscent of the bridge from the 2600 Adventure :)

  2. Is your tile set free to use in other carts?

Thanks.

P#65933 2019-07-18 23:47

Heh, you're right @z80jim. When I said I created the graphics based on my memory of the 8-bit Ultimas on the C128 I wasn't kidding. It probably really was the 2600 Adventure bridge stuck in my head when I made that. I'll upgrade it if/when I do a 1.1.3 release.

Sure, please feel free. In fact I separated them out in the GitHub repository to make it easier to reuse them. Mentioning that they came from Minima would be appreciated.

I'm in the process of reusing the "Minima Engine" and a lot of its graphics and sound effects in another game now: Anteform. I occasionally post updates regarding it on Twitter.

P#65951 2019-07-19 22:13

@Feneric That's great thanks. I'll check out the GitHub. Does it include your un-compressed code?

Here is a shot of my version that shows a bridge. I also am using regular Pico-8 print for store signs, saving 28 sprites for other things. Doesn't look as good as yours but .... 28 sprites! I also have phasing moons and water scrolling in 4 directions with just one tile for shallow and deep saving two of your tiles at the cost of code to make them scroll. Problem is I will have token problems for the first time so will have to learn how to minimize that.

Do you have anything that describes your game mechanics in terms of combat, damage, armor, leveling etc?

Thanks for the Ultima in Pico-8 inspiration ... and tiles and music :)

P#65955 2019-07-20 00:31

@z80jim You're welcome, what you've got looks great so far! I like your use of icons for stats (although be aware, at least in Minima, people often get some of those numbers up into three or more digits, and in fact it's necessary to get more than 99 gold in order to purchase a few useful items).

Yes, the uncompressed, commented code is there but there are certain things that don't compress well and which I had to minimize manually later in the project creation. Consequently there's a lot of code that's much harder to understand than it ought to be. I recommend looking at the old versions of the Minima code first to get an idea of how it flows before looking at the newest versions with their shortened variable names.

The basic idea of its structure is to set up a big input coroutine that normalizes all button presses. Minima doesn't use actual PICO-8 keyboard input, just leverages key / button equivalences and tries to be clever about verbs in order to make it feel like real keyboard input while using less code. It also heavily uses metatables to make slight variations of things that have lots of attributes, and JSON strings in which to store those things. Making a new game based on the Minima Engine doesn't really require much change to the actual code at all (you'll need to change the victory condition and a couple of tiny exceptions I made for particular travel between places). Mostly all one needs to do is change the graphics, music, and data, and maybe take out bits of code that aren't needed in order to make space for stuff that is.

Using the PICO-8 print for signs is a good idea. The water sprites / code tradeoff may or may not be depending on circumstance; I found in both Minima and Anteform that code space is at a premium, too. Using the two tiles for water meant that I could use the same code treatment for water, volcanos, and any other animated terrain I wanted. If you find that you've got code space to spare making that exception to save sprites will work well, but if you're trying to squeeze it into a single cart (like Minima or Anteform) you'll find it's pretty tight and may cause you grief later. It's the compression step to make the final cart that gets you.

P#65980 2019-07-20 17:38

Thank you for this fantastic trip down memory lane - you did an awesome job bringing back the look & feel of the old Ultima games!

I missed having the cloth map that came with the originals, so here's a printable map of the Land of Miskatonia, generated from the game's map & sprite data:

(WARNING - GAME SPOILERS) https://imgur.com/a/YZrs9NT

P#82891 2020-10-13 19:05

You're welcome! I'm glad you like it. I can copy your work into the GitHub page and/or the itch.io page with proper attribution if you'd like.

P#88268 2021-02-27 18:51
Page:

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 17:52:26 | 0.072s | Q:86