Back to Index Page generated: Sep 1, 2025, 4:12:02 AM

Expansion HyperRadio CATACLYSM - Electronica

Content

Warnings

  1. http://wiki.alioth.net/index.php/HyperRadio%20CATACLYSM%20-%20Electronica -> 404 Not Found

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description This musicpack contains the Electronica album '+cataclysm+'. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. This musicpack contains the Electronica album '+cataclysm+'. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP.
Identifier oolite.oxp.Diziet.hyperradioCATACLYSM oolite.oxp.Diziet.hyperradioCATACLYSM
Title HyperRadio CATACLYSM - Electronica HyperRadio CATACLYSM - Electronica
Category Ambience Ambience
Author Diziet Sma Diziet Sma
Version 2.0 2.0
Tags
Required Oolite Version
Maximum Oolite Version
Required Expansions
Optional Expansions
Conflict Expansions
Information URL http://bb.oolite.space/viewtopic.php?f=4&t=16567 n/a
Download URL https://wiki.alioth.net/img_auth.php/0/04/HyperradioCATACLYSM.oxz n/a
License CC-BY-NC-SA 3.0 CC-BY-NC-SA 3.0
File Size n/a
Upload date 1754287988

Documentation

ReadMe.txt

This album, +Cataclysm+ by cryostat37  (John Underwood)

https://soundcloud.com/cryostat37/sets/cataclysm-1

This album was written in around 2003-5 when I worked as a lab tech in a college in Liverpool. I was supposed to submit just a 3min track but ended up submitting the second half of this album. Although being fairly tech savvy, it was the first time I'd encountered Reason (music software) so that's responsible for most of the noise with cubase running the sequencing side of things and samples.

This is my second proper album, the first one had too many songs about badgers, so I wrote this instead. This has nothing to do with badgers but is all about us puny humans who have the intelligence, stupidity and it appears the premeditated intent to wipe ourselves from the fossil record along with everything else.

Currently working on stuff on a Korg M-50 and doing everything on hardware synth. This is all released as creative commons for non-commercial use.

License:
Attribution-NonCommercial 3.0 Unported (CC BY-NC 3.0)


Other credits:

+Cataclysm+ - 07 Bellcurve:accretion
Sample is James Howard Kunstler from the movie 'The End of Suburbia'

+Cataclysm+ - 08 Bellcurve:plateau
Sample is Bill Hicks from a live show.


Equipment

This expansion declares no equipment. This may be related to warnings.

Ships

This expansion declares no ships. This may be related to warnings.

Models

This expansion declares no models. This may be related to warnings.

Scripts

Path
Config/script.js
"use strict";
this.name = "hyperradioCATACLYSM";
this.author = "Diziet Sma";
this.copyright = "CC-by-nc-sa-3.0";
this.description = "+Cataclysm+";
this.version = "2.0";

this.startUpComplete = function () {
	delete this.startUpComplete;
	if (worldScripts.hyperradio) {
		worldScripts.hyperradio.stationList.push("hyperradio_playListCATACLYSM");
		worldScripts.hyperradio.hyperradio_playListCATACLYSM = new Array(
			"01 Floodplain.ogg",
			"02 Protean Express.ogg",
			"03 Tempest Season.ogg",
			"04 Discarded Opportunities.ogg",
			"05 Chimerical Mediums.ogg",
			"06 Bellcurve - Proliferation.ogg",
			"07 Bellcurve - Accretion.ogg",
			"08 Bellcurve - Plateau.ogg",
			"09 Bellcurve - Freefall.ogg",
			"10 Bellcurve - Aftermath.ogg"
		);
	}
	if (worldScripts.Lib_Music) {
		worldScripts.Lib_Music._addChannel({
			name: "Album Cataclysm", radio: true, sounds: [
				{ snd: "01 Floodplain.ogg", dur: 362 },
				{ snd: "02 Protean Express.ogg", dur: 553 },
				{ snd: "03 Tempest Season.ogg", dur: 362 },
				{ snd: "04 Discarded Opportunities.ogg", dur: 245 },
				{ snd: "05 Chimerical Mediums.ogg", dur: 311 },
				{ snd: "06 Bellcurve - Proliferation.ogg", dur: 104 },
				{ snd: "07 Bellcurve - Accretion.ogg", dur: 234 },
				{ snd: "08 Bellcurve - Plateau.ogg", dur: 160 },
				{ snd: "09 Bellcurve - Freefall.ogg", dur: 220 },
				{ snd: "10 Bellcurve - Aftermath.ogg", dur: 163 }
			]
		});
	}
};