Register - Login
Views: 99372070
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-23-22 07:53:59 PM
Jul - NO! GO TO STAR! - Okay guys, I had an idea for a game New poll - New thread - Thread closed
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Next newer thread | Next older thread
Q
風のノータム
Level: 105


Posts: 863/2986
EXP: 11965614
For next: 296646

Since: 08-03-07

Pronouns: she/her
From: Nowhere

Since last post: 41 days
Last activity: 7 hours

Posted on 07-28-09 11:39:54 AM Link
Originally posted by Shampoo
smp and Peardian are the only two on here using Macs.

And isn't there a Wine for Macs too?

*Cough* (And yes there is)

...But, yeah, I can dual boot, so I wouldn't complain if it was just Windows-only for now. I'd rather not have a Linux and an OSX port hinder what already seems like a long shot of a project anyway, so I also think that it's probably the best way to proceed.

By the way, expect some more plot details relating to Stein in the near future.
Disch
User
Level: 9


Posts: 9/11
EXP: 2498
For next: 664

Since: 06-18-09


Since last post: 12.4 years
Last activity: 12.2 years

Posted on 07-28-09 04:34:58 PM (last edited by Disch at 07-28-09 01:50 PM) Link
Egads people.

1) Anyone casually suggesting that support for X platform should be dropped for no reason, without any pause, should be punched. If you can reasonably support a platform without extra effort, you should do so. If you disagree, you're a shitty programmer (or not a programmer at all -- which is probably the case here).

2) If you use a competent graphics library (like OpenGL), you should be fine. Don't worry about cutting resources until you notice slowdown. You'd be surprised how fast OpenGL can go even without hardware acceleration. And with it (which is usually the case on any platform), performance for this kind of game will be a nonissue.

3) You shouldn't be doing any blitting. 2D blitting is ancient methodology. Everything on modern PCs is polygons. Render textured quads instead of blitting. That = supported by 3D hardware = bloody fast.

4) Alpha blending is also fast enough to be a nonissue if an appropriate lib is used.


Run some tests. See for yourself. Don't cut flare OR PLATFORM SUPPORT prematurely.


Rendering quads is fast. Changing quads is slow. IE: runtime manipulation of textures is what will bust up your performance.. not the drawing.


EDIT:


21x16 tiles drawn per layer. 4 layers. That's 1344 tiles blitted per layer per frame. 60FPS. That's 80,640 blits.


This assumes that you'll be drawing every tile. Many (most) of those tiles will be fully transparent. So instead of blindly drawing a fully transparent quad, just skip drawing it. Realistically you'll probably be drawing closer to half of that.

But even 1500 quads per scene (frame) isn't extremely demanding by today's standards.


or I have to switch to openGL. This wouldn't be so bad except that I'm not a MacOS/Linux coder and as such I'd have no way to write the code for those OSes


You shouldn't have to. SDL makes setting up OpenGL painless and crossplatform. And OpenGL is a little funky to get used to, but once you're used to it it's easy.

Between SDL and dshlib you shouldn't need to write any platform specific code ;P. And in fact you should refrain from doing so.
Xkeeper

Level: 263


Posts: 12150/25343
EXP: 296705748
For next: 2254705

Since: 07-03-07

Pronouns: they/them/????????

Since last post: 8 days
Last activity: 2 days

Posted on 07-28-09 06:53:08 PM Link

1) Anyone casually suggesting that support for X platform should be dropped for no reason, without any pause, should be punched. If you can reasonably support a platform without extra effort, you should do so. If you disagree, you're a shitty programmer (or not a programmer at all -- which is probably the case here).


Try listening before you say these things:



Well, running into a couple difficulties. When it comes to performance, software blitting just isn't going to cut it, so either I cut features out of the engine (from 4 tilemaps at a time to 1), or I have to switch to openGL. This wouldn't be so bad except that I'm not a MacOS/Linux coder and as such I'd have no way to write the code for those OSes, which I'm not happy about since that seems like quite a slap in the face for a game meant to involve everyone who wants to be a part of it. So yeah, thoughts on this?


Okay on second thought honestly just drop support for OS X and Linux.


It was suggested because of aparrent performance issues.

Also, pft, I keep forgetting SDL can do 3D work.

____________________
Disch
User
Level: 9


Posts: 10/11
EXP: 2498
For next: 664

Since: 06-18-09


Since last post: 12.4 years
Last activity: 12.2 years

