Register - Login
Views: 99364489
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-23-22 02:38:41 PM
Jul - SM64 Hacking (Archive) - Mario 64 Level Importer New poll - New thread - New reply
Pages: 1 2 3 4 5 6 7 8 9 10 ... 36 37 38 39 40 41 42 43 44 ... 46 47 48 49 50 51 52 53 54 55 Next newer thread | Next older thread
messiaen
Catgirl
Level: 68


Posts: 1000/1085
EXP: 2593952
For next: 134848

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 02-13-11 02:13:09 AM Link | Quote
A nice screenshot . Red line shows the level bounds.



Now I need to work on real-time scaling and some representation of Mario's size. Initially I think I'll just use his collision sphere to get an approximate size.
RDX

Level: 32


Posts: 167/198
EXP: 193352
For next: 13090

Since: 02-14-09


Since last post: 10.8 years
Last activity: 10.5 years

Posted on 02-13-11 02:55:31 AM Link | Quote
A very nice screenshot indeed. This is awesome.

____________________
Gazpacho146
Member
Level: 26


Posts: 21/131
EXP: 95991
For next: 6284

Since: 02-01-11

From: USA

Since last post: 9.6 years
Last activity: 9.6 years

Posted on 02-13-11 04:09:11 PM (last edited by Gazpacho146 at 02-13-11 01:09 PM) Link | Quote
Originally posted by KDJewl
Don't worry about it. But what do you mean by "all the warps"? Every warp is accessible from every level, as long as you change them in the "warp destinations" list in TT64. Or do you mean all the warp IDs? I can understand how that would be useful, as it would allow way more warps to and from the levels we import.

yeah thats what i meant so we could have a lot more warps





Originally posted by messiaen
A nice screenshot . Red line shows the level bounds. Now I need to work on real-time scaling and some representation of Mario's size. Initially I think I'll just use his collision sphere to get an approximate size.

is that the new version of the importer?
messiaen
Catgirl
Level: 68


Posts: 1001/1085
EXP: 2593952
For next: 134848

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 02-13-11 04:41:51 PM Link | Quote
Not sure if it'll be in the next importer, but probably so.

Here's a video showing what I've done so far:

<object width="640" height="390"><embed src="http://www.youtube.com/v/3_xWcv2PHRI?fs=1&hl=pt_BR" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="390"></embed></object>
KDJewl
Member
Level: 17


Posts: 25/47
EXP: 21139
For next: 3604

Since: 07-11-10

From: Elnora, AB

Since last post: 10.2 years
Last activity: 10.1 years

Posted on 02-13-11 05:11:06 PM Link | Quote
hey messiaen, is it too late to suggest new features for the importer? I'm asking because i went back and played The Missing Stars yesterday, and i was wondering if you could possibly include your "star counter" as an option in the importer? You know, the one on the bottom of the screen showing how many stars are in each level? BTW, have you figured anything out about why PJ64 gives me that error when using the music hack?
Gazpacho146
Member
Level: 26


Posts: 22/131
EXP: 95991
For next: 6284

Since: 02-01-11

From: USA

Since last post: 9.6 years
Last activity: 9.6 years

Posted on 02-13-11 06:55:18 PM (last edited by Gazpacho146 at 02-13-11 03:56 PM) Link | Quote
i made a red coin level and i set the place for the star to come out at and i pressed the Star# button and there was no list of star numbers on the side just blank and idk how to set it to star #4 does anyone know how?
i replaced bob-omb battlefield btw
object banks are: Peach and Yoshi, Ground Enemies, and bob-omb battlefield
whenever i get the 8 red coins it makes star #5 appear, so idk whats going on
and since there was no box for the star number, i just typed in a 4 in the star number box im really confused with this so any help is greatly appreciated
KDJewl
Member
Level: 17


Posts: 26/47
EXP: 21139
For next: 3604

Since: 07-11-10

From: Elnora, AB

Since last post: 10.2 years
Last activity: 10.1 years

Posted on 02-14-11 12:20:15 AM Link | Quote
Originally posted by Gazpacho146
i made a red coin level and i set the place for the star to come out at and i pressed the Star# button and there was no list of star numbers on the side just blank and idk how to set it to star #4 does anyone know how?
i replaced bob-omb battlefield btw
object banks are: Peach and Yoshi, Ground Enemies, and bob-omb battlefield
whenever i get the 8 red coins it makes star #5 appear, so idk whats going on
and since there was no box for the star number, i just typed in a 4 in the star number box im really confused with this so any help is greatly appreciated


Try typing a 3 in the box. if i'm correct, the star values begin at 0 (star 1) and go to 5 (star 6). Typing in a 3 should give the star the number 4. Thats odd that the choices don't show up, though...
messiaen
Catgirl
Level: 68


Posts: 1003/1085
EXP: 2593952
For next: 134848

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 02-14-11 01:52:28 AM Link | Quote
I tried to integrate the 3D viewer in the Importer and just realized some major downsides of the XNA framework . It uses a sucky "Content Pipeline" which requires models/textures to be pre-compiled to a specific binary format. Great for a game, terrible for a viewer.

When I'm working on the Visual Studio developing environment that's not an issue, however the very simple task of opening a model file at runtime is pure hell. From what I researched, currently there's no other solution than requiring the user to install the entire Game Studio package (more than 100MB!) and call the proper content builders. Unfortunately, no idea how to get over it yet.
Vinnyboiler
Catgirl
Level: 66


