Jump to content
IGNORED

sequencer circa Come to Daddy


Recommended Posts

I saw him play at the Essential Weekender in Finsbury Park in 1997.

 

He was wheeled onto stage in a wendy house and he did the whole gig from a laptop (couldn't tell you whether it was a mac or a pc though)

 

While his mates danced around on stage in those giant teddy bear costumes.

 

808 State, Squarepusher and Massive Attack were all at the same festy. Good times.

 

Anyway, I guess he was just using the laptop for playback so it didn't necessarily reflect what he was using to make music at the time

 

But ... the impression I get with Richard D James album and the Come to Daddy stuff that came after it was that it was mostly done on computers using software.

I think he was into laptops and computers and software at that stage didn't get back into analogue gear until a bit later.

Edited by zazen
  On 8/16/2011 at 2:06 AM, zazen said:

I saw him play at the Essential Weekender in Finsbury Park in 1997.

He was wheeled onto stage in a wendy house and he did the whole gig from a laptop (couldn't tell you whether it was a mac or a pc though)

n676894466_638033_736.jpg

around 95-98 he was using a home made sequencer (co written with GOL who designed Fruity Loops)

  On 8/3/2011 at 9:34 PM, marf said:

atari falcon would just be a sequencer no? I imagine very limited sampler ability. How would anyone know anyway

the Atari Falcon030 was capable of 16 tracks of audio recording to hard disk. the Falcon030 was actually a very very capable machine. i had one. i miss it.

  On 8/16/2011 at 9:33 AM, grit said:
  On 8/16/2011 at 2:06 AM, zazen said:

I saw him play at the Essential Weekender in Finsbury Park in 1997.

He was wheeled onto stage in a wendy house and he did the whole gig from a laptop (couldn't tell you whether it was a mac or a pc though)

n676894466_638033_736.jpg

 

yeah, that was it :beer:

Code Rich posted in SC forum.. Found here

 

http://www.audiosynt...-users-archive/

 

 

 

umm.. no how about this its the only NON sound patch i've got,apart from a

tron game patch I posted here a long time ago,

looks pretty,

oh its SC 1 aswell of course.

let me know what ye think.

 

defaudioout L R;

 

var zss ox oy oz thX thY thZ;

 

init{

 

guiPort.setPort;

 

changeOR;

 

`startStop.dspStart;

 

}

 

startStop{

 

1.dspKill;

 

}

 

start{

 

}

 

C {arg r g b;

 

^newColor(r*64000,g*64000,b*64000)

 

}

 

changeOR{

 

zss=13.getItemValue;

thX=9.getItemValue;

thY=10.getItemValue;

thZ=11.getItemValue;

drawGraph

 

}

 

move3{arg i,x,y,z;

 

r=i.itemRect;

l=r.left;

t=r.top;

w=r.width- 1;

h=r.height- 1;

c=rot(x,y,0.5,0.5,thX);x=c@0;y=c@1;

c=rot(x,z,0.5,0.5,thY);x=c@0;z=c@1;

c=rot(y,z,0.5,0.5,thZ);y=c@0;z=c@1;

x=x*w;

y=y*h;

z=z*13.679+zss;

idx=1/(z/10+1);

x1=l+x;

y1=t+h-y;

x2=l+(0.5*w);

y2=t+h-(0.5*h);

x3=(x1*idx)+(x2*(1- idx));

y3=(y1*idx)+(y2*(1- idx));

ox=x3;

oy=y3;

oz=z;

 

}

 

line3{arg i,x,y,z;

 

r=i.itemRect;

l=r.left;

t=r.top;

w=r.width- 1;

h=r.height- 1;

c=rot(x,y,0.5,0.5,thX);x=c@0;y=c@1;

c=rot(x,z,0.5,0.5,thY);x=c@0;z=c@1;

c=rot(y,z,0.5,0.5,thZ);y=c@0;z=c@1;

x=x*w;

y=y*h;

z=z*13.679+zss;

idx=1/(z/10+1);

x1=l+x;

y1=t+h-y;

x2=l+(0.5*w);

y2=t+h-(0.5*h);

x3=(x1*idx)+(x2*(1- idx));

y3=(y1*idx)+(y2*(1- idx));

c=clip3(x3,y3,ox,oy,l,t,h,w);

if (c@2) then

moveTo(c@0,c@1);

c=clip3(ox,oy,x3,y3,l,t,h,w);

lineTo(c@0,c@1);

end.if

ox=x3;

oy=y3;

oz=z;

 

}

 

rot{arg a1,a2,b1,b2,th2;

 

r=((((b1-a1)**2).realPart)+(((b2-a2)**2).realPart))**0.5;

th=atan((b2-a2)/(b1-a1));

if ((b1-a1)>=0) then

th=(th)- ¼;

end.if

th=th+th2;

if r!=0 then

x=b1+(r*cos(th));

y=b2+(r*sin(th));

else

x=a1;

y=a2;

end.if

^[x,y];

 

}

 

clip3{arg x1,y1,x2,y2,l,t,h,w;

if ((y1.asInt)!=(y2.asInt)) then

y3=y2.clip(t,t+h);

x3=((y3-y1)*(x2-x1)/(y2-y1)+x1);

else

x3=x2.clip(l,l+w);

y3=y2;

end

if ((x1.asInt)!=(x3.asInt)) then

x4=x3.clip(l,l+w);

y4=(x4-x1)*(y3-y1)/(x3-x1)+y1

else

x4=x3;

y4=y3.clip(t,t+h);

end

x4=x4.clip(l,l+w);

y4=y4.clip(t,t+h);

^[x4,y4,1];

}

 

drawGraph{

 

i=1;

r=i.itemRect;

l=r.left;

t=r.top;

w=r.width- 1;

h=r.height- 1;

 

C(0,0,0).backColor;

C(0,1,0).foreColor;

r.eraseRect;

 

xm=5.getItemValue;

ym=6.getItemValue;

zm=7.getItemValue;

dp=8.getItemValue;

 

x=0;

x1=(x/xm).sin+1/2;

y1=(x+¼/ym).sin+1/2;

z1=(x/zm).sin+1/2;

i.move3(x1,y1,z1);

 

for x=0;x<dp;x=x+1 do

x1=(x/xm).sin+1/2;

y1=(x+¼/ym).sin+1/2;

z1=(x/zm).sin+1/2;

ci=(x1).map(0,1,0.3,1);

ci=(y1).map(0,1,0.3,1);

ci=(z1).map(0,1,0.3,1);

C(x1,y1,z1).foreColor;

i.line3(x1,y1,z1);

end.for

 

}

eric

:)

Edited by marf
Guest sickboy

jts a 3d harmonograph

if rdj wrote it he would know that sc1 has the gui stuff stored separately

that why everyone else on that list at that time sends patches as bin uuencoded

 

http://www.porns.am/albums/IShotMyself/SelfShots%20%2873%29/alone_095.jpg

  • 11 years later...
  On 8/17/2011 at 10:52 PM, Joyrex said:

I wonder what's become of the Wendy house...

I came here looking for this picture, because the trap house up the street from me has the exact same Wendy House.

Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   1 Member

×
×