Posted on 07-28-09 07:09:45 PM (last edited by Disch at 07-28-09 04:11 PM) Link
Originally posted by Xkeeper

Try listening before you say these things:



Point taken. I did sort of skim before posting, and edit my post later after reading more carefully. I suppose that's bad practice.

Though I wasn't speaking at Sukasa. He was clearly uneasy about the decision and wasn't sure he wanted to drop support. It was the responses that followed that irked me. They were basically "yeah who cares about portability -- screw the losers that don't use Windows" comments and the like.

Hence why I said "without any pause" in my original post. Sukasa had pause, and was considering the situation rationally (like any good programmer would). It was everyone else that just dismissed it as a nonissue.

EDIT: well not EVERYONE else. But there were some responses like that -- and those where who my comments were directed at.
Xkeeper

Level: 263


Posts: 12154/25343
EXP: 296705748
For next: 2254705

Since: 07-03-07

Pronouns: they/them/????????

Since last post: 8 days
Last activity: 2 days

Posted on 07-28-09 07:14:27 PM Link
They said that because they would have rather seen a game that worked well on one platform instead of one that didn't on several. Not really rocket science.

Really, the whole thing was just based off the idea that power would have to be cut for speed on all platforms, and if that doesn't actually apply, then it isn't hard to figure that the rest doesn't either.

____________________
Tyty

Level: 165


Posts: 4702/8599
EXP: 58622172
For next: 313509

Since: 07-07-07


Since last post: 9.8 years
Last activity: 9.8 years

Posted on 07-29-09 02:34:17 AM Link
This is our first attempt at a project like this for God's sakes.

Let's get it done, and have all these sexy features in the sequel. :|

____________________
Sukasa

Level: 123


Posts: 1186/4326
EXP: 20917398
For next: 313868

Since: 07-07-07


Since last post: 1.1 years
Last activity: 1.0 years

Posted on 07-30-09 12:39:35 AM Link
Me PM
So I have no idea how well it'll run for anyone else or how accurate this count it, but I'm somehow managing to clock 250+ FPS with a dumb renderer using openGL. I dunno how well it'll run once I have proper textures in (probably much slower), but I'm a lot more confident I can pull this off, at least.

____________________
Sukasa

Level: 123


Posts: 1187/4326
EXP: 20917398
For next: 313868

Since: 07-07-07


Since last post: 1.1 years
Last activity: 1.0 years

Posted on 07-30-09 03:40:09 AM Link
Me PM
Okay guys, more news:

I have a very early tech demo / test program up and running. The download is slightly over 3Mbytes, and I have a request for anyone who's willing to download it:

I need to know how fast it runs on your systems. Anyways, here's the download link and how to work the program:

http://acmlm.kafuka.org/uploader/get.php?id=1867 - Board2 link, so sue me

Anyways, when you run it you should get a black screen with some kinda loud music playing. I'd like to know what the title bar says the FPS is (Wait a couple seconds for it to stabilize). After this, hit [f] and note what the FPS dips to (have have about a second where the dip will show up). Lastly, hit [r] and tell me what the new lower FPS is.

For reference, here's what I get on my machine:

~2450 FPS
~2000 FPS
~1330 FPS

____________________
Q
風のノータム
Level: 105


Posts: 872/2986
EXP: 11965614
For next: 296646

Since: 08-03-07

Pronouns: she/her
From: Nowhere

Since last post: 41 days
Last activity: 7 hours

Posted on 07-30-09 11:43:39 AM (last edited by The Red Snifit at 07-30-09 08:54 AM) Link
It, uh, doesn't run for me.

Apparently, the application configuration is incorrect.

...The music's neat, though. Where's it from?
Hiryuu

Level: 206


Posts: 12308/14435
EXP: 127510462
For next: 102917

Since: 07-06-07


Since last post: 11.8 years
Last activity: 11.7 years

Posted on 07-30-09 01:31:09 PM Link
We went over it last night. He needs to figure out what DLLs or SxS is missing.

____________________
Q
風のノータム
Level: 105


Posts: 873/2986
EXP: 11965614
For next: 296646

Since: 08-03-07

Pronouns: she/her
From: Nowhere

Since last post: 41 days
Last activity: 7 hours

Posted on 07-30-09 04:47:10 PM Link
So, yeah, now it's up and running. Here are the FPSs:

[11:45] <@RedSnifit> 1365
[11:45] <@RedSnifit> 1365
[11:45] <@RedSnifit> 645
Sukasa

Level: 123


