Warning: You are using TidyHTML mode! Pages MAY and probably WILL break. To disable, click here or append 'xxx-off=1' to the URL!

Register - Login
Views: 57893026
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - JCS - Stats - Latest Posts - Color Chart - Smilies
10-16-14 07:39:33 PM
fortyfive-antelope

Jul - Posts by interdpth
Pages: 1 2 3 4
interdpth
Member
Level: 18


Posts: 1/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 12-05-07 03:57:11 PM, in Double Helix Poll (last edited by interdpth at 12-05-07 04:00 PM) Link
Double Helix is the shape DNA takes, of course we all know this!
It's 2 bar like structures woven together to make something.

Double Helix is my Editor for Metroid Zero Mission and Metroid Fusion.

What happened to Zero Fission you ask?

Well, I got bored of coding it, decided to hop on to C++, and so for about 2 months now, i've been working on Double Helix. The fruits of my labor are close at hand, this time. I'll be keeping MF and MZM on the same level, instead of delaying progress of one of them for another. I'm currently finishing up the door code, and soon to be working on scroll data.
The level engine was entirely scrapped in turn for new, alot quicker.

I present to all of you a few pictures.











interdpth
Member
Level: 18


Posts: 2/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 12-05-07 10:40:35 PM, in Double Helix Poll Link
Neko, yes they are.

Marckus, VB6.
interdpth
Member
Level: 18


Posts: 3/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 12-11-07 08:28:00 PM, in Double Helix Poll Link
Ok, new years release!

Here's a peek into the future, this is the how the GUI you will be using works,

On my list.

I need to finish up the scroll editor, do one more thing to doors, bring up the user friendliness, write a short guide, and a few test hacks!

interdpth
Member
Level: 18


Posts: 4/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 12-12-07 07:47:23 PM, in Double Helix Poll Link
What's the ugly fusion error?
interdpth
Member
Level: 18


Posts: 5/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 12-22-07 01:45:47 AM, in Double Helix Poll Link
Just wanted to let you all know.

The GUI has been finalized there is one more item left I need to figure out related to doors before release. Should be simple.

DH will
edit levels
doors
scroll data
and more door stuff!

then you'll have to wait 3 to 6 months for the next release or donate and get biweekly builds and my friendship.

See you all Jan 1st at midnight CST
interdpth
Member
Level: 18


Posts: 6/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 12-22-07 07:54:06 PM, in Double Helix Poll Link
Of course it will! All the bugs are flattened, just got a few more things to do, then I code the website and create the file and all will be good come New Years.
interdpth
Member
Level: 18


Posts: 7/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 01-01-08 01:10:06 AM, in Double Helix Poll Link
http://interdpth.otakudou.com/DoubleHelix.zip <--Release copy and paste
It was made with Dialogs and direct API code in C/C++
It's just the first release and I'm still getting used to C/C++ after having coded in VB6 for so long.

I think it's great so far.
interdpth
Member
Level: 18


Posts: 8/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 01-01-08 04:23:47 AM, in Double Helix Poll Link
Yep, those and CreateWindowEX
interdpth
Member
Level: 18


Posts: 9/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 01-01-08 11:17:04 AM, in Double Helix Poll Link
You need to place the corresponding clipdata at the same location as the tile, read the manual that is included.
interdpth
Member
Level: 18


Posts: 10/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 01-11-08 01:25:24 AM, in Double Helix Poll Link
haven't updated in a while
soo

What i've been working on for some while now





Just started doing the MF side

only 2 good things to show :/ an unused sprite and nightmare



interdpth
Member
Level: 18


Posts: 11/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 01-25-08 11:11:32 PM, in Double Helix Poll Link
Ok, and now the long awaited adue

Just some pics of rendered levels with sprites showing

DUE TO CHANGE THREAD









DH displays them from ROM with nothing but an offset file that tells it where stuff is.

Because the programmers for the game were mean more pics tonight
interdpth
Member
Level: 18


Posts: 12/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 08-10-08 07:19:00 PM, in Wario Land 4 Hacking (last edited by interdpth at 08-10-08 07:23 PM) Link
Since it uses ZM and MF engine,

It uses 4 layers,
Foreground, Level, Back Layer and clipdata


I'd guess it uses the same level compression so here's the code that I use for ZM and MF works perfectly.