Posts: 663/1044
EXP: 2439695
For next: 22156

Since: 12-27-07

From: London, England

Since last post: 6 days
Last activity: 2 days

Posted on 02-14-11 05:46:17 PM Link | Quote

Originally posted by messiaen
I tried to integrate the 3D viewer in the Importer and just realized some major downsides of the XNA framework . It uses a sucky "Content Pipeline" which requires models/textures to be pre-compiled to a specific binary format. Great for a game, terrible for a viewer.

When I'm working on the Visual Studio developing environment that's not an issue, however the very simple task of opening a model file at runtime is pure hell. From what I researched, currently there's no other solution than requiring the user to install the entire Game Studio package (more than 100MB!) and call the proper content builders. Unfortunately, no idea how to get over it yet.



Why don't you release the 3D viewer as a separate program then?

The program could generate some text, which when pasted onto the OBJ importer, sets the scaling.

____________________

messiaen
Catgirl
Level: 68


Posts: 1005/1085
EXP: 2593952
For next: 134848

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 02-14-11 05:57:11 PM Link | Quote
Didn't explain it well. It will be a standalone program, launched via the importer.

In any case, unfortunately it will require the XNA Game Studio SDK to run .
xdaniel
980
Level: 64


Posts: 154/982
EXP: 2151469
For next: 62628

Since: 12-04-08

Pronouns: he/they
From: Germany

Since last post: 16 days
Last activity: 7 hours

Posted on 02-14-11 06:57:37 PM Link | Quote


>>ESTABLISHING LINK...DONE.    >>FETCHING POST DATA...DONE.    >>EXECUTING POSTDISP.BIN...


It's probably too late for that now (and more work anyway, I suppose), but couldn't you have used an OpenGL control (ex. OpenTK) for the 3D display? Well, if the importer is a Windows Forms application written in VB.NET or C# anyway...


____________________
cu xdaniel

Kagami - Desktop:

Kazari - Notebook:

messiaen
Catgirl
Level: 68


Posts: 1006/1085
EXP: 2593952
For next: 134848

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 02-14-11 09:32:22 PM Link | Quote
Originally posted by xdaniel
It's probably too late for that now (and more work anyway, I suppose), but couldn't you have used an OpenGL control (ex. OpenTK) for the 3D display? Well, if the importer is a Windows Forms application written in VB.NET or C# anyway...



That feature wasn't planned, I just downloaded the XNA Framework for another project (actually, a 2D one) along with a .OBJ Importer sample and realized that it could be used with the importer with almost zero work (indeed, pretty much all the work I did was just to get the camera and other matrix transformations working).

I wouldn't mind redoing it in OpenTK if there are some out-of-the-box examples of an .OBJ loader/renderer, since my 3D programming knowledge is next to zero.

By the way, how is your OpenTK Zelda viewer coming along? Is the source available at some repository?
xdaniel
980
Level: 64


Posts: 156/982
EXP: 2151469
For next: 62628

Since: 12-04-08

Pronouns: he/they
From: Germany

Since last post: 16 days
Last activity: 7 hours

Posted on 02-15-11 01:23:46 AM Link | Quote


>>ESTABLISHING LINK...DONE.    >>FETCHING POST DATA...DONE.    >>EXECUTING POSTDISP.BIN...


messiaen: As for an .obj importer sample, I'm sure there's one somewhere on the net. Even if not for OpenTK itself but Tao Framework or whatever, it should most likely be enough to just replace the OpenGL calls for Tao with those for OpenTK.

The Zelda viewer (or editor rather) is coming along pretty well, actually. Just posted two screenshots in the General ROM Hacking screenshots thread, showing some of the very latest progress. Overall it's so far capable of loading levels, changing and moving around their room actors (not true actor rendering yet, just the good old cubes) and modifying the commands of each Display List. It's being tested by a few people right now, while I'm working on more features - to get it more or less on par with OZMAV2 - and implementing their feedback. It's not yet publically available, tho, as I want to get it as stable as possible beforehand, so that I'm getting as few "ROM destroyed!!" posts or messages from users as possible But once it's good enough - a few more weeks of work or so at maximum - both binary and source will be released, probably on a fresh repository even, not just OZMAV's Google Code one.


____________________
cu xdaniel

Kagami - Desktop:

Kazari - Notebook:

messiaen
Catgirl
Level: 68


Posts: 1008/1085
EXP: 2593952
For next: 134848

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 02-17-11 05:11:14 PM Link | Quote
Well, I have done some research and I think I'll skip OpenTK or any other OpenGL wrappers.

I was looking for some 3D APIs and Irrlicht seems to offer even higher-level functions than XNA, so that will probably be my choice. It can render using OpenGL, DirectX or even a software renderer. It has everything I need: built-in .OBJ importer, easy 3D ray picking, collision function and other nice stuff.

The only downside is that the current .NET wrapper seems to be still in an alpha stage, as well as its documentation. However, I may use the straight C++ version instead, since the sample projects/documentation for it seems to cover almost everything I need.
Lyskar
12210
-The Chaos within trumps the Chaos without-
Level: 192


Posts: 8333/12211
EXP: 99232324
For next: 641247

Since: 07-03-07

From: 52-2-88-7

Since last post: 7.4 years
Last activity: 7.3 years

