From 8f92829aab9e3c38f65e4f0f8d83a1293e237e54 Mon Sep 17 00:00:00 2001 From: lieuwe Date: Fri, 29 Jul 2011 21:54:35 +0800 Subject: [PATCH] IT WOOOOOORKS :D (fixed WIRE logic.) --- src/elements/wire.c | 20 ++++++++++---------- src/graphics.c | 2 ++ src/powder.c | 14 ++++++++++++++ 3 files changed, 26 insertions(+), 10 deletions(-) diff --git a/src/elements/wire.c b/src/elements/wire.c index da41bd122..abdb982c1 100644 --- a/src/elements/wire.c +++ b/src/elements/wire.c @@ -1,8 +1,7 @@ #include int update_WIRE(UPDATE_FUNC_ARGS) { - int s,r,rx,ry,count; - printf("FUCK"); + int s,r,rx,ry,count; s=pmap[y][x]; /* 0: wire @@ -11,22 +10,23 @@ int update_WIRE(UPDATE_FUNC_ARGS) { tmp is previous state, ctype is current state */ - parts[s>>8].tmp=parts[s>>8].ctype; - if(parts[s>>8].tmp==1){parts[s>>8].ctype=2;} - if(parts[s>>8].tmp==2){parts[s>>8].ctype=0;} + //parts[s>>8].tmp=parts[s>>8].ctype; + parts[s>>8].ctype=0; + if(parts[s>>8].tmp==1){parts[s>>8].ctype=2; return 0;} + if(parts[s>>8].tmp==2){parts[s>>8].ctype=0; return 0;} + count=0; for(rx=-1; rx<2; rx++) for(ry=-1; ry<2; ry++) { - count=0; - if(x+rx>=0 && y+ry>0 && x+rx=0 && y+ry>0 && x+rx>8].ctype=1;} + if((r&0xFF)==PT_SPRK){parts[s>>8].ctype=1; return 0;} if((r&0xFF)==PT_WIRE && parts[r>>8].tmp==1){count++;} } - if(count==1 || count==2) - parts[s>>8].ctype=1; } + if(count==1 || count==2) + parts[s>>8].ctype=1; return 0; } diff --git a/src/graphics.c b/src/graphics.c index ed60df1c8..5a1061e53 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -1732,6 +1732,8 @@ void draw_parts(pixel *vid) blendpixel(vid, nx, ny, 0, 0, 255, 255); else blendpixel(vid, nx, ny, 255, 255, 255, 255); + + continue; } if (cmode!=CM_HEAT) diff --git a/src/powder.c b/src/powder.c index a1fa55ea1..8e5139a5a 100644 --- a/src/powder.c +++ b/src/powder.c @@ -709,6 +709,11 @@ inline int create_part(int p, int x, int y, int tv)//the function for creating a if (t==PT_SPRK) { + if((pmap[y][x]>>8)==PT_WIRE) + { + parts[pmap[y][x]>>8].ctype=1; + return -1; + } if ((pmap[y][x]>>8)>=NPART || !((pmap[y][x]&0xFF)==PT_INST||(ptypes[pmap[y][x]&0xFF].properties&PROP_CONDUCTS))) return -1; if (parts[pmap[y][x]>>8].life!=0) @@ -1466,6 +1471,15 @@ void update_particles_i(pixel *vid, int start, int inc) } } } + //wire! + for (nx=0; nx>8)>=NPART || !r) + continue; + parts[r>>8].tmp=parts[r>>8].ctype; + } //game of life! if (ISGOL==1&&++CGOL>=GSPEED)//GSPEED is frames per generation {