long ZMUncompRle(u8 arg0, u8 *arg1, u8 *arg2)
{

u8 *src= (u8*)arg1, *dst= (u8*)arg2;

u32 jj,ii, nn;
u32 ctrl, type;

type= 0;
nn= 0x3000;


switch(arg0)
{
case 0:
type= 0x0800; break;
case 3:
type= 0x2000; break;
default:
type= 0x1000;
}

nn= 0x2000;


//DMAFill(3, 0, arg2, nn, 16);

for(ii=0; ii<2; ii++)
{
dst= (u8*)&arg2[ii];
if(*src++ == 1) // 8 control field
{
while(1)
{
ctrl= *src++;
if(ctrl == 0)
break;

else if(ctrl & 0x80)
{
nn= ctrl & 0x7F;
if(*src)
for(jj=0; jj<nn; jj++)
dst[2*jj]= *src;
src++;
}
else
{
nn= ctrl;
for(jj=0; jj<nn; jj++)
dst[2*jj]= src[jj];
src += nn;
}

dst += 2*nn;
}
}
else // RLE16
{
while(1)
{
ctrl= src[0]<<8 | src[1];
src += 2;
if(ctrl == 0)
break;

if(ctrl & 0x8000)
{
nn= ctrl & 0x7FFF;
if(*src)
for(jj=0; jj<nn; jj++)
dst[2*jj]= *src;
src++;
}
else
{
nn= ctrl;
for(jj=0; jj<nn; jj++)
dst[2*jj]= src[jj];
src += nn;
}
dst += 2*nn;
}
}
}

return type;
}

long compress(u8 cmp[], u8 uncmp[], long sze)
{
//int sze = 3;




int cmpptr=0;
int sizeptr=0;
int dataptr=0;
u16 rl=0;

int samebytecount=0;

for(int j=0; j<2; j++)
{
cmp[cmpptr++]=1;
while(sze>dataptr)
{
rl=2;
while(uncmp[dataptr]==uncmp[dataptr+2] && uncmp[dataptr+2]==uncmp[dataptr+4] && rl<0x7F && sze>dataptr)
{

dataptr+=2;
rl++;
}

if(rl>2)
{
// printf("run found s=%02X\n", rl);
cmp[cmpptr++]=(u8) ((rl | 0x80)&0xFF);
cmp[cmpptr++]=uncmp[dataptr];
dataptr+=4;
}

sizeptr=cmpptr;
cmpptr++;

rl=0;
while((uncmp[dataptr]!=uncmp[dataptr+2] || uncmp[dataptr+2]!=uncmp[dataptr+4]) && rl<0x7F && sze>dataptr)
{

cmp[cmpptr++]=uncmp[dataptr];
dataptr+=2;
rl++;
}
// printf("norun found s=%02X\n", rl);
if(rl!=0)
cmp[sizeptr]=(u8) rl;
else
cmpptr--;
}
cmp[cmpptr++]=0;


dataptr=1;
}










return cmpptr;

}

My editor for ZM/MF will be open source on Jan 1st '09 so you could easily just put the game in there
interdpth
Member
Level: 18


Posts: 13/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 08-13-08 02:11:57 AM, in Stupid Question 2: Favorite music while programming? Link
Really hard metal. Speeds up my thought process.
interdpth
Member
Level: 18


Posts: 14/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 02-01-09 03:40:26 AM, in I can't believe I made this Link
echo: function (t) { return t; },
about: function (t) { return ""+
"Xkeeper - xkeeper.net" +
"
AIM: XkeeperNaN - e-mail: xkeeper@gmail.com";
},
irc: function (t) { return "irc.badnik.net ~ #x"; },
help: function (t) { return "Enter commands, stupid."; },
commands: function (t) { return "Enter help, stupid."; },
man: function (t) { return "I prefer women, actually."; },
rm: function (t) { return "rm: not a chance"; },
tweaker: function (t) { return "Sorry, command is too gay to run"; },
scarredsun: function (t) { return "Sorry, command is too awesome to run"; },
ls: function (t) { return ls.innerHTML; },
mrew: function (t) { return "Mrew!"; },
reboot: function (t) { window.location = window.location; return ""; },
sudo: function (t) { return "Sudowoodo?"; },
}






LOL HIDDEN COMMANDS.
interdpth
Member
Level: 18


Posts: 15/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 02-01-09 03:47:14 AM, in I can't believe I made this Link
BUT IT WASN'T DONE BEFORE

SO IN B4 WIN D:
interdpth
Member
Level: 18


Posts: 16/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 02-01-09 03:51:58 AM, in I can't believe I made this Link
Birthday boy is the winner.
interdpth
Member
Level: 18


Posts: 17/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 02-02-09 07:25:17 PM, in I can't believe I made this Link
Also xkeeper, jul.rustedlogic.net is harder to remember then board2

You can tell I don't like bookmarks
interdpth
Member
Level: 18


Posts: 18/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 02-02-09 07:30:58 PM, in I can't believe I made this Link
DO YOU WANT ME HERE?

DO YOU WANT ME IN YOUR IRC?

WHAT DO YOU WANT?
interdpth
Member
Level: 18