Posted on 02-17-11 07:00:05 PM Link | Quote
Stats
Time/Date
02-17-11 01:00:05 PM
Posts
8333
Days Here
1325
Level
133
Metal_Man88's Post
I can vouch for Irrlicht--my professor used it for his CS class, and one person implemented a quasi-functional Doom/Quake lookalike in it.

____________________

Eisnaught - SSQ² - Mobius Roleplay - SSS
messiaen
Catgirl
Level: 68


Posts: 1009/1085
EXP: 2593952
For next: 134848

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 02-17-11 07:46:41 PM Link | Quote
Yeah, seems like those engines (rather than pure 2D/3D graphic frameworks) are the best option for a beginner like me. I'll try to cook something up this weekend if I have time to go through some of the Irrlicht tutorials.
Gazpacho146
Member
Level: 26


Posts: 29/131
EXP: 95991
For next: 6284

Since: 02-01-11

From: USA

Since last post: 9.6 years
Last activity: 9.6 years

Posted on 02-17-11 08:02:52 PM (last edited by Gazpacho146 at 02-17-11 05:05 PM) Link | Quote
with the level importer, is there a way for you to replace levels within levels? i mean as in like in the inside castle, there is 3 areas, if there a way to replace all three of them with a different model? or will this ever be a feature or is it not possible?
(sorry if this a topic thats already been covered)
messiaen
Catgirl
Level: 68


Posts: 1010/1085
EXP: 2593952
For next: 134848

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 02-17-11 11:14:22 PM Link | Quote
Area support is something that has been requested multiple times. This is something that eventually will be added, but I have to test how TT64 handles it. Even if that works, levels will have to imported, for instance, replacing Tall-Tall Mountain and then be copied to another slots (in which areas will be inaccessible in TT64).

Even before that, I would have to write a custom level manager function (export/import/copy) and totally change the ROM layout, doing major changes in the importer. So, lots of work for a feature that right now would only be used by very few people that are doing full-scale hacks.

There's always the option of simulating level areas using creative level design (ie, make a closed area below the ground).
Gazpacho146
Member
Level: 26


Posts: 30/131
EXP: 95991
For next: 6284

Since: 02-01-11

From: USA

Since last post: 9.6 years
Last activity: 9.6 years

Posted on 02-17-11 11:32:08 PM Link | Quote
Originally posted by messiaen
Area support is something that has been requested multiple times. This is something that eventually will be added, but I have to test how TT64 handles it. Even if that works, levels will have to imported, for instance, replacing Tall-Tall Mountain and then be copied to another slots (in which areas will be inaccessible in TT64).

Even before that, I would have to write a custom level manager function (export/import/copy) and totally change the ROM layout, doing major changes in the importer. So, lots of work for a feature that right now would only be used by very few people that are doing full-scale hacks.

There's always the option of simulating level areas using creative level design (ie, make a closed area below the ground).

ok plus theres alot of levels in sm64 anyway so i shouldn't have a problem
Vinnyboiler
Catgirl
Level: 66


Posts: 667/1044
EXP: 2439695
For next: 22156

Since: 12-27-07

From: London, England

Since last post: 6 days
Last activity: 2 days

Posted on 02-18-11 07:31:46 PM Link | Quote

I was wondering, the "Ninst12" instrument set is listed as "unused?". Is their any solid way to tell if it's actually used or not?