Posts: 1188/4326
EXP: 20917398
For next: 313868

Since: 07-07-07


Since last post: 1.1 years
Last activity: 1.0 years

Posted on 07-30-09 04:49:15 PM Link
Me PM
Mine have dropped somewhat, too:

1475, 1475, and 711.

Anyways, if you want to help download the version I linked earlier and replace the .exe with this one:

http://sukasa.kicks-ass.org/megajul.exe

____________________
FPzero
9590



Post 5313/9597
Active
5.4 years ago
Posted on 07-30-09 04:52:19 PM (last edited by FirePhoenix at 07-30-09 01:52 PM) Link
I'm running ~60 FPS. Also, the close button doesn't work.

____________________
Lunaria

Moon Bunny! :3
Level: 139


Posts: 159/5751
EXP: 31998940
For next: 468505

Since: 07-28-07

Pronouns: she/her
From: pile of fluff

Since last post: 68 days
Last activity: 1 day

Posted on 07-30-09 05:48:06 PM Link
I'm running at over 500FPS and the screen is black. :<

(Running windows XP here)

____________________


ReiNi
さよなら*へヴン
Level: 124


Posts: 1865/4444
EXP: 21750103
For next: 86498

Since: 07-21-07


Since last post: 6.7 years
Last activity: 3.3 years

Posted on 07-30-09 07:30:47 PM Link
Now with 60% more chance of spontaneous combustion.
----------------------------
490-500
490
~167

It also jumps to 37000 when minimized and pressing other keys causes a massive slowdown on the music.

____________________

Sukasa

Level: 123


Posts: 1190/4326
EXP: 20917398
For next: 313868

Since: 07-07-07


Since last post: 1.1 years
Last activity: 1.0 years

Posted on 07-30-09 07:34:05 PM Link
Me PM
Originally posted by Green-Kirby
I'm running at over 500FPS and the screen is black. :<

(Running windows XP here)


Check my earlier post, you have to hit [f] then [r] to start the tiles (debug stuff, etc.), or [f] to close it. press [f] after [r] to close it as well.

____________________
Xkeeper

Level: 263


Posts: 12205/25343
EXP: 296705748
For next: 2254705

Since: 07-03-07

Pronouns: they/them/????????

Since last post: 8 days
Last activity: 2 days

Posted on 07-30-09 07:52:11 PM Link
500. Music is choppy as hell.
165 after that, with even worse music

____________________
Hiryuu

Level: 206


Posts: 12325/14435
EXP: 127510462
For next: 102917

Since: 07-06-07


Since last post: 11.8 years
Last activity: 11.7 years

Posted on 07-30-09 07:53:23 PM Link
What comp?

____________________
Sukasa

Level: 123


Posts: 1191/4326
EXP: 20917398
For next: 313868

Since: 07-07-07


Since last post: 1.1 years
Last activity: 1.0 years

Posted on 07-30-09 08:04:28 PM Link
Me PM
Just for the record I'm not worried about music issues, they're caused because the game itself uses up as much CPU as possible to get the highest framerate it can, which leaves basically no CPU time left for the audio. I had another version I gave out to a couple people having the audio issue (which really just re-enabled the FPS limiter) and their audio problems disappeared.

____________________
Hiryuu

Level: 206


Posts: 12329/14435
EXP: 127510462
For next: 102917

Since: 07-06-07


Since last post: 11.8 years
Last activity: 11.7 years

Posted on 07-30-09 09:14:22 PM (last edited by Hiryuu at 07-30-09 06:26 PM) Link
76-77 FPS @ 75Hz.

VSync enabled. No audio lag.

>>>

7565 FPS DISCH
7555 FPS DDS/ONEWAYSTAIRS
2943 FPS DDS/ONEWAYSTAIRS/TILES

VSync disabled. No audio lag...but you cut the audio for One Way Stairs a bit tight on the loop...not too bad if you're not used to doing it though.

>>>

Using:
AMD Phenom 9500
GeForce 9800 GTX+, 1GB GDDR3
OCZ 2GB DDR2-800 (PC2-6400)
Windows XP Professional SP3
Sound Blaster Audigy SE

EDIT: So we're using uncompressed graphics in here too? BMPs?

____________________
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Next newer thread | Next older thread
Jul - NO! GO TO STAR! - Okay guys, I had an idea for a game New poll - New thread - Thread closed


Rusted Logic

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