Posts: 19/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 02-02-09 08:01:07 PM, in I can't believe I made this Link
Just having fun
interdpth
Member
Level: 18


Posts: 20/62
EXP: 24932
For next: 4965

Since: 08-26-07


Since last post: 424 days
Last activity: 389 days

Posted on 02-02-09 09:53:38 PM, in I can't believe I made this Link
What an ass
Pages: 1 2 3 4
Jul - Posts by interdpth






Rusted Logic

Acmlmboard - 07/23/2013 b378.03
©2000-2013 Acmlm, Xkeeper, Inuyasha, et al.

25 database queries, 52 query cache hits.
Query execution time:  0.101108 seconds
Script execution time:  0.111120 seconds
Total render time:  0.212227 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 94 column 11 - Warning: <form> isn't allowed in <table> elements
line 93 column 10 - Info: <table> previously mentioned
line 95 column 11 - Warning: missing <tr>
line 95 column 124 - Warning: missing </font> before </td>
line 99 column 16 - Warning: plain text isn't allowed in <tr> elements
line 95 column 11 - Info: <tr> previously mentioned
line 100 column 68 - Warning: <nobr> is not approved by W3C
line 100 column 68 - Warning: missing </nobr> before </td>
line 117 column 68 - Warning: <nobr> is not approved by W3C
line 117 column 68 - Warning: missing </nobr> before <tr>
line 141 column 35 - Warning: missing <tr>
line 141 column 50 - Warning: missing </font> before </td>
line 141 column 136 - Warning: missing </font> before </table>
line 143 column 35 - Warning: missing <tr>
line 143 column 97 - Warning: unescaped & or unknown entity "&page"
line 143 column 130 - Warning: unescaped & or unknown entity "&page"
line 143 column 163 - Warning: unescaped & or unknown entity "&page"
line 143 column 50 - Warning: missing </font> before </td>
line 143 column 198 - Warning: missing </font> before </table>
line 150 column 9 - Warning: <div> isn't allowed in <tr> elements
line 149 column 9 - Info: <tr> previously mentioned
line 152 column 9 - Warning: missing <tr>
line 166 column 13 - Warning: missing <tr>
line 167 column 27 - Warning: <nobr> is not approved by W3C
line 193 column 15 - Warning: missing <td>
line 194 column 9 - Warning: <div> isn't allowed in <tr> elements
line 193 column 15 - Info: <tr> previously mentioned
line 196 column 9 - Warning: missing <tr>
line 210 column 13 - Warning: missing <tr>
line 211 column 27 - Warning: <nobr> is not approved by W3C
line 217 column 15 - Warning: missing <td>
line 218 column 9 - Warning: <div> isn't allowed in <tr> elements
line 217 column 15 - Info: <tr> previously mentioned
line 220 column 9 - Warning: missing <tr>
line 234 column 13 - Warning: missing <tr>
line 235 column 27 - Warning: <nobr> is not approved by W3C
line 247 column 15 - Warning: missing <td>
line 248 column 9 - Warning: <div> isn't allowed in <tr> elements
line 247 column 15 - Info: <tr> previously mentioned
line 250 column 9 - Warning: missing <tr>
line 264 column 13 - Warning: missing <tr>
line 265 column 27 - Warning: <nobr> is not approved by W3C
line 269 column 15 - Warning: missing <td>
line 270 column 9 - Warning: <div> isn't allowed in <tr> elements
line 269 column 15 - Info: <tr> previously mentioned
line 272 column 9 - Warning: missing <tr>
line 286 column 13 - Warning: missing <tr>
line 287 column 27 - Warning: <nobr> is not approved by W3C
line 303 column 15 - Warning: missing <td>
line 304 column 9 - Warning: <div> isn't allowed in <tr> elements
line 303 column 15 - Info: <tr> previously mentioned
line 306 column 9 - Warning: missing <tr>
line 320 column 13 - Warning: missing <tr>
line 321 column 27 - Warning: <nobr> is not approved by W3C
line 325 column 15 - Warning: missing <td>
line 326 column 9 - Warning: <div> isn't allowed in <tr> elements
line 325 column 15 - Info: <tr> previously mentioned
line 328 column 9 - Warning: missing <tr>
line 342 column 13 - Warning: missing <tr>
line 343 column 27 - Warning: <nobr> is not approved by W3C
line 351 column 15 - Warning: missing <td>
line 352 column 9 - Warning: <div> isn't allowed in <tr> elements
line 351 column 15 - Info: <tr> previously mentioned
line 354 column 9 - Warning: missing <tr>
line 368 column 13 - Warning: missing <tr>
line 369 column 27 - Warning: <nobr> is not approved by W3C
line 373 column 15 - Warning: missing <td>
line 374 column 9 - Warning: <div> isn't allowed in <tr> elements
line 373 column 15 - Info: <tr> previously mentioned
line 376 column 9 - Warning: missing <tr>
line 390 column 13 - Warning: missing <tr>
line 391 column 27 - Warning: <nobr> is not approved by W3C
line 395 column 15 - Warning: missing <td>
line 396 column 9 - Warning: <div> isn't allowed in <tr> elements
line 395 column 15 - Info: <tr> previously mentioned
line 398 column 9 - Warning: missing <tr>
line 412 column 13 - Warning: missing <tr>
line 413 column 27 - Warning: <nobr> is not approved by W3C
line 432 column 15 - Warning: missing <td>
line 433 column 9 - Warning: <div> isn't allowed in <tr> elements
line 432 column 15 - Info: <tr> previously mentioned
line 435 column 9 - Warning: missing <tr>
line 449 column 13 - Warning: missing <tr>
line 450 column 27 - Warning: <nobr> is not approved by W3C
line 470 column 15 - Warning: missing <td>
line 471 column 9 - Warning: <div> isn't allowed in <tr> elements
line 470 column 15 - Info: <tr> previously mentioned
line 473 column 9 - Warning: missing <tr>
line 487 column 13 - Warning: missing <tr>
line 488 column 27 - Warning: <nobr> is not approved by W3C
line 528 column 951 - Warning: unescaped & or unknown entity "&arg2"
line 537 column 1326 - Warning: unescaped & which should be written as &amp;
line 539 column 1418 - Warning: unescaped & which should be written as &amp;
line 565 column 2593 - Warning: unescaped & which should be written as &amp;
line 567 column 2690 - Warning: unescaped & which should be written as &amp;
line 608 column 3984 - Warning: unescaped & which should be written as &amp;
line 608 column 3985 - Warning: unescaped & which should be written as &amp;
line 608 column 4030 - Warning: unescaped & which should be written as &amp;
line 608 column 4031 - Warning: unescaped & which should be written as &amp;
line 608 column 4044 - Warning: unescaped & which should be written as &amp;
line 608 column 4045 - Warning: unescaped & which should be written as &amp;
line 618 column 4460 - Warning: unescaped & or unknown entity "&0xFF"
line 627 column 4892 - Warning: unescaped & which should be written as &amp;
line 627 column 4893 - Warning: unescaped & which should be written as &amp;
line 627 column 4906 - Warning: unescaped & which should be written as &amp;
line 627 column 4907 - Warning: unescaped & which should be written as &amp;
line 660 column 15 - Warning: missing <td>
line 661 column 9 - Warning: <div> isn't allowed in <tr> elements
line 660 column 15 - Info: <tr> previously mentioned
line 663 column 9 - Warning: missing <tr>
line 677 column 13 - Warning: missing <tr>
line 678 column 27 - Warning: <nobr> is not approved by W3C
line 682 column 15 - Warning: missing <td>
line 683 column 9 - Warning: <div> isn't allowed in <tr> elements
line 682 column 15 - Info: <tr> previously mentioned
line 685 column 9 - Warning: missing <tr>
line 699 column 13 - Warning: missing <tr>
line 700 column 27 - Warning: <nobr> is not approved by W3C
line 727 column 15 - Warning: missing <td>
line 728 column 9 - Warning: <div> isn't allowed in <tr> elements
line 727 column 15 - Info: <tr> previously mentioned
line 730 column 9 - Warning: missing <tr>
line 744 column 13 - Warning: missing <tr>
line 745 column 27 - Warning: <nobr> is not approved by W3C
line 751 column 15 - Warning: missing <td>
line 752 column 9 - Warning: <div> isn't allowed in <tr> elements
line 751 column 15 - Info: <tr> previously mentioned
line 754 column 9 - Warning: missing <tr>
line 768 column 13 - Warning: missing <tr>
line 769 column 27 - Warning: <nobr> is not approved by W3C
line 773 column 15 - Warning: missing <td>
line 774 column 9 - Warning: <div> isn't allowed in <tr> elements
line 773 column 15 - Info: <tr> previously mentioned
line 776 column 9 - Warning: missing <tr>
line 790 column 13 - Warning: missing <tr>
line 791 column 27 - Warning: <nobr> is not approved by W3C
line 797 column 15 - Warning: missing <td>
line 798 column 9 - Warning: <div> isn't allowed in <tr> elements
line 797 column 15 - Info: <tr> previously mentioned
line 800 column 9 - Warning: missing <tr>
line 814 column 13 - Warning: missing <tr>
line 815 column 27 - Warning: <nobr> is not approved by W3C
line 823 column 15 - Warning: missing <td>
line 824 column 9 - Warning: <div> isn't allowed in <tr> elements
line 823 column 15 - Info: <tr> previously mentioned
line 826 column 9 - Warning: missing <tr>
line 840 column 13 - Warning: missing <tr>
line 841 column 27 - Warning: <nobr> is not approved by W3C
line 845 column 15 - Warning: missing <td>
line 846 column 9 - Warning: <div> isn't allowed in <tr> elements
line 845 column 15 - Info: <tr> previously mentioned
line 848 column 9 - Warning: missing <tr>
line 862 column 13 - Warning: missing <tr>
line 863 column 27 - Warning: <nobr> is not approved by W3C
line 868 column 17 - Warning: discarding unexpected <table>
line 871 column 35 - Warning: missing <tr>
line 871 column 97 - Warning: unescaped & or unknown entity "&page"
line 871 column 130 - Warning: unescaped & or unknown entity "&page"
line 871 column 163 - Warning: unescaped & or unknown entity "&page"
line 871 column 50 - Warning: missing </font> before </td>
line 871 column 198 - Warning: missing </font> before </table>
line 873 column 35 - Warning: missing <tr>
line 873 column 50 - Warning: missing </font> before </td>
line 873 column 136 - Warning: missing </font> before </table>
line 875 column 17 - Warning: discarding unexpected </textarea>
line 875 column 28 - Warning: discarding unexpected </form>
line 875 column 35 - Warning: discarding unexpected </embed>
line 875 column 43 - Warning: discarding unexpected </noembed>
line 875 column 53 - Warning: discarding unexpected </noscript>
line 875 column 64 - Warning: discarding unexpected </noembed>
line 875 column 74 - Warning: discarding unexpected </embed>
line 875 column 82 - Warning: discarding unexpected </table>
line 875 column 90 - Warning: discarding unexpected </table>
line 884 column 9 - Warning: missing </font> before <table>
line 900 column 9 - Warning: inserting implicit <font>
line 912 column 23 - Warning: inserting implicit <font>
line 919 column 58 - Warning: discarding unexpected </font>
line 877 column 1 - Warning: missing </center>
line 91 column 9 - Warning: <img> lacks "alt" attribute
line 93 column 10 - Warning: <table> lacks "summary" attribute
line 95 column 63 - Warning: <img> lacks "alt" attribute
line 100 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 100 column 93 - Warning: <img> lacks "alt" attribute
line 117 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 117 column 98 - Warning: <img> lacks "alt" attribute
line 136 column 1 - Warning: <table> lacks "summary" attribute
line 136 column 240 - Warning: <td> attribute "bgcolor" lacks value
line 141 column 17 - Warning: <table> lacks "summary" attribute
line 143 column 17 - Warning: <table> lacks "summary" attribute
line 151 column 9 - Warning: <table> lacks "summary" attribute
line 155 column 22 - Warning: <img> lacks "alt" attribute
line 155 column 63 - Warning: <img> lacks "alt" attribute
line 155 column 111 - Warning: <img> lacks "alt" attribute
line 155 column 161 - Warning: <img> lacks "alt" attribute
line 162 column 15 - Warning: <img> lacks "alt" attribute
line 165 column 11 - Warning: <table> lacks "summary" attribute
line 180 column 818 - Warning: <img> lacks "alt" attribute
line 181 column 888 - Warning: <img> lacks "alt" attribute
line 182 column 958 - Warning: <img> lacks "alt" attribute
line 183 column 1028 - Warning: <img> lacks "alt" attribute
line 184 column 1098 - Warning: <img> lacks "alt" attribute
line 185 column 1166 - Warning: <img> lacks "alt" attribute
line 186 column 1234 - Warning: <img> lacks "alt" attribute
line 187 column 1302 - Warning: <img> lacks "alt" attribute
line 188 column 1370 - Warning: <img> lacks "alt" attribute
line 189 column 1439 - Warning: <img> lacks "alt" attribute
line 190 column 1507 - Warning: <img> lacks "alt" attribute
line 195 column 9 - Warning: <table> lacks "summary" attribute
line 199 column 22 - Warning: <img> lacks "alt" attribute
line 199 column 63 - Warning: <img> lacks "alt" attribute
line 199 column 111 - Warning: <img> lacks "alt" attribute
line 199 column 161 - Warning: <img> lacks "alt" attribute
line 206 column 15 - Warning: <img> lacks "alt" attribute
line 209 column 11 - Warning: <table> lacks "summary" attribute
line 219 column 9 - Warning: <table> lacks "summary" attribute
line 223 column 22 - Warning: <img> lacks "alt" attribute
line 223 column 63 - Warning: <img> lacks "alt" attribute
line 223 column 111 - Warning: <img> lacks "alt" attribute
line 223 column 161 - Warning: <img> lacks "alt" attribute
line 230 column 15 - Warning: <img> lacks "alt" attribute
line 233 column 11 - Warning: <table> lacks "summary" attribute
line 245 column 359 - Warning: <img> lacks "alt" attribute
line 249 column 9 - Warning: <table> lacks "summary" attribute
line 253 column 22 - Warning: <img> lacks "alt" attribute
line 253 column 63 - Warning: <img> lacks "alt" attribute
line 253 column 111 - Warning: <img> lacks "alt" attribute
line 253 column 161 - Warning: <img> lacks "alt" attribute
line 260 column 15 - Warning: <img> lacks "alt" attribute
line 263 column 11 - Warning: <table> lacks "summary" attribute
line 267 column 103 - Warning: <img> proprietary attribute value "absmiddle"
line 267 column 103 - Warning: <img> lacks "alt" attribute
line 271 column 9 - Warning: <table> lacks "summary" attribute
line 275 column 22 - Warning: <img> lacks "alt" attribute
line 275 column 63 - Warning: <img> lacks "alt" attribute
line 275 column 111 - Warning: <img> lacks "alt" attribute
line 275 column 161 - Warning: <img> lacks "alt" attribute
line 282 column 15 - Warning: <img> lacks "alt" attribute
line 285 column 11 - Warning: <table> lacks "summary" attribute
line 299 column 439 - Warning: <img> proprietary attribute value "absmiddle"
line 299 column 439 - Warning: <img> lacks "alt" attribute
line 305 column 9 - Warning: <table> lacks "summary" attribute
line 309 column 22 - Warning: <img> lacks "alt" attribute
line 309 column 63 - Warning: <img> lacks "alt" attribute
line 309 column 111 - Warning: <img> lacks "alt" attribute
line 309 column 161 - Warning: <img> lacks "alt" attribute
line 316 column 15 - Warning: <img> lacks "alt" attribute
line 319 column 11 - Warning: <table> lacks "summary" attribute
line 327 column 9 - Warning: <table> lacks "summary" attribute
line 331 column 22 - Warning: <img> lacks "alt" attribute
line 331 column 63 - Warning: <img> lacks "alt" attribute
line 331 column 111 - Warning: <img> lacks "alt" attribute
line 331 column 161 - Warning: <img> lacks "alt" attribute
line 338 column 15 - Warning: <img> lacks "alt" attribute
line 341 column 11 - Warning: <table> lacks "summary" attribute
line 347 column 309 - Warning: <img> proprietary attribute value "absmiddle"
line 347 column 309 - Warning: <img> lacks "alt" attribute
line 353 column 9 - Warning: <table> lacks "summary" attribute
line 357 column 22 - Warning: <img> lacks "alt" attribute
line 357 column 63 - Warning: <img> lacks "alt" attribute
line 357 column 111 - Warning: <img> lacks "alt" attribute
line 357 column 161 - Warning: <img> lacks "alt" attribute
line 364 column 15 - Warning: <img> lacks "alt" attribute
line 367 column 11 - Warning: <table> lacks "summary" attribute
line 371 column 103 - Warning: <img> proprietary attribute value "absmiddle"
line 371 column 103 - Warning: <img> lacks "alt" attribute
line 375 column 9 - Warning: <table> lacks "summary" attribute
line 379 column 22 - Warning: <img> lacks "alt" attribute
line 379 column 63 - Warning: <img> lacks "alt" attribute
line 379 column 111 - Warning: <img> lacks "alt" attribute
line 379 column 161 - Warning: <img> lacks "alt" attribute
line 386 column 15 - Warning: <img> lacks "alt" attribute
line 389 column 11 - Warning: <table> lacks "summary" attribute
line 397 column 9 - Warning: <table> lacks "summary" attribute
line 401 column 22 - Warning: <img> lacks "alt" attribute
line 401 column 63 - Warning: <img> lacks "alt" attribute
line 401 column 111 - Warning: <img> lacks "alt" attribute
line 401 column 161 - Warning: <img> lacks "alt" attribute
line 408 column 15 - Warning: <img> lacks "alt" attribute
line 411 column 11 - Warning: <table> lacks "summary" attribute
line 419 column 163 - Warning: <img> lacks "alt" attribute
line 420 column 233 - Warning: <img> lacks "alt" attribute
line 421 column 303 - Warning: <img> lacks "alt" attribute
line 422 column 373 - Warning: <img> lacks "alt" attribute
line 423 column 443 - Warning: <img> lacks "alt" attribute
line 427 column 616 - Warning: <img> lacks "alt" attribute
line 428 column 689 - Warning: <img> lacks "alt" attribute
line 434 column 9 - Warning: <table> lacks "summary" attribute
line 438 column 22 - Warning: <img> lacks "alt" attribute
line 438 column 63 - Warning: <img> lacks "alt" attribute
line 438 column 111 - Warning: <img> lacks "alt" attribute
line 438 column 161 - Warning: <img> lacks "alt" attribute
line 445 column 15 - Warning: <img> lacks "alt" attribute
line 448 column 11 - Warning: <table> lacks "summary" attribute
line 457 column 201 - Warning: <img> lacks "alt" attribute
line 458 column 257 - Warning: <img> lacks "alt" attribute
line 459 column 310 - Warning: <img> lacks "alt" attribute
line 460 column 363 - Warning: <img> lacks "alt" attribute
line 461 column 416 - Warning: <img> lacks "alt" attribute
line 462 column 469 - Warning: <img> lacks "alt" attribute
line 468 column 695 - Warning: <img> proprietary attribute value "absmiddle"
line 468 column 695 - Warning: <img> lacks "alt" attribute
line 472 column 9 - Warning: <table> lacks "summary" attribute
line 476 column 22 - Warning: <img> lacks "alt" attribute
line 476 column 63 - Warning: <img> lacks "alt" attribute
line 476 column 111 - Warning: <img> lacks "alt" attribute
line 476 column 161 - Warning: <img> lacks "alt" attribute
line 483 column 15 - Warning: <img> lacks "alt" attribute
line 486 column 11 - Warning: <table> lacks "summary" attribute
line 658 column 5809 - Warning: <img> proprietary attribute value "absmiddle"
line 658 column 5809 - Warning: <img> lacks "alt" attribute
line 662 column 9 - Warning: <table> lacks "summary" attribute
line 666 column 22 - Warning: <img> lacks "alt" attribute
line 666 column 63 - Warning: <img> lacks "alt" attribute
line 666 column 111 - Warning: <img> lacks "alt" attribute
line 666 column 161 - Warning: <img> lacks "alt" attribute
line 673 column 15 - Warning: <img> lacks "alt" attribute
line 676 column 11 - Warning: <table> lacks "summary" attribute
line 684 column 9 - Warning: <table> lacks "summary" attribute
line 688 column 22 - Warning: <img> lacks "alt" attribute
line 688 column 63 - Warning: <img> lacks "alt" attribute
line 688 column 111 - Warning: <img> lacks "alt" attribute
line 688 column 161 - Warning: <img> lacks "alt" attribute
line 695 column 15 - Warning: <img> lacks "alt" attribute
line 698 column 11 - Warning: <table> lacks "summary" attribute
line 729 column 9 - Warning: <table> lacks "summary" attribute
line 733 column 22 - Warning: <img> lacks "alt" attribute
line 733 column 63 - Warning: <img> lacks "alt" attribute
line 733 column 111 - Warning: <img> lacks "alt" attribute
line 733 column 161 - Warning: <img> lacks "alt" attribute
line 740 column 15 - Warning: <img> lacks "alt" attribute
line 743 column 11 - Warning: <table> lacks "summary" attribute
line 753 column 9 - Warning: <table> lacks "summary" attribute
line 757 column 22 - Warning: <img> lacks "alt" attribute
line 757 column 63 - Warning: <img> lacks "alt" attribute
line 757 column 111 - Warning: <img> lacks "alt" attribute
line 757 column 161 - Warning: <img> lacks "alt" attribute
line 764 column 15 - Warning: <img> lacks "alt" attribute
line 767 column 11 - Warning: <table> lacks "summary" attribute
line 775 column 9 - Warning: <table> lacks "summary" attribute
line 779 column 22 - Warning: <img> lacks "alt" attribute
line 779 column 63 - Warning: <img> lacks "alt" attribute
line 779 column 111 - Warning: <img> lacks "alt" attribute
line 779 column 161 - Warning: <img> lacks "alt" attribute
line 786 column 15 - Warning: <img> lacks "alt" attribute
line 789 column 11 - Warning: <table> lacks "summary" attribute
line 793 column 141 - Warning: <img> proprietary attribute value "absmiddle"
line 793 column 141 - Warning: <img> lacks "alt" attribute
line 799 column 9 - Warning: <table> lacks "summary" attribute
line 803 column 22 - Warning: <img> lacks "alt" attribute
line 803 column 63 - Warning: <img> lacks "alt" attribute
line 803 column 111 - Warning: <img> lacks "alt" attribute
line 803 column 161 - Warning: <img> lacks "alt" attribute
line 810 column 15 - Warning: <img> lacks "alt" attribute
line 813 column 11 - Warning: <table> lacks "summary" attribute
line 821 column 155 - Warning: <img> proprietary attribute value "absmiddle"
line 821 column 155 - Warning: <img> lacks "alt" attribute
line 825 column 9 - Warning: <table> lacks "summary" attribute
line 829 column 22 - Warning: <img> lacks "alt" attribute
line 829 column 63 - Warning: <img> lacks "alt" attribute
line 829 column 111 - Warning: <img> lacks "alt" attribute
line 829 column 161 - Warning: <img> lacks "alt" attribute
line 836 column 15 - Warning: <img> lacks "alt" attribute
line 839 column 11 - Warning: <table> lacks "summary" attribute
line 843 column 89 - Warning: <img> proprietary attribute value "absmiddle"
line 843 column 89 - Warning: <img> lacks "alt" attribute
line 847 column 9 - Warning: <table> lacks "summary" attribute
line 851 column 22 - Warning: <img> lacks "alt" attribute
line 851 column 63 - Warning: <img> lacks "alt" attribute
line 851 column 111 - Warning: <img> lacks "alt" attribute
line 851 column 161 - Warning: <img> lacks "alt" attribute
line 858 column 15 - Warning: <img> lacks "alt" attribute
line 861 column 11 - Warning: <table> lacks "summary" attribute
line 865 column 85 - Warning: <img> proprietary attribute value "absmiddle"
line 865 column 85 - Warning: <img> lacks "alt" attribute
line 146 column 17 - Warning: <table> lacks "summary" attribute
line 871 column 17 - Warning: <table> lacks "summary" attribute
line 873 column 17 - Warning: <table> lacks "summary" attribute
line 879 column 1 - Warning: <img> lacks "alt" attribute
line 880 column 1 - Warning: <img> lacks "alt" attribute
line 881 column 1 - Warning: <img> lacks "alt" attribute
line 888 column 9 - Warning: <table> lacks "summary" attribute
line 890 column 25 - Warning: <img> lacks "alt" attribute
line 900 column 67 - Warning: <img> lacks "alt" attribute
line 920 column 17 - Warning: <table> lacks "summary" attribute
line 141 column 136 - Warning: trimming empty <font>
line 143 column 198 - Warning: trimming empty <font>
line 845 column 15 - Warning: trimming empty <tr>
line 871 column 198 - Warning: trimming empty <font>
line 873 column 136 - Warning: trimming empty <font>
line 153 column 11 - Warning: <a> cannot copy name attribute to id
line 197 column 11 - Warning: <a> cannot copy name attribute to id
line 221 column 11 - Warning: <a> cannot copy name attribute to id
line 251 column 11 - Warning: <a> cannot copy name attribute to id
line 273 column 11 - Warning: <a> cannot copy name attribute to id
line 307 column 11 - Warning: <a> cannot copy name attribute to id
line 329 column 11 - Warning: <a> cannot copy name attribute to id
line 355 column 11 - Warning: <a> cannot copy name attribute to id
line 377 column 11 - Warning: <a> cannot copy name attribute to id
line 399 column 11 - Warning: <a> cannot copy name attribute to id
line 436 column 11 - Warning: <a> cannot copy name attribute to id
line 474 column 11 - Warning: <a> cannot copy name attribute to id
line 664 column 11 - Warning: <a> cannot copy name attribute to id
line 686 column 11 - Warning: <a> cannot copy name attribute to id
line 731 column 11 - Warning: <a> cannot copy name attribute to id
line 755 column 11 - Warning: <a> cannot copy name attribute to id
line 777 column 11 - Warning: <a> cannot copy name attribute to id
line 801 column 11 - Warning: <a> cannot copy name attribute to id
line 827 column 11 - Warning: <a> cannot copy name attribute to id
line 849 column 11 - Warning: <a> cannot copy name attribute to id
Info: Document content looks like HTML Proprietary
Info: No system identifier in emitted doctype
388 warnings, 0 errors were found!


The table summary attribute should be used to describe
the table structure. It is very helpful for people using
non-visual browsers. The scope and headers attributes for
table cells are useful for specifying which headers apply
to each table cell, enabling non-visual browsers to provide
a meaningful context for each cell.

The alt attribute should be used to give a short description
of an image; longer descriptions should be given with the
longdesc attribute which takes a URL linked to the description.
These measures are needed for people using non-graphical browsers.

For further advice on how to make your pages accessible
see http://www.w3.org/WAI/GL.
. You may also want to try
"http://www.cast.org/bobby/" which is a free Web-based
service for checking URLs for accessibility.

You are recommended to use CSS to specify the font and
properties such as its size and color. This will reduce
the size of HTML files and make them easier to maintain
compared with using <FONT> elements.

You are recommended to use CSS to control line wrapping.
Use "white-space: nowrap" to inhibit wrapping in place
of inserting <NOBR>...</NOBR> into the markup.

To learn more about HTML Tidy see http://tidy.sourceforge.net
Please fill bug reports and queries using the "tracker" on the Tidy web site.
Additionally, questions can be sent to html-tidy@w3.org
HTML and CSS specifications are available from http://www.w3.org/
Lobby your company to join W3C, see http://www.w3.org/Consortium