Where to buy Nuon games+demos Discs ?

litoskin

You can change this now in User CP.
Reaction score
9
i'm looking for one or two copies of nuon games+demos discs i have see that they are not available anymore to cafèpress store .Anyone is able to help me in finding them?
Thanks
Marco
 

K3V

NUON-Dome Moderator
Staff member
Reaction score
48
Cafepress discontinued their CD manufacturing service so it's not available anymore. Anyone know of a similar on-demand service? I could maybe get it back up and available if there's something comparable out there.
 

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,697
Hopefully we will get a re-release of this with signing tools working now... Fingers Crossed!
 

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,697
Honestly I think we should go a different direction with this. I think we should do a new one. I am pretty sure we can get Dragonshadow's source on the Menu Loader System and do a DVD Release. I would lean towards using Songbird as a Publisher as Carl has all the experience and tools to get this stuff done but he is so busy....

I think we should try and get something out NOW! Decaying Orbit is my pick!
 

V-SNES

NUON Lover!
Staff member
Reaction score
70
Honestly I think we should go a different direction with this. I think we should do a new one. I am pretty sure we can get Dragonshadow's source on the Menu Loader System and do a DVD Release. I would lean towards using Songbird as a Publisher as Carl has all the experience and tools to get this stuff done but he is so busy....

I think we should try and get something out NOW! Decaying Orbit is my pick!
Was Decaying Orbit originally intended to be released on its own? This was the impression I got when I read about the game on Dragonshadow's website. Also if you recall, I was under the impression that it never got physically released until you pointed out that it was released on the Nuon Demos + Games disc. I'd definitely be down for a new physical release of Decaying Orbit.
 

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,697
It is worth releasing on its own? The fact it was on a demo CD was a travesty. What Dragonshadow did to port the Playstation stuff is so unrecognized. I wish I was so into it back then as I was today and I might have been able to focus that but for now I think Decaying Orbit is all we have. But yes, it is a whole game.
 

Skah T

Former VML engineer
Reaction score
62
Hey thanks! Technically, it's the first of planned five chapters, but I ran out of space on the Yaroze so stopped at the first set of levels.

I revisited the game for a game jam a work a few years ago. I called it Decaying Orbit Arena. You can play it here, though there seems to be a texture problem with the shield indicator. I should fix that. It's basically an endless stream of levels that get harder.

Anyway, the wrapper library I made to port Decaying Orbit also let me port a few other Yaroze games: Invs, Breakdown, and Katapila. They're in the Yaroze Classics release on my site. Definitely fodder for rereleasing them now that authentication is working.
 

mgarcia

You may change this now in User CP
Reaction score
48
Anyway, the wrapper library I made to port Decaying Orbit also let me port a few other Yaroze games: Invs, Breakdown, and Katapila. They're in the Yaroze Classics release on my site. Definitely fodder for rereleasing them now that authentication is working.

I'm going to be putting your yarlib.c to the test! :)
 

mgarcia

You may change this now in User CP
Reaction score
48
Go go go! I honestly remember very little about it, but I'll help where I can.

yarlib.c doesn't look complete... it looks like it's referencing a few missing files :/
ie:
#include "sprite2b.h"
#include "perfmon.h"
#include "../sauron/srn_psx.h"
#include <dsiCommon.h>
#include "yarlib.h"
#include "screenshot.h"

the first error is at :

typedef struct {
int x, y; // coordinates in Yaroze VRAM
int w, h; // dimensions in Yaroze VRAM (ignoring any additional border)
void *ptr; // pointer to buffer
sImage img; // image for feedback
SPR_IMAGE_INFO spr; // sprite for feedback
} sFB;

sImage is undefined in yarlib.c and vmlabs' include files.


If you can share a complete working build of something (privately or publicly), I can strip out the game and recreate the yarlib.c so it "just works".
I'm happy to maintain it for you, and add to it.

I was a Net Yaroze (SCEE) member, if that helps? LOL https://web.archive.org/web/0/http://netyaroze-europe.com/~mgarcia/
 

mgarcia

You may change this now in User CP
Reaction score
48
Go go go! I honestly remember very little about it, but I'll help where I can.

I don't want to be a pain, but yarlib.c as it is, is a great helpful starting guide, but it's missing the SPRAdd functions, ie SPRAddSpriteYaroze :'(

I'd like to port my little NY project I'm finishing up to NUON, it's well abstracted, but would preferred to use your work and contribute it.

Please please please, pretty please, please :)
Can I email you to discuss further?
 
Last edited:

V-SNES

NUON Lover!
Staff member
Reaction score
70
I don't want to be a pain, but yarlib.c as it is, is a great helpful starting guide, but it's missing the SPRAdd functions, ie SPRAddSpriteYaroze :'(

I'd like to port my little NY project I'm finishing up to NUON, it's well abstracted, but would preferred to use your work and contribute it.

Please please please, pretty please, please :)
Can I email you to discuss further?
Did he ever get back to you?
 

Skah T

Former VML engineer
Reaction score
62
Okay I found it! Man it takes me back reading through this code again.

Ideally I would get everything compiling again so I could actually have a chance to help while you take this on, but it's probably more helpful to just get you a dump of everything right now.

What you need is "libsprite", which is a modified version of the original sprite library. In particular, I hand-crafted VLIW assembly routines to draw sprites of various complexity. Look for the sp_pixg#.s assembly files for the various flavors.

My version of source control back then was to copy all the files into a new directory named by date. I have directories for libsprite ranging from 2002 to 2008. Of note, two directories are appended with "-release" so I must have released those on the forums or my website at some point.

I'm attaching the May 14, 2003 release version. I'm totally fine sending along the rest, but I'm guessing since it is tagged with "release" that it must be somewhat stable.

If I find myself with a block of a few hours I may take a stab at getting Decaying Orbit compiling again. But hopefully this unblocks you for a while.
 

Attachments

  • 20030514-release.zip
    143.9 KB · Views: 118

Skah T

Former VML engineer
Reaction score
62
Found the post on my blog from back then about this release.


Since it is from the middle of Decaying Orbit's development I'm guessing the later versions of the library contain further optimizations.

I'm attaching here the last archived version of the code. I don't know what state this is in. Given the lack of a "release" tag, it might be buggy or not even compile.
 

Attachments

  • 20080326-for-mgarcia.zip
    514.9 KB · Views: 116

Skah T

Former VML engineer
Reaction score
62
Reading a bit more. Looks like spYar* are the Yaroze-specific sprite renderers that I wrote. And of course libsprite.c is the library that actually uses them.

This was back when I was trying to eke out every single cycle of optimization from the inner loops as I could. Super interesting and fun while you're doing it, but is a bit opaque looking at it later.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    Actually I was just playing with having some kind of mention of the food forum and recipes on the main page to test and see if it would engage some of those people to post something. It is just weird to get so much traffic and no engagement
  • The Helper The Helper:
    So what it really is me trying to implement some kind of better site navigation not change the whole theme of the site
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top