30 database queries, 5 query cache hits.
Query execution time:  0.102640 seconds
Script execution time:  0.094116 seconds
Total render time:  0.196756 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 2 column 150 - 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 199 - 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 415 - Warning: unescaped & or unknown entity "&page"
line 149 column 449 - Warning: unescaped & or unknown entity "&page"
line 149 column 483 - Warning: unescaped & or unknown entity "&page"
line 149 column 517 - Warning: unescaped & or unknown entity "&page"
line 149 column 551 - Warning: unescaped & or unknown entity "&page"
line 149 column 585 - Warning: unescaped & or unknown entity "&page"
line 149 column 619 - Warning: unescaped & or unknown entity "&page"
line 149 column 656 - Warning: unescaped & or unknown entity "&page"
line 149 column 690 - Warning: unescaped & or unknown entity "&page"
line 149 column 50 - Warning: missing </font> before </td>
line 149 column 727 - 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 189 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 191 column 9 - Warning: missing <tr>
line 209 column 13 - Warning: missing <tr>
line 244 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 246 column 9 - Warning: missing <tr>
line 264 column 13 - Warning: missing <tr>
line 267 column 254 - Warning: missing <tr>
line 267 column 502 - Warning: missing <tr>
line 277 column 1976 - Warning: unescaped & or unknown entity "&theme"
line 280 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 282 column 9 - Warning: missing <tr>
line 300 column 13 - Warning: missing <tr>
line 316 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 318 column 9 - Warning: missing <tr>
line 336 column 13 - Warning: missing <tr>
line 339 column 254 - Warning: missing <tr>
line 339 column 502 - Warning: missing <tr>
line 341 column 1208 - Warning: unescaped & or unknown entity "&theme"
line 344 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 346 column 9 - Warning: missing <tr>
line 364 column 13 - Warning: missing <tr>
line 372 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 374 column 9 - Warning: missing <tr>
line 392 column 13 - Warning: missing <tr>
line 398 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 400 column 9 - Warning: missing <tr>
line 418 column 13 - Warning: missing <tr>
line 438 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 440 column 9 - Warning: missing <tr>
line 458 column 13 - Warning: missing <tr>
line 468 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 470 column 9 - Warning: missing <tr>
line 488 column 13 - Warning: missing <tr>
line 491 column 74 - Warning: <style> isn't allowed in <td> elements
line 491 column 9 - Info: <td> previously mentioned
line 491 column 847 - Warning: missing <tr>
line 491 column 1635 - Warning: missing <tr>
line 494 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 496 column 9 - Warning: missing <tr>
line 514 column 13 - Warning: missing <tr>
line 524 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 526 column 9 - Warning: missing <tr>
line 544 column 13 - Warning: missing <tr>
line 555 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 556 column 25 - Warning: missing <tr>
line 558 column 33 - Warning: missing </font> before </td>
line 566 column 25 - Warning: plain text isn't allowed in <tr> elements
line 556 column 25 - Info: <tr> previously mentioned
line 568 column 33 - Warning: missing <tr>
line 569 column 47 - Warning: missing </nobr> before </table>
line 573 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 575 column 9 - Warning: missing <tr>
line 577 column 147 - Warning: <font> unexpected or duplicate quote mark
line 577 column 147 - Warning: <font> attribute with missing trailing quote mark
line 593 column 13 - Warning: missing <tr>
line 603 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 605 column 9 - Warning: missing <tr>
line 623 column 13 - Warning: missing <tr>
line 632 column 955 - Warning: discarding unexpected </font>
line 632 column 1017 - Warning: discarding unexpected </td>
line 635 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 637 column 9 - Warning: missing <tr>
line 655 column 13 - Warning: missing <tr>
line 665 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 667 column 9 - Warning: missing <tr>
line 685 column 13 - Warning: missing <tr>
line 688 column 254 - Warning: missing <tr>
line 688 column 502 - Warning: missing <tr>
line 689 column 908 - Warning: unescaped & or unknown entity "&theme"
line 692 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 694 column 9 - Warning: missing <tr>
line 712 column 13 - Warning: missing <tr>
line 715 column 74 - Warning: <style> isn't allowed in <td> elements
line 715 column 9 - Info: <td> previously mentioned
line 715 column 847 - Warning: missing <tr>
line 715 column 1565 - Warning: missing <tr>
line 718 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 720 column 9 - Warning: missing <tr>
line 738 column 13 - Warning: missing <tr>
line 744 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 746 column 9 - Warning: missing <tr>
line 764 column 13 - Warning: missing <tr>
line 767 column 74 - Warning: <style> isn't allowed in <td> elements
line 767 column 9 - Info: <td> previously mentioned
line 767 column 847 - Warning: missing <tr>
line 788 column 2098 - Warning: missing <tr>
line 791 column 17 - Warning: missing <tr>
line 791 column 17 - Warning: discarding unexpected <table>
line 794 column 35 - Warning: missing <tr>
line 794 column 94 - Warning: unescaped & or unknown entity "&page"
line 794 column 126 - Warning: unescaped & or unknown entity "&page"
line 794 column 158 - Warning: unescaped & or unknown entity "&page"
line 794 column 190 - Warning: unescaped & or unknown entity "&page"
line 794 column 222 - Warning: unescaped & or unknown entity "&page"
line 794 column 254 - Warning: unescaped & or unknown entity "&page"
line 794 column 286 - Warning: unescaped & or unknown entity "&page"
line 794 column 318 - Warning: unescaped & or unknown entity "&page"
line 794 column 350 - Warning: unescaped & or unknown entity "&page"
line 794 column 382 - Warning: unescaped & or unknown entity "&page"
line 794 column 415 - Warning: unescaped & or unknown entity "&page"
line 794 column 449 - Warning: unescaped & or unknown entity "&page"
line 794 column 483 - Warning: unescaped & or unknown entity "&page"
line 794 column 517 - Warning: unescaped & or unknown entity "&page"
line 794 column 551 - Warning: unescaped & or unknown entity "&page"
line 794 column 585 - Warning: unescaped & or unknown entity "&page"
line 794 column 619 - Warning: unescaped & or unknown entity "&page"
line 794 column 656 - Warning: unescaped & or unknown entity "&page"
line 794 column 690 - Warning: unescaped & or unknown entity "&page"
line 794 column 50 - Warning: missing </font> before </td>
line 794 column 727 - Warning: missing </font> before </table>
line 796 column 35 - Warning: missing <tr>
line 796 column 50 - Warning: missing </font> before </td>
line 797 column 37 - Warning: unescaped & or unknown entity "&id"
line 796 column 199 - Warning: missing </font> before </table>
line 798 column 17 - Warning: discarding unexpected </textarea>
line 798 column 28 - Warning: discarding unexpected </form>
line 798 column 35 - Warning: discarding unexpected </embed>
line 798 column 43 - Warning: discarding unexpected </noembed>
line 798 column 53 - Warning: discarding unexpected </noscript>
line 798 column 64 - Warning: discarding unexpected </noembed>
line 798 column 74 - Warning: discarding unexpected </embed>
line 798 column 82 - Warning: discarding unexpected </table>
line 798 column 90 - Warning: discarding unexpected </table>
line 800 column 9 - Warning: missing </font> before <table>
line 812 column 25 - Warning: discarding unexpected </font>
line 821 column 57 - Warning: discarding unexpected </font>
line 799 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 216 - Warning: <img> proprietary attribute value "absmiddle"
line 161 column 23 - Warning: <img> lacks "alt" attribute
line 161 column 64 - Warning: <img> lacks "alt" attribute
line 161 column 113 - Warning: <img> lacks "alt" attribute
line 161 column 163 - Warning: <img> lacks "alt" attribute
line 162 column 11 - Warning: <img> lacks "alt" attribute
line 172 column 15 - Warning: <img> lacks "alt" attribute
line 194 column 21 - Warning: <img> lacks "alt" attribute
line 194 column 62 - Warning: <img> lacks "alt" attribute
line 194 column 111 - Warning: <img> lacks "alt" attribute
line 194 column 161 - Warning: <img> lacks "alt" attribute
line 195 column 11 - Warning: <img> lacks "alt" attribute
line 205 column 15 - Warning: <img> lacks "alt" attribute
line 249 column 23 - Warning: <img> lacks "alt" attribute
line 249 column 64 - Warning: <img> lacks "alt" attribute
line 249 column 113 - Warning: <img> lacks "alt" attribute
line 249 column 163 - Warning: <img> lacks "alt" attribute
line 250 column 11 - Warning: <img> lacks "alt" attribute
line 260 column 15 - Warning: <img> lacks "alt" attribute
line 267 column 278 - Warning: <img> lacks "alt" attribute
line 277 column 1827 - Warning: <img> lacks "alt" attribute
line 277 column 1923 - Warning: <img> lacks "alt" attribute
line 277 column 2036 - Warning: <img> lacks "alt" attribute
line 285 column 21 - Warning: <img> lacks "alt" attribute
line 285 column 62 - Warning: <img> lacks "alt" attribute
line 285 column 111 - Warning: <img> lacks "alt" attribute
line 285 column 161 - Warning: <img> lacks "alt" attribute
line 286 column 11 - Warning: <img> lacks "alt" attribute
line 296 column 15 - Warning: <img> lacks "alt" attribute
line 321 column 23 - Warning: <img> lacks "alt" attribute
line 321 column 64 - Warning: <img> lacks "alt" attribute
line 321 column 113 - Warning: <img> lacks "alt" attribute
line 321 column 163 - Warning: <img> lacks "alt" attribute
line 322 column 11 - Warning: <img> lacks "alt" attribute
line 332 column 15 - Warning: <img> lacks "alt" attribute
line 339 column 278 - Warning: <img> lacks "alt" attribute
line 341 column 963 - Warning: <img> proprietary attribute value "absmiddle"
line 341 column 963 - Warning: <img> lacks "alt" attribute
line 341 column 1059 - Warning: <img> lacks "alt" attribute
line 341 column 1155 - Warning: <img> lacks "alt" attribute
line 341 column 1268 - Warning: <img> lacks "alt" attribute
line 349 column 23 - Warning: <img> lacks "alt" attribute
line 349 column 64 - Warning: <img> lacks "alt" attribute
line 349 column 113 - Warning: <img> lacks "alt" attribute
line 349 column 163 - Warning: <img> lacks "alt" attribute
line 360 column 15 - Warning: <img> lacks "alt" attribute
line 367 column 74 - Warning: <table> attribute "bgcolor" had invalid value "FFFFFF" and has been replaced
line 369 column 564 - Warning: <img> lacks "alt" attribute
line 376 column 11 - Warning: <img> lacks "alt" attribute
line 377 column 23 - Warning: <img> lacks "alt" attribute
line 377 column 64 - Warning: <img> lacks "alt" attribute
line 377 column 113 - Warning: <img> lacks "alt" attribute
line 377 column 163 - Warning: <img> lacks "alt" attribute
line 388 column 15 - Warning: <img> lacks "alt" attribute
line 402 column 11 - Warning: <img> lacks "alt" attribute
line 403 column 23 - Warning: <img> lacks "alt" attribute
line 403 column 64 - Warning: <img> lacks "alt" attribute
line 403 column 113 - Warning: <img> lacks "alt" attribute
line 403 column 163 - Warning: <img> lacks "alt" attribute
line 414 column 15 - Warning: <img> lacks "alt" attribute
line 427 column 703 - Warning: <img> proprietary attribute value "absmiddle"
line 427 column 703 - Warning: <img> lacks "alt" attribute
line 443 column 23 - Warning: <img> lacks "alt" attribute
line 443 column 64 - Warning: <img> lacks "alt" attribute
line 443 column 113 - Warning: <img> lacks "alt" attribute
line 443 column 163 - Warning: <img> lacks "alt" attribute
line 444 column 11 - Warning: <img> lacks "alt" attribute
line 454 column 15 - Warning: <img> lacks "alt" attribute
line 473 column 23 - Warning: <img> lacks "alt" attribute
line 473 column 64 - Warning: <img> lacks "alt" attribute
line 473 column 113 - Warning: <img> lacks "alt" attribute
line 473 column 162 - Warning: <img> lacks "alt" attribute
line 484 column 15 - Warning: <img> lacks "alt" attribute
line 491 column 788 - Warning: <table> attribute "bgcolor" had invalid value "FFFFFF" and has been replaced
line 491 column 933 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 491 column 971 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 491 column 1035 - Warning: <img> lacks "alt" attribute
line 491 column 1104 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 491 column 1142 - Warning: <td> attribute "valign" has invalid value "center"
line 491 column 1142 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 491 column 1336 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 491 column 1406 - Warning: <img> lacks "alt" attribute
line 491 column 1471 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 491 column 1516 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 499 column 23 - Warning: <img> lacks "alt" attribute
line 499 column 64 - Warning: <img> lacks "alt" attribute
line 499 column 113 - Warning: <img> lacks "alt" attribute
line 499 column 163 - Warning: <img> lacks "alt" attribute
line 500 column 11 - Warning: <img> lacks "alt" attribute
line 510 column 15 - Warning: <img> lacks "alt" attribute
line 528 column 11 - Warning: <img> lacks "alt" attribute
line 529 column 23 - Warning: <img> lacks "alt" attribute
line 529 column 64 - Warning: <img> lacks "alt" attribute
line 529 column 113 - Warning: <img> lacks "alt" attribute
line 529 column 163 - Warning: <img> lacks "alt" attribute
line 540 column 15 - Warning: <img> lacks "alt" attribute
line 559 column 42 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 42 - Warning: <img> lacks "alt" attribute
line 559 column 85 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 85 - Warning: <img> lacks "alt" attribute
line 559 column 128 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 128 - Warning: <img> lacks "alt" attribute
line 559 column 171 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 171 - Warning: <img> lacks "alt" attribute
line 559 column 214 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 214 - Warning: <img> lacks "alt" attribute
line 559 column 257 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 257 - Warning: <img> lacks "alt" attribute
line 559 column 300 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 300 - Warning: <img> lacks "alt" attribute
line 559 column 343 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 343 - Warning: <img> lacks "alt" attribute
line 559 column 386 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 386 - Warning: <img> lacks "alt" attribute
line 559 column 429 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 429 - Warning: <img> lacks "alt" attribute
line 559 column 472 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 472 - Warning: <img> lacks "alt" attribute
line 559 column 515 - Warning: <img> proprietary attribute value "absmiddle"
line 559 column 515 - Warning: <img> lacks "alt" attribute
line 561 column 33 - Warning: <img> lacks "alt" attribute
line 564 column 37 - Warning: <img> lacks "alt" attribute
line 571 column 99 - Warning: <table> attribute "bgcolor" had invalid value "ffffff" and has been replaced
line 571 column 437 - Warning: <img> proprietary attribute value "absmiddle"
line 571 column 437 - Warning: <img> lacks "alt" attribute
line 571 column 554 - Warning: <img> lacks "alt" attribute
line 577 column 11 - Warning: <img> lacks "alt" attribute
line 578 column 23 - Warning: <img> lacks "alt" attribute
line 578 column 64 - Warning: <img> lacks "alt" attribute
line 578 column 113 - Warning: <img> lacks "alt" attribute
line 578 column 163 - Warning: <img> lacks "alt" attribute
line 579 column 11 - Warning: <img> lacks "alt" attribute
line 589 column 15 - Warning: <img> lacks "alt" attribute
line 598 column 589 - Warning: <img> lacks "alt" attribute
line 599 column 712 - Warning: <img> lacks "alt" attribute
line 608 column 23 - Warning: <img> lacks "alt" attribute
line 608 column 64 - Warning: <img> lacks "alt" attribute
line 608 column 113 - Warning: <img> lacks "alt" attribute
line 608 column 163 - Warning: <img> lacks "alt" attribute
line 609 column 11 - Warning: <img> lacks "alt" attribute
line 619 column 15 - Warning: <img> lacks "alt" attribute
line 631 column 756 - Warning: <img> lacks "alt" attribute
line 632 column 853 - Warning: <img> lacks "alt" attribute
line 639 column 11 - Warning: <img> lacks "alt" attribute
line 640 column 23 - Warning: <img> lacks "alt" attribute
line 640 column 64 - Warning: <img> lacks "alt" attribute
line 640 column 113 - Warning: <img> lacks "alt" attribute
line 640 column 163 - Warning: <img> lacks "alt" attribute
line 651 column 15 - Warning: <img> lacks "alt" attribute
line 670 column 23 - Warning: <img> lacks "alt" attribute
line 670 column 64 - Warning: <img> lacks "alt" attribute
line 670 column 113 - Warning: <img> lacks "alt" attribute
line 670 column 163 - Warning: <img> lacks "alt" attribute
line 671 column 11 - Warning: <img> lacks "alt" attribute
line 681 column 15 - Warning: <img> lacks "alt" attribute
line 688 column 278 - Warning: <img> lacks "alt" attribute
line 689 column 663 - Warning: <img> proprietary attribute value "absmiddle"
line 689 column 663 - Warning: <img> lacks "alt" attribute
line 689 column 759 - Warning: <img> lacks "alt" attribute
line 689 column 855 - Warning: <img> lacks "alt" attribute
line 689 column 968 - Warning: <img> lacks "alt" attribute
line 697 column 23 - Warning: <img> lacks "alt" attribute
line 697 column 64 - Warning: <img> lacks "alt" attribute
line 697 column 113 - Warning: <img> lacks "alt" attribute
line 697 column 162 - Warning: <img> lacks "alt" attribute
line 708 column 15 - Warning: <img> lacks "alt" attribute
line 715 column 788 - Warning: <table> attribute "bgcolor" had invalid value "FFFFFF" and has been replaced
line 715 column 933 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 715 column 971 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 715 column 1035 - Warning: <img> lacks "alt" attribute
line 715 column 1104 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 715 column 1142 - Warning: <td> attribute "valign" has invalid value "center"
line 715 column 1142 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 715 column 1266 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 715 column 1336 - Warning: <img> lacks "alt" attribute
line 715 column 1401 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 715 column 1446 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 722 column 11 - Warning: <img> lacks "alt" attribute
line 723 column 23 - Warning: <img> lacks "alt" attribute
line 723 column 64 - Warning: <img> lacks "alt" attribute
line 723 column 113 - Warning: <img> lacks "alt" attribute
line 723 column 163 - Warning: <img> lacks "alt" attribute
line 734 column 15 - Warning: <img> lacks "alt" attribute
line 749 column 23 - Warning: <img> lacks "alt" attribute
line 749 column 64 - Warning: <img> lacks "alt" attribute
line 749 column 113 - Warning: <img> lacks "alt" attribute
line 749 column 162 - Warning: <img> lacks "alt" attribute
line 760 column 15 - Warning: <img> lacks "alt" attribute
line 767 column 788 - Warning: <table> attribute "bgcolor" had invalid value "FFFFFF" and has been replaced
line 767 column 933 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 767 column 971 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 767 column 1035 - Warning: <img> lacks "alt" attribute
line 767 column 1104 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 767 column 1142 - Warning: <td> attribute "valign" has invalid value "center"
line 767 column 1142 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 788 column 1799 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 788 column 1869 - Warning: <img> lacks "alt" attribute
line 788 column 1934 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 788 column 1979 - Warning: <td> attribute "bgcolor" had invalid value "3333FF" and has been replaced
line 797 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 797 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 797 column 216 - Warning: <img> proprietary attribute value "absmiddle"
line 806 column 25 - Warning: <img> lacks "alt" attribute
line 811 column 267 - Warning: <img> lacks "alt" attribute
line 791 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 210 column 27 - Warning: <nobr> is not approved by W3C
line 265 column 27 - Warning: <nobr> is not approved by W3C
line 301 column 27 - Warning: <nobr> is not approved by W3C
line 337 column 27 - Warning: <nobr> is not approved by W3C
line 365 column 27 - Warning: <nobr> is not approved by W3C
line 367 column 74 - Warning: <table> proprietary attribute "height"
line 393 column 27 - Warning: <nobr> is not approved by W3C
line 419 column 27 - Warning: <nobr> is not approved by W3C
line 459 column 27 - Warning: <nobr> is not approved by W3C
line 489 column 27 - Warning: <nobr> is not approved by W3C
line 491 column 788 - Warning: <table> proprietary attribute "height"
line 491 column 873 - Warning: <table> proprietary attribute "height"
line 491 column 1591 - Warning: <table> proprietary attribute "height"
line 515 column 27 - Warning: <nobr> is not approved by W3C
line 545 column 27 - Warning: <nobr> is not approved by W3C
line 569 column 47 - Warning: <nobr> is not approved by W3C
line 571 column 99 - Warning: <table> proprietary attribute "height"
line 594 column 27 - Warning: <nobr> is not approved by W3C
line 596 column 74 - Warning: <table> proprietary attribute "height"
line 596 column 74 - Warning: <table> proprietary attribute "background"
line 624 column 27 - Warning: <nobr> is not approved by W3C
line 626 column 74 - Warning: <table> proprietary attribute "height"
line 632 column 827 - Warning: <marquee> is not approved by W3C
line 656 column 27 - Warning: <nobr> is not approved by W3C
line 686 column 27 - Warning: <nobr> is not approved by W3C
line 713 column 27 - Warning: <nobr> is not approved by W3C
line 715 column 788 - Warning: <table> proprietary attribute "height"
line 715 column 873 - Warning: <table> proprietary attribute "height"
line 715 column 1521 - Warning: <table> proprietary attribute "height"
line 739 column 27 - Warning: <nobr> is not approved by W3C
line 765 column 27 - Warning: <nobr> is not approved by W3C
line 767 column 788 - Warning: <table> proprietary attribute "height"
line 767 column 873 - Warning: <table> proprietary attribute "height"
line 788 column 2054 - Warning: <table> proprietary attribute "height"
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 409 warnings and 0 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