I asking because if we can be sure it unused, it might be worth being mentioned in our wiki (http://tcrf.net/)

____________________

Pages: 1 2 3 4 5 6 7 8 9 10 ... 36 37 38 39 40 41 42 43 44 ... 46 47 48 49 50 51 52 53 54 55 Next newer thread | Next older thread
Jul - SM64 Hacking (Archive) - Mario 64 Level Importer New poll - New thread - New reply


Rusted Logic

Acmlmboard - commit 47be4dc [2021-08-23]
©2000-2022 Acmlm, Xkeeper, Kaito Sinclaire, et al.

32 database queries, 12 query cache hits.
Query execution time:  0.103398 seconds
Script execution time:  0.031617 seconds
Total render time:  0.135015 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 2 column 300 - Warning: unescaped & or unknown entity "&page"
line 119 column 11 - Warning: <form> isn't allowed in <table> elements
line 118 column 10 - Info: <table> previously mentioned
line 120 column 11 - Warning: missing <tr>
line 120 column 119 - Warning: missing </font> before </td>
line 124 column 16 - Warning: plain text isn't allowed in <tr> elements
line 120 column 11 - Info: <tr> previously mentioned
line 125 column 68 - Warning: missing </nobr> before </td>
line 141 column 68 - Warning: missing </nobr> before <tr>
line 147 column 35 - Warning: missing <tr>
line 147 column 50 - Warning: missing </font> before </td>
line 148 column 37 - Warning: unescaped & or unknown entity "&id"
line 147 column 194 - Warning: missing </font> before </table>
line 149 column 35 - Warning: missing <tr>
line 149 column 94 - Warning: unescaped & or unknown entity "&page"
line 149 column 126 - Warning: unescaped & or unknown entity "&page"
line 149 column 158 - Warning: unescaped & or unknown entity "&page"
line 149 column 190 - Warning: unescaped & or unknown entity "&page"
line 149 column 222 - Warning: unescaped & or unknown entity "&page"
line 149 column 254 - Warning: unescaped & or unknown entity "&page"
line 149 column 286 - Warning: unescaped & or unknown entity "&page"
line 149 column 318 - Warning: unescaped & or unknown entity "&page"
line 149 column 350 - Warning: unescaped & or unknown entity "&page"
line 149 column 382 - Warning: unescaped & or unknown entity "&page"
line 149 column 419 - Warning: unescaped & or unknown entity "&page"
line 149 column 453 - Warning: unescaped & or unknown entity "&page"
line 149 column 487 - Warning: unescaped & or unknown entity "&page"
line 149 column 521 - Warning: unescaped & or unknown entity "&page"
line 149 column 558 - Warning: unescaped & or unknown entity "&page"
line 149 column 592 - Warning: unescaped & or unknown entity "&page"
line 149 column 626 - Warning: unescaped & or unknown entity "&page"
line 149 column 660 - Warning: unescaped & or unknown entity "&page"
line 149 column 698 - Warning: unescaped & or unknown entity "&page"
line 149 column 732 - Warning: unescaped & or unknown entity "&page"
line 149 column 766 - Warning: unescaped & or unknown entity "&page"
line 149 column 800 - Warning: unescaped & or unknown entity "&page"
line 149 column 834 - Warning: unescaped & or unknown entity "&page"
line 149 column 868 - Warning: unescaped & or unknown entity "&page"
line 149 column 902 - Warning: unescaped & or unknown entity "&page"
line 149 column 936 - Warning: unescaped & or unknown entity "&page"
line 149 column 970 - Warning: unescaped & or unknown entity "&page"
line 149 column 1004 - Warning: unescaped & or unknown entity "&page"
line 149 column 50 - Warning: missing </font> before </td>
line 149 column 1041 - Warning: missing </font> before </table>
line 156 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 158 column 9 - Warning: missing <tr>
line 176 column 13 - Warning: missing <tr>
line 177 column 101 - Warning: unescaped & or unknown entity "&postid"
line 186 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 188 column 9 - Warning: missing <tr>
line 206 column 13 - Warning: missing <tr>
line 207 column 101 - Warning: unescaped & or unknown entity "&postid"
line 212 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 214 column 9 - Warning: missing <tr>
line 232 column 13 - Warning: missing <tr>
line 233 column 101 - Warning: unescaped & or unknown entity "&postid"
line 246 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 248 column 9 - Warning: missing <tr>
line 266 column 13 - Warning: missing <tr>
line 267 column 101 - Warning: unescaped & or unknown entity "&postid"
line 273 column 233 - Warning: discarding unexpected <param>
line 273 column 316 - Warning: discarding unexpected </param>
line 273 column 324 - Warning: discarding unexpected <param>
line 273 column 367 - Warning: discarding unexpected </param>
line 273 column 375 - Warning: discarding unexpected <param>
line 273 column 422 - Warning: discarding unexpected </param>
line 276 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 278 column 9 - Warning: missing <tr>
line 296 column 13 - Warning: missing <tr>
line 297 column 101 - Warning: unescaped & or unknown entity "&postid"
line 302 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 304 column 9 - Warning: missing <tr>
line 322 column 13 - Warning: missing <tr>
line 323 column 101 - Warning: unescaped & or unknown entity "&postid"
line 332 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 334 column 9 - Warning: missing <tr>
line 352 column 13 - Warning: missing <tr>
line 353 column 101 - Warning: unescaped & or unknown entity "&postid"
line 364 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 366 column 9 - Warning: missing <tr>
line 384 column 13 - Warning: missing <tr>
line 385 column 101 - Warning: unescaped & or unknown entity "&postid"
line 393 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 395 column 9 - Warning: missing <tr>
line 413 column 13 - Warning: missing <tr>
line 414 column 101 - Warning: unescaped & or unknown entity "&postid"
line 417 column 381 - Warning: missing </font> before <blockquote>
line 417 column 378 - Warning: missing </b> before <blockquote>
line 417 column 416 - Warning: inserting implicit <b>
line 417 column 416 - Warning: inserting implicit <font>
line 417 column 416 - Warning: missing </font> before <hr>
line 417 column 416 - Warning: missing </b> before <hr>
line 417 column 481 - Warning: inserting implicit <b>
line 417 column 481 - Warning: inserting implicit <font>
line 417 column 481 - Warning: missing </font> before <hr>
line 417 column 481 - Warning: missing </b> before <hr>
line 420 column 1204 - Warning: inserting implicit <b>
line 420 column 1204 - Warning: inserting implicit <font>
line 421 column 1 - Warning: inserting implicit <b>
line 421 column 1 - Warning: inserting implicit <font>
line 424 column 1573 - Warning: inserting implicit <b>
line 424 column 1573 - Warning: inserting implicit <font>
line 424 column 1643 - Warning: unescaped & or unknown entity "&st"
line 424 column 1649 - Warning: unescaped & or unknown entity "&#"
line 426 column 1 - Warning: inserting implicit <b>
line 426 column 1 - Warning: inserting implicit <font>
line 426 column 1 - Warning: replacing unexpected b with </b>
line 426 column 1917 - Warning: inserting implicit <font>
line 429 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 431 column 9 - Warning: missing <tr>
line 449 column 13 - Warning: missing <tr>
line 450 column 101 - Warning: unescaped & or unknown entity "&postid"
line 457 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 459 column 9 - Warning: missing <tr>
line 477 column 13 - Warning: missing <tr>
line 478 column 101 - Warning: unescaped & or unknown entity "&postid"
line 480 column 74 - Warning: <style> isn't allowed in <td> elements
line 480 column 9 - Info: <td> previously mentioned
line 481 column 312 - Warning: missing </div>
line 495 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 497 column 9 - Warning: missing <tr>
line 515 column 13 - Warning: missing <tr>
line 516 column 101 - Warning: unescaped & or unknown entity "&postid"
line 528 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 530 column 9 - Warning: missing <tr>
line 548 column 13 - Warning: missing <tr>
line 549 column 101 - Warning: unescaped & or unknown entity "&postid"
line 551 column 74 - Warning: <style> isn't allowed in <td> elements
line 551 column 9 - Info: <td> previously mentioned
line 552 column 312 - Warning: missing </div>
line 568 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 570 column 9 - Warning: missing <tr>
line 588 column 13 - Warning: missing <tr>
line 589 column 101 - Warning: unescaped & or unknown entity "&postid"
line 598 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 600 column 9 - Warning: missing <tr>
line 618 column 13 - Warning: missing <tr>
line 619 column 101 - Warning: unescaped & or unknown entity "&postid"
line 621 column 74 - Warning: <style> isn't allowed in <td> elements
line 621 column 9 - Info: <td> previously mentioned
line 621 column 1365 - Error: <z> is not recognized!
line 621 column 1365 - Warning: discarding unexpected <z>
line 621 column 1377 - Warning: discarding unexpected </z>
line 623 column 1409 - Error: <z> is not recognized!
line 623 column 1409 - Warning: discarding unexpected <z>
line 623 column 1417 - Warning: discarding unexpected </z>
line 625 column 1433 - Error: <z> is not recognized!
line 625 column 1433 - Warning: discarding unexpected <z>
line 625 column 1445 - Warning: discarding unexpected </z>
line 627 column 1461 - Error: <z> is not recognized!
line 627 column 1461 - Warning: discarding unexpected <z>
line 627 column 1469 - Warning: discarding unexpected </z>
line 630 column 2351 - Warning: discarding unexpected </td>
line 633 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 635 column 9 - Warning: missing <tr>
line 653 column 13 - Warning: missing <tr>
line 654 column 101 - Warning: unescaped & or unknown entity "&postid"
line 659 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 661 column 9 - Warning: missing <tr>
line 679 column 13 - Warning: missing <tr>
line 680 column 101 - Warning: unescaped & or unknown entity "&postid"
line 686 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 688 column 9 - Warning: missing <tr>
line 706 column 13 - Warning: missing <tr>
line 707 column 101 - Warning: unescaped & or unknown entity "&postid"
line 716 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 718 column 9 - Warning: missing <tr>
line 736 column 13 - Warning: missing <tr>
line 737 column 101 - Warning: unescaped & or unknown entity "&postid"
line 747 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 749 column 9 - Warning: missing <tr>
line 767 column 13 - Warning: missing <tr>
line 768 column 101 - Warning: unescaped & or unknown entity "&postid"
line 771 column 381 - Warning: missing </font> before </div>
line 771 column 378 - Warning: missing </b> before </div>
line 773 column 861 - Warning: inserting implicit <b>
line 773 column 861 - Warning: inserting implicit <font>
line 773 column 931 - Warning: unescaped & or unknown entity "&st"
line 773 column 937 - Warning: unescaped & or unknown entity "&#"
line 775 column 1 - Warning: inserting implicit <b>
line 775 column 1 - Warning: inserting implicit <font>
line 775 column 1 - Warning: replacing unexpected b with </b>
line 775 column 1205 - Warning: inserting implicit <font>
line 778 column 17 - Warning: missing <tr>
line 778 column 17 - Warning: discarding unexpected <table>
line 781 column 35 - Warning: missing <tr>
line 781 column 94 - Warning: unescaped & or unknown entity "&page"
line 781 column 126 - Warning: unescaped & or unknown entity "&page"
line 781 column 158 - Warning: unescaped & or unknown entity "&page"
line 781 column 190 - Warning: unescaped & or unknown entity "&page"
line 781 column 222 - Warning: unescaped & or unknown entity "&page"
line 781 column 254 - Warning: unescaped & or unknown entity "&page"
line 781 column 286 - Warning: unescaped & or unknown entity "&page"
line 781 column 318 - Warning: unescaped & or unknown entity "&page"
line 781 column 350 - Warning: unescaped & or unknown entity "&page"
line 781 column 382 - Warning: unescaped & or unknown entity "&page"
line 781 column 419 - Warning: unescaped & or unknown entity "&page"
line 781 column 453 - Warning: unescaped & or unknown entity "&page"
line 781 column 487 - Warning: unescaped & or unknown entity "&page"
line 781 column 521 - Warning: unescaped & or unknown entity "&page"
line 781 column 558 - Warning: unescaped & or unknown entity "&page"
line 781 column 592 - Warning: unescaped & or unknown entity "&page"
line 781 column 626 - Warning: unescaped & or unknown entity "&page"
line 781 column 660 - Warning: unescaped & or unknown entity "&page"
line 781 column 698 - Warning: unescaped & or unknown entity "&page"
line 781 column 732 - Warning: unescaped & or unknown entity "&page"
line 781 column 766 - Warning: unescaped & or unknown entity "&page"
line 781 column 800 - Warning: unescaped & or unknown entity "&page"
line 781 column 834 - Warning: unescaped & or unknown entity "&page"
line 781 column 868 - Warning: unescaped & or unknown entity "&page"
line 781 column 902 - Warning: unescaped & or unknown entity "&page"
line 781 column 936 - Warning: unescaped & or unknown entity "&page"
line 781 column 970 - Warning: unescaped & or unknown entity "&page"
line 781 column 1004 - Warning: unescaped & or unknown entity "&page"
line 781 column 50 - Warning: missing </font> before </td>
line 781 column 1041 - Warning: missing </font> before </table>
line 783 column 35 - Warning: missing <tr>
line 783 column 50 - Warning: missing </font> before </td>
line 784 column 37 - Warning: unescaped & or unknown entity "&id"
line 783 column 194 - Warning: missing </font> before </table>
line 785 column 17 - Warning: discarding unexpected </textarea>
line 785 column 28 - Warning: discarding unexpected </form>
line 785 column 35 - Warning: discarding unexpected </embed>
line 785 column 43 - Warning: discarding unexpected </noembed>
line 785 column 53 - Warning: discarding unexpected </noscript>
line 785 column 64 - Warning: discarding unexpected </noembed>
line 785 column 74 - Warning: discarding unexpected </embed>
line 785 column 82 - Warning: discarding unexpected </table>
line 785 column 90 - Warning: discarding unexpected </table>
line 787 column 9 - Warning: missing </font> before <table>
line 799 column 25 - Warning: discarding unexpected </font>
line 808 column 58 - Warning: discarding unexpected </font>
line 786 column 1 - Warning: missing </center>
line 120 column 63 - Warning: <img> lacks "alt" attribute
line 125 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 125 column 93 - Warning: <img> lacks "alt" attribute
line 141 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 141 column 98 - Warning: <img> lacks "alt" attribute
line 148 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 245 - Warning: <img> proprietary attribute value "absmiddle"
line 161 column 22 - Warning: <img> lacks "alt" attribute
line 161 column 63 - Warning: <img> lacks "alt" attribute
line 161 column 111 - Warning: <img> lacks "alt" attribute
line 161 column 161 - Warning: <img> lacks "alt" attribute
line 172 column 15 - Warning: <img> lacks "alt" attribute
line 179 column 92 - Warning: <img> proprietary attribute value "absmiddle"
line 179 column 92 - Warning: <img> lacks "alt" attribute
line 181 column 184 - Warning: <img> lacks "alt" attribute
line 191 column 22 - Warning: <img> lacks "alt" attribute
line 191 column 63 - Warning: <img> lacks "alt" attribute
line 191 column 112 - Warning: <img> lacks "alt" attribute
line 191 column 162 - Warning: <img> lacks "alt" attribute
line 202 column 15 - Warning: <img> lacks "alt" attribute
line 209 column 153 - Warning: <img> lacks "alt" attribute
line 217 column 22 - Warning: <img> lacks "alt" attribute
line 217 column 63 - Warning: <img> lacks "alt" attribute
line 217 column 112 - Warning: <img> lacks "alt" attribute
line 217 column 162 - Warning: <img> lacks "alt" attribute
line 228 column 15 - Warning: <img> lacks "alt" attribute
line 251 column 22 - Warning: <img> lacks "alt" attribute
line 251 column 63 - Warning: <img> lacks "alt" attribute
line 251 column 111 - Warning: <img> lacks "alt" attribute
line 251 column 161 - Warning: <img> lacks "alt" attribute
line 262 column 15 - Warning: <img> lacks "alt" attribute
line 281 column 22 - Warning: <img> lacks "alt" attribute
line 281 column 63 - Warning: <img> lacks "alt" attribute
line 281 column 112 - Warning: <img> lacks "alt" attribute
line 281 column 162 - Warning: <img> lacks "alt" attribute
line 292 column 15 - Warning: <img> lacks "alt" attribute
line 307 column 22 - Warning: <img> lacks "alt" attribute
line 307 column 63 - Warning: <img> lacks "alt" attribute
line 307 column 112 - Warning: <img> lacks "alt" attribute
line 307 column 162 - Warning: <img> lacks "alt" attribute
line 318 column 15 - Warning: <img> lacks "alt" attribute
line 337 column 22 - Warning: <img> lacks "alt" attribute
line 337 column 63 - Warning: <img> lacks "alt" attribute
line 337 column 112 - Warning: <img> lacks "alt" attribute
line 337 column 162 - Warning: <img> lacks "alt" attribute
line 348 column 15 - Warning: <img> lacks "alt" attribute
line 369 column 22 - Warning: <img> lacks "alt" attribute
line 369 column 63 - Warning: <img> lacks "alt" attribute
line 369 column 111 - Warning: <img> lacks "alt" attribute
line 369 column 161 - Warning: <img> lacks "alt" attribute
line 380 column 15 - Warning: <img> lacks "alt" attribute
line 387 column 185 - Warning: <img> proprietary attribute value "absmiddle"
line 387 column 185 - Warning: <img> lacks "alt" attribute
line 398 column 22 - Warning: <img> lacks "alt" attribute
line 398 column 63 - Warning: <img> lacks "alt" attribute
line 398 column 112 - Warning: <img> lacks "alt" attribute
line 398 column 162 - Warning: <img> lacks "alt" attribute
line 399 column 11 - Warning: <img> lacks "alt" attribute
line 409 column 15 - Warning: <img> lacks "alt" attribute
line 417 column 592 - Warning: <img> proprietary attribute value "absmiddle"
line 417 column 592 - Warning: <img> lacks "alt" attribute
line 424 column 1656 - Warning: <img> lacks "alt" attribute
line 434 column 22 - Warning: <img> lacks "alt" attribute
line 434 column 63 - Warning: <img> lacks "alt" attribute
line 434 column 111 - Warning: <img> lacks "alt" attribute
line 434 column 161 - Warning: <img> lacks "alt" attribute
line 445 column 15 - Warning: <img> lacks "alt" attribute
line 454 column 240 - Warning: <img> proprietary attribute value "absmiddle"
line 454 column 240 - Warning: <img> lacks "alt" attribute
line 461 column 15 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 15 - Warning: <img> lacks "alt" attribute
line 461 column 58 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 58 - Warning: <img> lacks "alt" attribute
line 461 column 101 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 101 - Warning: <img> lacks "alt" attribute
line 461 column 144 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 144 - Warning: <img> lacks "alt" attribute
line 461 column 187 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 187 - Warning: <img> lacks "alt" attribute
line 461 column 230 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 230 - Warning: <img> lacks "alt" attribute
line 461 column 273 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 273 - Warning: <img> lacks "alt" attribute
line 461 column 316 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 316 - Warning: <img> lacks "alt" attribute
line 461 column 359 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 359 - Warning: <img> lacks "alt" attribute
line 461 column 402 - Warning: <img> proprietary attribute value "absmiddle"
line 461 column 402 - Warning: <img> lacks "alt" attribute
line 462 column 22 - Warning: <img> lacks "alt" attribute
line 462 column 63 - Warning: <img> lacks "alt" attribute
line 462 column 112 - Warning: <img> lacks "alt" attribute
line 462 column 162 - Warning: <img> lacks "alt" attribute
line 463 column 11 - Warning: <img> lacks "alt" attribute
line 473 column 15 - Warning: <img> lacks "alt" attribute
line 488 column 903 - Warning: <div> anchor "divxdn" already defined
line 489 column 1021 - Warning: <img> lacks "alt" attribute
line 491 column 1182 - Warning: <img> lacks "alt" attribute
line 500 column 22 - Warning: <img> lacks "alt" attribute
line 500 column 63 - Warning: <img> lacks "alt" attribute
line 500 column 111 - Warning: <img> lacks "alt" attribute
line 500 column 161 - Warning: <img> lacks "alt" attribute
line 511 column 15 - Warning: <img> lacks "alt" attribute
line 532 column 15 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 15 - Warning: <img> lacks "alt" attribute
line 532 column 58 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 58 - Warning: <img> lacks "alt" attribute
line 532 column 101 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 101 - Warning: <img> lacks "alt" attribute
line 532 column 144 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 144 - Warning: <img> lacks "alt" attribute
line 532 column 187 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 187 - Warning: <img> lacks "alt" attribute
line 532 column 230 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 230 - Warning: <img> lacks "alt" attribute
line 532 column 273 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 273 - Warning: <img> lacks "alt" attribute
line 532 column 316 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 316 - Warning: <img> lacks "alt" attribute
line 532 column 359 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 359 - Warning: <img> lacks "alt" attribute
line 532 column 402 - Warning: <img> proprietary attribute value "absmiddle"
line 532 column 402 - Warning: <img> lacks "alt" attribute
line 533 column 22 - Warning: <img> lacks "alt" attribute
line 533 column 63 - Warning: <img> lacks "alt" attribute
line 533 column 112 - Warning: <img> lacks "alt" attribute
line 533 column 162 - Warning: <img> lacks "alt" attribute
line 534 column 11 - Warning: <img> lacks "alt" attribute
line 544 column 15 - Warning: <img> lacks "alt" attribute
line 552 column 312 - Warning: <div> anchor "divxdn" already defined
line 558 column 1591 - Warning: <img> proprietary attribute value "absmiddle"
line 558 column 1591 - Warning: <img> lacks "alt" attribute
line 561 column 1881 - Warning: <div> anchor "divxdn" already defined
line 562 column 1999 - Warning: <img> lacks "alt" attribute
line 564 column 2160 - Warning: <img> lacks "alt" attribute
line 573 column 22 - Warning: <img> lacks "alt" attribute
line 573 column 63 - Warning: <img> lacks "alt" attribute
line 573 column 111 - Warning: <img> lacks "alt" attribute
line 573 column 161 - Warning: <img> lacks "alt" attribute
line 584 column 15 - Warning: <img> lacks "alt" attribute
line 602 column 17 - Warning: <img> proprietary attribute value "absmiddle"
line 602 column 17 - Warning: <img> lacks "alt" attribute
line 602 column 60 - Warning: <img> proprietary attribute value "absmiddle"
line 602 column 60 - Warning: <img> lacks "alt" attribute
line 602 column 103 - Warning: <img> proprietary attribute value "absmiddle"
line 602 column 103 - Warning: <img> lacks "alt" attribute
line 602 column 146 - Warning: <img> proprietary attribute value "absmiddle"
line 602 column 146 - Warning: <img> lacks "alt" attribute
line 602 column 189 - Warning: <img> proprietary attribute value "absmiddle"
line 602 column 189 - Warning: <img> lacks "alt" attribute
line 602 column 232 - Warning: <img> proprietary attribute value "absmiddle"
line 602 column 232 - Warning: <img> lacks "alt" attribute
line 602 column 275 - Warning: <img> proprietary attribute value "absmiddle"
line 602 column 275 - Warning: <img> lacks "alt" attribute
line 602 column 318 - Warning: <img> proprietary attribute value "absmiddle"
line 602 column 318 - Warning: <img> lacks "alt" attribute
line 602 column 361 - Warning: <img> proprietary attribute value "absmiddle"
line 602 column 361 - Warning: <img> lacks "alt" attribute
line 603 column 23 - Warning: <img> lacks "alt" attribute
line 603 column 64 - Warning: <img> lacks "alt" attribute
line 603 column 113 - Warning: <img> lacks "alt" attribute
line 603 column 163 - Warning: <img> lacks "alt" attribute
line 604 column 11 - Warning: <img> lacks "alt" attribute
line 614 column 15 - Warning: <img> lacks "alt" attribute
line 621 column 1210 - Warning: <tr> attribute "valign" has invalid value "center"
line 629 column 1997 - Warning: <img> lacks "alt" attribute
line 638 column 22 - Warning: <img> lacks "alt" attribute
line 638 column 63 - Warning: <img> lacks "alt" attribute
line 638 column 111 - Warning: <img> lacks "alt" attribute
line 638 column 161 - Warning: <img> lacks "alt" attribute
line 649 column 15 - Warning: <img> lacks "alt" attribute
line 664 column 22 - Warning: <img> lacks "alt" attribute
line 664 column 63 - Warning: <img> lacks "alt" attribute
line 664 column 112 - Warning: <img> lacks "alt" attribute
line 664 column 162 - Warning: <img> lacks "alt" attribute
line 675 column 15 - Warning: <img> lacks "alt" attribute
line 691 column 22 - Warning: <img> lacks "alt" attribute
line 691 column 63 - Warning: <img> lacks "alt" attribute
line 691 column 111 - Warning: <img> lacks "alt" attribute
line 691 column 161 - Warning: <img> lacks "alt" attribute
line 702 column 15 - Warning: <img> lacks "alt" attribute
line 721 column 22 - Warning: <img> lacks "alt" attribute
line 721 column 63 - Warning: <img> lacks "alt" attribute
line 721 column 112 - Warning: <img> lacks "alt" attribute
line 721 column 162 - Warning: <img> lacks "alt" attribute
line 732 column 15 - Warning: <img> lacks "alt" attribute
line 752 column 22 - Warning: <img> lacks "alt" attribute
line 752 column 63 - Warning: <img> lacks "alt" attribute
line 752 column 112 - Warning: <img> lacks "alt" attribute
line 752 column 162 - Warning: <img> lacks "alt" attribute
line 753 column 11 - Warning: <img> lacks "alt" attribute
line 763 column 15 - Warning: <img> lacks "alt" attribute
line 773 column 944 - Warning: <img> lacks "alt" attribute
line 784 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 784 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 784 column 245 - Warning: <img> proprietary attribute value "absmiddle"
line 793 column 25 - Warning: <img> lacks "alt" attribute
line 798 column 267 - Warning: <img> lacks "alt" attribute
line 417 column 381 - Warning: trimming empty <font>
line 417 column 378 - Warning: trimming empty <b>
line 420 column 1204 - Warning: trimming empty <font>
line 420 column 1204 - Warning: trimming empty <b>
line 426 column 1917 - Warning: trimming empty <font>
line 775 column 1205 - Warning: trimming empty <font>
line 778 column 17 - Warning: trimming empty <tr>
line 125 column 68 - Warning: <nobr> is not approved by W3C
line 141 column 68 - Warning: <nobr> is not approved by W3C
line 177 column 27 - Warning: <nobr> is not approved by W3C
line 207 column 27 - Warning: <nobr> is not approved by W3C
line 233 column 27 - Warning: <nobr> is not approved by W3C
line 267 column 27 - Warning: <nobr> is not approved by W3C
line 297 column 27 - Warning: <nobr> is not approved by W3C
line 323 column 27 - Warning: <nobr> is not approved by W3C
line 353 column 27 - Warning: <nobr> is not approved by W3C
line 385 column 27 - Warning: <nobr> is not approved by W3C
line 414 column 27 - Warning: <nobr> is not approved by W3C
line 450 column 27 - Warning: <nobr> is not approved by W3C
line 478 column 27 - Warning: <nobr> is not approved by W3C
line 516 column 27 - Warning: <nobr> is not approved by W3C
line 549 column 27 - Warning: <nobr> is not approved by W3C
line 589 column 27 - Warning: <nobr> is not approved by W3C
line 619 column 27 - Warning: <nobr> is not approved by W3C
line 621 column 1136 - Warning: <table> proprietary attribute "height"
line 654 column 27 - Warning: <nobr> is not approved by W3C
line 680 column 27 - Warning: <nobr> is not approved by W3C
line 707 column 27 - Warning: <nobr> is not approved by W3C
line 737 column 27 - Warning: <nobr> is not approved by W3C
line 768 column 27 - Warning: <nobr> is not approved by W3C
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 454 warnings and 4 errors!

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 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.

About HTML Tidy: https://github.com/htacg/tidy-html5
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
Validate your HTML documents: http://validator.w3.org/nu/
Lobby your company to join the W3C: http://www.w3.org/Consortium

Do you speak a language other than English, or a different variant of
English? Consider helping us to localize HTML Tidy. For details please see
https://github.com/htacg/tidy-html5/blob/master/README/LOCALIZE.md