LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Games (https://www.linuxquestions.org/questions/linux-games-33/)
-   -   Need testers for my little opengl game (https://www.linuxquestions.org/questions/linux-games-33/need-testers-for-my-little-opengl-game-938756/)

prushik 04-08-2012 10:47 AM

Need testers for my little opengl game
 
It's not finished. Most of the game has been tested pretty well, however, I'm having trouble testing the network gameplay portion. I really just started working on the network part, and I suspect that there will be some race conditions that will mess things up. I can only run it on one of my machines at the moment, since one machine is a dinosaur with video card/opengl issues, and the other is being used for an experimental Linux distro that I am working on, and at the moment it only has kdrive xserver (no OpenGL). So, anybody that can test the network portions of my game would be a big help.
Also, I have released the source, so you can look at it if you want, but be warned that I wrote most of it in highschool, so its kinda sloppy. It's licensed under the beerware license.
Here is the link:
http://www.betteros.org/games/download.html

yooy 04-08-2012 11:46 AM

It say: "package is of bad quality" when i attept to install

Quote:

Lintian check results for /home/deb/Downloads/UnititledOne.2012.04.08.deb:
Use of uninitialized value $ENV{"HOME"} in concatenation (.) or string at /usr/bin/lintian line 108.
E: UntitledOne: arch-independent-package-contains-binary-or-object usr/games/UntitledOne
E: UntitledOne: wrong-file-owner-uid-or-gid usr/ 1000/1000
E: UntitledOne: wrong-file-owner-uid-or-gid usr/games/ 1000/1000
E: UntitledOne: wrong-file-owner-uid-or-gid usr/games/UntitledOne 1000/1000
I'm using cross distro linux mint&ubuntu 12.04 beta.

when i click ignore it fails to install. However my software center seems to be broken somehow.

prushik 04-08-2012 06:29 PM

Quote:

Originally Posted by yooy (Post 4647751)
It say: "package is of bad quality" when i attept to install



I'm using cross distro linux mint&ubuntu 12.04 beta.

when i click ignore it fails to install. However my software center seems to be broken somehow.

Oh.. huh, how about that. Well, that's another reason why testing things by myself isn't good enough. I assume its a permission problem, since you don't have a user prushik with uid 1000 on your system. I'll fix the permissions and upload again soon, however, now I have to get to Korean class, so I can't fix it until I get home.
If you are determined to test it, you can try to compile it from source. It's quite easy, just:
gcc ut1l.c -lGL -lGLU -lglut -DAUDIO -lalut -lopenal -o UntitledOne
You can leave out the -DAUDIO part if you don't have openAL or if the sound is too annoying (its not done yet).

manu-tm 04-08-2012 11:18 PM

~/Desktop$ ./UntitledOne
freeglut (./UntitledOne): glXCreateContextAttribsARB not found

Maybe you should provide more detailled info about required dependencies or how to build and run the program, or a functional debian package.

prushik 04-09-2012 12:11 AM

Just got back from Korean class, now I hopefully I can fix some of these issues.

Quote:

Originally Posted by manu-tm (Post 4648040)
~/Desktop$ ./UntitledOne
freeglut (./UntitledOne): glXCreateContextAttribsARB not found

I think that is either a freeglut problem, or a glx problem. That's the error I get on my old HP laptop (the beast). I'll see if I can debug the problem, but I assumed it was a bug in the very old fglrx drivers that are running on that machine.

Quote:

Originally Posted by manu-tm (Post 4648040)
Maybe you should provide more detailled info about required dependencies or how to build and run the program, or a functional debian package.

Yep, that's a good idea. What I did was pretty slapdash, but now I have time, so I'll see about fixing the debian package.
The dependencies are:
libGL
libGLU
FreeGLUT or GLUT or OpenGLUT (OpenGLUT is untested)

Optional Audio Support:
OpenAL
libalut

prushik 04-09-2012 01:51 AM

Ok, I uploaded a new .deb package, the files are now owned by root instead of prushik, so it should work.
I also added a list of dependencies on the webpage. I also changed the source package to a little tarball with a makefile and a pseudo-configure script. Although just compiling with gcc is still just as easy, ./configure && make is more familiar to many folks.
http://www.betteros.org/games/download.html

yooy 04-09-2012 02:21 AM

now i can't downlaod deb package, ita says 404 error not found.

prushik 04-09-2012 03:49 AM

Quote:

Originally Posted by yooy (Post 4648101)
now i can't downlaod deb package, ita says 404 error not found.

Yes, sorry, that has been fixed. It was a typo. Sorry. I also added a 32 bit package as well as the 64 bit version.

prushik 04-09-2012 08:05 AM

Quote:

Originally Posted by manu-tm (Post 4648040)
~/Desktop$ ./UntitledOne
freeglut (./UntitledOne): glXCreateContextAttribsARB not found

Also, there is a solution for this, Next source code release will include a fix for this (not so much a fix, more of a workaround, but it makes the game work correctly).

prushik 04-10-2012 02:53 AM

Ok, just uploaded my updated source code. It should fix the glXCreateContextAttribsARB problem, and network play should also work.
Debian packages have been fixed again (hopefully).

Changes:
-missile sound has been changed to something less obnoxious
-explosion sounds are in place, but they suck
-network play connection fixes
-added a (hopefully) more accurate method of measuring time (which can be compiled out by passing -DSLOPPYTIME to gcc)

manu-tm 04-10-2012 07:35 AM

I get the same error again (glXCreateContextAttribsARB not found).

I have:
GLX version: 1.4
OpenGL version string: 1.4 Mesa 7.10.2

prushik 04-10-2012 06:48 PM

Quote:

Originally Posted by manu-tm (Post 4649181)
I get the same error again (glXCreateContextAttribsARB not found).

I have:
GLX version: 1.4
OpenGL version string: 1.4 Mesa 7.10.2

Did you compile from source or use a deb package? I'm pretty sure that the problem is not due to mesa or GLX but rather your video card driver. What video card do you have? Is it an ATI Radeon by any chance?
Nevermind... I checked my source again and I seem to have added the problem code back in...

If you want to get it working, remove line 307 and recompile it and it should work.
The line that says:
Code:

        glutInitContextVersion (3, 1);
is the problem, just comment it out or delete it completely and it will compile and run.

Sorry about that.

manu-tm 04-10-2012 07:13 PM

I could run the game but it's very slow and keys are not working as expected.

prushik 04-11-2012 06:33 PM

Quote:

Originally Posted by manu-tm (Post 4649706)
I could run the game but it's very slow and keys are not working as expected.

Very interesting... I haven't had any trouble with speed. If I disable the timing, then it runs too fast on my machines, even my 6 year old hp laptop (the beast).
However, I have not yet tested the new timing mechanism on more than one machine, so next time I will revert to the old timing mechanism.

Where did you see speed as an issue? During solo gameplay, network gameplay, or in the menus? Are you using 32 bit or 64 bit?

It's really not a very resource intensive game, speed shouldn't be an issue (except in network games).

manu-tm 04-12-2012 09:19 AM

Something is wrong with keyboard mapping. You probably should fix that first.

prushik 04-13-2012 12:14 AM

Ok, that's strange. Could you describe the problem you are having? Both of my computers have no keyboard issues, although, since the keyboard code was ported from Windows to GLUT, there definitely could be problems with it.

manu-tm 04-13-2012 02:08 PM

Pressing left and right arrow keys do nothing. On which distro have you tested it?

prushik 04-13-2012 09:12 PM

Quote:

Originally Posted by manu-tm (Post 4652038)
Pressing left and right arrow keys do nothing. On which distro have you tested it?

All testing so far has been done on Lubuntu Precise Pangolin and Ubuntu Maverick Meercat. However, the distribution should make no difference, as I know of no distribution that doesn't use the same combination of Mesa/Xorg/Xinput-drivers, except maybe some of the tiny distros that are still based on the 2.4 kernel series (DSL).
The left and right keys do not have any functionality during the menu, and also while the player is on the ground. A minimum test case for testing those keys would be navigating through the menu to some gameplay mode (Classic, Asteroids, or Targets; Using up and down keys), Selecting that mode (Return key), Leaving the ground (Up key), and then turning either left or right (left and right keys).
Also, it could be helpful to note if the problem is limited to the special keys, or if the problem is also apparent in the wasd keys as well (select classic mode)

manu-tm 04-13-2012 09:41 PM

Ok, the up key must be used first. But it's still very slow. Maybe you should make the program more configurable (at run time or by allowing command line arguments). I'm on Natty BTW.

prushik 04-14-2012 09:49 AM

Quote:

Originally Posted by manu-tm (Post 4652240)
Ok, the up key must be used first. But it's still very slow. Maybe you should make the program more configurable (at run time or by allowing command line arguments). I'm on Natty BTW.

What kind of configuration are you thinking of? Something like changing the key mappings? or something else?
Currently, entering a command line argument causes the game to jump into a network game with whatever IP address you entered on the command line, I would like to keep that on the command line even when I consider the game complete, however, I could easily parse other types of arguments if necessary, maybe change to a more GNU getopts argument style, if it was desirable.

manu-tm 04-14-2012 10:18 AM

Quote:

Originally Posted by prushik (Post 4652550)
What kind of configuration are you thinking of? Something like changing the key mappings? or something else?

Something like --speed=N (form slow to max speed) or anything that's interesting to tweak/test (although I don't know what.) BTW, the key mapping is ok.

prushik 04-16-2012 03:43 AM

Quote:

Originally Posted by manu-tm (Post 4652564)
Something like --speed=N (form slow to max speed) or anything that's interesting to tweak/test (although I don't know what.) BTW, the key mapping is ok.

I'm hesitant to allow users to configure the speed on runtime, things could get especially hairy in network games if players use different settings.
That being said, I am sure your speed issues are not a resources issue, the game uses very little resources (not even any textures, and sounds are less than 1000 bytes each), so your speed issues must be due to something wrong with my timing system. If you compile with the -DSLOPPYTIME flag, I think your problems will be resolved.
I like the idea of compile-time configuration better than runtime configuration, just from a stance of not wasting resources.

manu-tm 04-16-2012 08:28 AM

When compiling with -DSLOPPYTIME, I got errors. I could fix them but I still find the game not responsive enough on my box.

Do you have a windows version? I could give it a try on xp and see the original game behaviour.

prushik 04-17-2012 12:40 AM

Quote:

Originally Posted by manu-tm (Post 4654086)
When compiling with -DSLOPPYTIME, I got errors. I could fix them but I still find the game not responsive enough on my box.

Do you have a windows version? I could give it a try on xp and see the original game behaviour.

There wasn't one besides the old outdated Windows version, but it took me like 5 minutes to cross compile a new executable. I had to disable the sound and network though. I don't have Windows on any of my machines, so note that these builds are not tested at all.
I just uploaded them to the website, there is a regular version and a sloppy timings version.
http://betteros.org/games/download.html

manu-tm 04-17-2012 12:13 PM

Unfortunately, there was some missing dll (libglut-0.dll) and when I finally could grab this one, it was still broken (bad version probably) so...

prushik 04-17-2012 06:36 PM

Quote:

Originally Posted by manu-tm (Post 4655255)
Unfortunately, there was some missing dll (libglut-0.dll) and when I finally could grab this one, it was still broken (bad version probably) so...

Oops, sorry about that. It should be fixed now, I compiled it statically so that it shouldn't depend on any dll's.
However, for reference, I used FreeGLUT instead of GLUT, although I thought they were binary compatible.
If you re-download, hopefully it will work.

manu-tm 04-17-2012 07:20 PM

I still got the same error (missing libglut-0.dll).

prushik 04-18-2012 03:03 AM

Quote:

Originally Posted by manu-tm (Post 4655560)
I still got the same error (missing libglut-0.dll).

Interesting.... Cross compiling for Windows is weird.. I'll package my libglut-0.dll with the executable and upload it again soon.

prushik 04-18-2012 09:59 AM

Quote:

Originally Posted by manu-tm (Post 4655560)
I still got the same error (missing libglut-0.dll).

Ok, I replaced the exe file on the download page with a zip file containing both executables and the dll needed to run them. Still not sure why the executables are linked to that dll, since I never even installed that dll in my toolchain...
http://betteros.org/games/download.html

manu-tm 04-18-2012 02:38 PM

I got a crash (bsod). For which version of windows is it compiled?

Maybe you should make a portable version including all required dll's to avoid that. Anyways, if you're cross-compiling, it's not that easy...

indietrash 04-18-2012 03:39 PM

just reporting that the game runs fine on my system (Linux lolwabbit 2.6.39-gentoo-r2 #9 SMP Wed Dec 14 18:31:40 CET 2011 x86_64 Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz GenuineIntel GNU/Linux).

the code looked fairly nice as well. globals are indeed very bad, but you know that, judging by your comment. you should probably divide the game up into more files and use autotools for building it as well. furthermore, I would recommend putting it up on github, which makes collaboration easier. maybe someone will help you. :-)

prushik 04-19-2012 12:28 AM

Quote:

Originally Posted by indietrash (Post 4656532)
just reporting that the game runs fine on my system (Linux lolwabbit 2.6.39-gentoo-r2 #9 SMP Wed Dec 14 18:31:40 CET 2011 x86_64 Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz GenuineIntel GNU/Linux).

the code looked fairly nice as well. globals are indeed very bad, but you know that, judging by your comment. you should probably divide the game up into more files and use autotools for building it as well. furthermore, I would recommend putting it up on github, which makes collaboration easier. maybe someone will help you. :-)

You have almost the exact same processor as my dev machine: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
Thank you.
I would split the source up into multiple files, but I kind of like the fact that everything is contained in one file. That's why I'm even hard coding the sounds into the source, to make sure everything is contained in one file, and compiled into one executable. In any other scenario I would most certainly do that, and when it comes time to make the sequel, it will be done that way from the start. I definitely do not want to use autotools however, IMHO autotools is a huge mess, and I avoid it whenever possible. At this point, compiling is so simple that such a build system shouldn't be needed, however, I realize that many people are familiar with the GNU autotools build procedure, so to accommodate, I have a configure script myself which mimics the GNU autotools syntax and functionality, and can even be used to cross compile. Although I admit that I have been lax in updating it, it still lacks support for enabling sloppy timing, I'll do some work on it today.
As for moving to github, its probably a good idea. Personally, I am not all that familiar with git, for most of my other projects I have been using subversion repositories hosted at Assembla, since Assembla was the only host I could find that wouldn't constrain my license options to copy-left licenses.
So, if it would truly be helpful, and github does not force me to use copyleft licenses, then I will gladly move source to github.

prushik 04-19-2012 12:36 AM

Quote:

Originally Posted by manu-tm (Post 4656476)
I got a crash (bsod). For which version of windows is it compiled?

Maybe you should make a portable version including all required dll's to avoid that. Anyways, if you're cross-compiling, it's not that easy...

Oh dear.... Sorry about that, my sincere apologies. I didn't even realize that a userspace program was capable of doing that in Windows.... I'm very sorry, I hope no damage was done.
I'll see if I can figure out whats going so wrong with my builds instead of just trying different permutations (which is an antipattern I'm afraid)

indietrash 04-19-2012 06:12 AM

Quote:

Originally Posted by prushik (Post 4656818)
I definitely do not want to use autotools however, IMHO autotools is a huge mess, and I avoid it whenever possible.

I like GNU AutoTools. it has a lot of nice features. admittedly, it is big and messy. you can consider the alternative, which is ever growing in popularity, CMake - https://en.wikipedia.org/wiki/Cmake.

Quote:

Originally Posted by prushik (Post 4656818)
if it would truly be helpful, and github does not force me to use copyleft licenses, then I will gladly move source to github.

the only constraint that github has, at least to my knowledge, is that if you do not want the source code available, you need to pay for a closed repository. copyleft isn't necessary.

github provides you with some nice features, such as pull requests. this means that a user can fork your project, do some changes, and send you a pull request for their commit. you can review their commit, and pull it if you find it agreeable. it's just all-round pleasant to work with.

git in general is amazing. with svn et al., I'm generally very afraid to bork things on larger projects, and find myself wrestling with the system whenever I need to do something remotely complex. git on the other hand is actually fun to work with. you just hack and play. it's all very pleasant, just like the github.

prushik 04-19-2012 06:36 PM

Quote:

Originally Posted by manu-tm (Post 4656476)
I got a crash (bsod). For which version of windows is it compiled?

Maybe you should make a portable version including all required dll's to avoid that. Anyways, if you're cross-compiling, it's not that easy...

I believe I have discovered what has caused your BSOD. Neither timing system is functional under Windows, it seems that usleep compiles in minGW, but does nothing, so the game runs at full speed taking up 100% of your CPU. When I get home tonight I will take some time to rewrite the timing system using GLUT alternatives to the POSIX specific code.

Edit: Eh. well, turns out GLUT doesn't have a way to do exactly what I want, its timer callback is basically a busyloop without adding any sleep functions. So, with no platform independent options, I decided to use the preprocessor to use Sleep() instead of usleep if you don't compile on Unix. Now it compiles and runs at the right speed on Windows (well.... it runs on Wine).

prushik 04-19-2012 06:44 PM

Quote:

Originally Posted by indietrash (Post 4657223)
I like GNU AutoTools. it has a lot of nice features. admittedly, it is big and messy. you can consider the alternative, which is ever growing in popularity, CMake - https://en.wikipedia.org/wiki/Cmake.

Cmake at least looks nicer when it is compiling. I like build systems which use colors. However, really the only thing that a build system needs to do is determine if you are cross compiling, and whether or not GLUT, openAL, and ALUT are available, which are all fairly simple things to do.


Quote:

Originally Posted by indietrash (Post 4657223)
the only constraint that github has, at least to my knowledge, is that if you do not want the source code available, you need to pay for a closed repository. copyleft isn't necessary.

github provides you with some nice features, such as pull requests. this means that a user can fork your project, do some changes, and send you a pull request for their commit. you can review their commit, and pull it if you find it agreeable. it's just all-round pleasant to work with.

git in general is amazing. with svn et al., I'm generally very afraid to bork things on larger projects, and find myself wrestling with the system whenever I need to do something remotely complex. git on the other hand is actually fun to work with. you just hack and play. it's all very pleasant, just like the github.

Alright, I'll look into possibly setting up a repository later today.

alright, I set up a git repo on github. I think I have done everything correctly, take a look and let me know. Thanks!
https://github.com/prushik/untitledone

manu-tm 04-20-2012 02:04 PM

BTW, I've tested your game on a linux box with: Ubuntu natty, Intel Atom 1.6GHz processor, 1GB RAM. Does the game need a faster proccessor or more RAM?

prushik 04-20-2012 10:23 PM

Quote:

Originally Posted by manu-tm (Post 4658622)
BTW, I've tested your game on a linux box with: Ubuntu natty, Intel Atom 1.6GHz processor, 1GB RAM. Does the game need a faster proccessor or more RAM?

It really shouldn't, although, it was developed originally on a 3GHz P4 with hyperthreading; I don't think I have tested with anything weaker than that. I lent my good friend my netbook while his laptop was out of commission, and he never returned it, and that was before I came to Korea, so I don't think I'm getting it back, so I can't test it on a netbook myself, sorry.
However, it looks to me like Untitled one uses about 25.2 MB of RAM, which is a hell of a lot more than I expected, but still not much, each of my chromium tabs uses more than that. As for processor usage, on my machine, its only using about 1% or less at all times, it really isn't resource intensive.
Do other OpenGL applications run slowly on your machine as well? Maybe your OpenGL implementation is to blame. Also, have you tried compiling with audio disabled?

manu-tm 04-21-2012 08:32 AM

Hmmm, I'll give it a try on another machine and see what happens.

prushik 04-21-2012 11:47 PM

Quote:

Originally Posted by manu-tm (Post 4659199)
Hmmm, I'll give it a try on another machine and see what happens.

Actually, it would probably be best if I added some instrumentation to the the code.
If you don't mind wasting some of your time, I will write a special build that will still run slowly, but will generate some output which you can send back to me and will tell me exactly which parts of the code are slowing it down for you. Do you mind?

manu-tm 04-22-2012 03:41 PM

Quote:

Originally Posted by prushik (Post 4659618)
Actually, it would probably be best if I added some instrumentation to the the code.
If you don't mind wasting some of your time, I will write a special build that will still run slowly, but will generate some output which you can send back to me and will tell me exactly which parts of the code are slowing it down for you. Do you mind?

Sure, no prob...

prushik 04-23-2012 03:25 AM

Quote:

Originally Posted by manu-tm (Post 4660102)
Sure, no prob...

Ok, if you clone the git-hub repo, it now has some instrumentation added. Clone the repo, and add -DINSTRUMENT as an argument when you compile.
The resulting executable will print out a lot of stuff, its all just timing information, you can redirect the output to a file or you can just copy and paste some of it here. The last number on each line is the length of time that your CPU is idle per step, for me it was always 33ms or 34ms, which is pretty much as good as you can ask for. The game shouldn't start to actually slow down unless the last number reaches 0 (or if you have sloppy timing enabled), in which case the numbers before it should always add up to 34 or more, showing which part of the code uses wastes the most time.
https://github.com/prushik/untitledone

manu-tm 04-23-2012 07:54 AM

Here is what I got:

Code:

~/Desktop/prushik-untitledone-c91d028$ ./UntitledOne
45 : 2 : 0 : 0 : 0 : 34
357 : 0 : 0 : 0 : 36 : 0
394 : 7 : 0 : 0 : 6 : 27
446 : 1 : 0 : 0 : 7 : 27
483 : 1 : 0 : 0 : 10 : 23
517 : 1 : 0 : 0 : 8 : 25
551 : 2 : 0 : 0 : 20 : 14
587 : 11 : 0 : 0 : 8 : 26
632 : 1 : 0 : 0 : 6 : 27
666 : 1 : 0 : 0 : 7 : 26
700 : 1 : 0 : 0 : 8 : 26
735 : 1 : 0 : 0 : 14 : 20
770 : 1 : 0 : 0 : 7 : 26
804 : 6 : 0 : 0 : 15 : 19
844 : 9 : 0 : 0 : 6 : 27
886 : 1 : 0 : 0 : 27 : 7
921 : 0 : 0 : 0 : 8 : 26
955 : 1 : 0 : 0 : 7 : 26
989 : 1 : 0 : 0 : 8 : 25
1024 : 0 : 0 : 0 : 13 : 21
1058 : 7 : 0 : 0 : 6 : 27
1098 : 4 : 0 : 0 : 6 : 28
1136 : 0 : 0 : 1 : 6 : 27
1170 : 1 : 0 : 0 : 29 : 4
1204 : 1 : 0 : 0 : 9 : 24
1238 : 1 : 0 : 0 : 15 : 18
1273 : 10 : 0 : 0 : 11 : 23
1317 : 1 : 0 : 0 : 10 : 23
1351 : 1 : 0 : 0 : 5 : 28
1386 : 0 : 0 : 0 : 7 : 27
1420 : 0 : 0 : 0 : 7 : 27
1454 : 0 : 0 : 0 : 6 : 28
1488 : 13 : 0 : 0 : 16 : 18
1535 : 0 : 1 : 0 : 7 : 26
1569 : 1 : 0 : 0 : 12 : 22
1604 : 0 : 0 : 0 : 7 : 27
1638 : 1 : 0 : 0 : 7 : 26
1672 : 1 : 0 : 0 : 13 : 21
1707 : 7 : 0 : 0 : 14 : 1019
2759 : 0 : 0 : 0 : 5 : 29
2793 : 3 : 0 : 0 : 11 : 23
2830 : 10 : 0 : 0 : 16 : 17
2874 : 0 : 0 : 0 : 11 : 23
2908 : 0 : 0 : 0 : 23 : 11
2942 : 8 : 0 : 0 : 5 : 28
2983 : 1 : 0 : 0 : 14 : 20
3018 : 6 : 0 : 0 : 7 : 27
3058 : 0 : 0 : 0 : 9 : 25
3092 : 2 : 0 : 0 : 13 : 20
3127 : 1 : 0 : 0 : 6 : 27
3161 : 1 : 0 : 0 : 7 : 27
3196 : 1 : 0 : 0 : 14 : 20
3231 : 9 : 0 : 0 : 8 : 26
3274 : 1 : 0 : 0 : 14 : 19
3308 : 1 : 1 : 0 : 18 : 15
3343 : 1 : 0 : 0 : 8 : 25
3377 : 1 : 0 : 0 : 9 : 24
3412 : 0 : 0 : 0 : 14 : 20
3446 : 9 : 0 : 0 : 7 : 27
3489 : 1 : 0 : 0 : 10 : 23
3523 : 1 : 0 : 0 : 10 : 23
3558 : 0 : 0 : 0 : 5 : 29
3592 : 0 : 0 : 0 : 9 : 25
3626 : 1 : 0 : 0 : 6 : 27
3660 : 1 : 0 : 0 : 10 : 23
3695 : 0 : 0 : 0 : 15 : 19
3729 : 1 : 0 : 0 : 24 : 9
3763 : 4 : 0 : 0 : 8 : 26
3801 : 1 : 0 : 0 : 12 : 21
3835 : 1 : 0 : 0 : 7 : 28
3871 : 1 : 0 : 0 : 27 : 6
3905 : 1 : 0 : 0 : 18 : 15
3940 : 0 : 0 : 0 : 8 : 26
3974 : 0 : 0 : 0 : 9 : 25
4008 : 1 : 0 : 0 : 38 : 0
4047 : 5 : 0 : 0 : 6 : 28
4086 : 0 : 0 : 0 : 6 : 28
4120 : 1 : 0 : 0 : 12 : 21
4154 : 1 : 0 : 0 : 5 : 28
4188 : 5 : 0 : 0 : 7 : 27
4227 : 11 : 0 : 0 : 5 : 28
4271 : 1 : 0 : 0 : 5 : 28
4305 : 1 : 0 : 0 : 8 : 25
4339 : 1 : 0 : 0 : 16 : 18
4374 : 1 : 0 : 0 : 7 : 26
4408 : 1 : 0 : 0 : 8 : 25
4443 : 0 : 0 : 0 : 14 : 20
4477 : 9 : 0 : 0 : 10 : 23
4519 : 3 : 0 : 0 : 7 : 27
4556 : 0 : 1 : 0 : 8 : 25
4590 : 1 : 0 : 0 : 5 : 28
4624 : 1 : 0 : 0 : 21 : 13
4659 : 0 : 0 : 0 : 5 : 29
4693 : 4 : 0 : 0 : 7 : 27
4731 : 5 : 0 : 0 : 6 : 28
4770 : 1 : 0 : 0 : 6 : 28
4805 : 1 : 0 : 0 : 9 : 24
4839 : 1 : 0 : 0 : 10 : 23
4874 : 0 : 0 : 0 : 7 : 27
4908 : 0 : 0 : 0 : 6 : 28
4942 : 1 : 0 : 0 : 5 : 28
4976 : 6 : 0 : 0 : 13 : 21
5016 : 3 : 0 : 0 : 7 : 26
5053 : 0 : 0 : 0 : 8 : 26
5087 : 0 : 0 : 0 : 31 : 3
5121 : 4 : 0 : 0 : 14 : 19
5158 : 1 : 0 : 0 : 5 : 28
5192 : 1 : 0 : 0 : 7 : 27
5227 : 1 : 0 : 0 : 16 : 20
5270 : 0 : 0 : 0 : 5 : 29
5304 : 1 : 0 : 0 : 6 : 27
5338 : 1 : 0 : 0 : 12 : 21
5372 : 1 : 0 : 0 : 6 : 27
5409 : 1 : 0 : 0 : 6 : 27
5443 : 7 : 0 : 0 : 14 : 20
5484 : 1 : 0 : 0 : 8 : 25
5519 : 0 : 0 : 0 : 6 : 28
5553 : 1 : 0 : 0 : 17 : 16
5588 : 0 : 0 : 0 : 8 : 26
5625 : 1 : 0 : 0 : 6 : 27
5659 : 8 : 0 : 0 : 17 : 17
5701 : 1 : 0 : 0 : 6 : 27
5736 : 0 : 0 : 0 : 5 : 29
5770 : 3 : 0 : 1 : 13 : 20
5807 : 1 : 0 : 0 : 8 : 25
5841 : 1 : 0 : 0 : 6 : 27
5876 : 0 : 0 : 0 : 23 : 11
5910 : 12 : 0 : 0 : 5 : 28
5956 : 0 : 0 : 0 : 21 : 13
5991 : 0 : 0 : 0 : 23 : 10
6025 : 5 : 0 : 0 : 5 : 28
6063 : 1 : 0 : 0 : 5 : 28
6098 : 7 : 0 : 0 : 16 : 18
6139 : 1 : 0 : 0 : 7 : 27
6174 : 1 : 0 : 0 : 10 : 23
6210 : 0 : 0 : 0 : 9 : 25
6244 : 1 : 0 : 0 : 6 : 27
6279 : 5 : 0 : 0 : 19 : 15
6318 : 1 : 0 : 0 : 13 : 20
6353 : 1 : 0 : 0 : 5 : 28
6388 : 0 : 0 : 0 : 17 : 17
6422 : 1 : 0 : 0 : 6 : 27
6456 : 1 : 0 : 0 : 8 : 25
6492 : 1 : 0 : 0 : 17 : 17
6527 : 8 : 0 : 0 : 6 : 27
6568 : 1 : 0 : 0 : 5 : 28
6603 : 0 : 0 : 0 : 8 : 26
6637 : 1 : 0 : 0 : 13 : 20
6671 : 2 : 0 : 0 : 16 : 17
6707 : 1 : 0 : 0 : 5 : 28
6741 : 5 : 0 : 0 : 13 : 20
6782 : 1 : 0 : 0 : 7 : 26
6816 : 1 : 0 : 0 : 25 : 9
6851 : 0 : 1 : 0 : 10 : 23
6886 : 0 : 0 : 0 : 8 : 26
6920 : 0 : 0 : 0 : 9 : 25
6959 : 0 : 0 : 0 : 15 : 19
6993 : 1 : 0 : 0 : 6 : 28
7028 : 0 : 0 : 0 : 10 : 24
7064 : 1 : 0 : 0 : 9 : 24
7098 : 1 : 0 : 0 : 9 : 24
7134 : 0 : 0 : 0 : 9 : 26
7169 : 14 : 0 : 0 : 7 : 26
7217 : 1 : 0 : 0 : 10 : 24
7252 : 0 : 0 : 0 : 7 : 27
7286 : 0 : 0 : 0 : 9 : 25
7322 : 0 : 0 : 1 : 18 : 15
7356 : 12 : 0 : 0 : 6 : 27
7403 : 1 : 0 : 0 : 10 : 23
7438 : 0 : 0 : 1 : 6 : 27
7472 : 1 : 0 : 0 : 5 : 28
7506 : 1 : 0 : 0 : 7 : 26
7540 : 9 : 0 : 0 : 7 : 27
7583 : 1 : 0 : 0 : 5 : 28
7617 : 1 : 0 : 0 : 12 : 21
7651 : 2 : 0 : 0 : 9 : 24
7686 : 2 : 0 : 0 : 10 : 23
7722 : 1 : 0 : 0 : 6 : 27
7756 : 1 : 0 : 0 : 14 : 20
7791 : 4 : 0 : 0 : 14 : 20
7829 : 1 : 0 : 0 : 8 : 25
7863 : 1 : 0 : 0 : 22 : 11
7898 : 0 : 0 : 0 : 9 : 25
7932 : 0 : 0 : 0 : 9 : 25
7966 : 1 : 0 : 0 : 11 : 22
8000 : 1 : 0 : 0 : 9 : 24
8035 : 1 : 0 : 0 : 15 : 18
8069 : 6 : 0 : 0 : 24 : 10
8109 : 3 : 0 : 0 : 6 : 27
8145 : 1 : 0 : 0 : 15 : 18
8179 : 1 : 0 : 0 : 7 : 26
8214 : 1 : 0 : 0 : 12 : 21
8248 : 1 : 0 : 0 : 6 : 28
8283 : 1 : 0 : 0 : 17 : 17
8318 : 3 : 0 : 0 : 8 : 25
8354 : 1 : 0 : 0 : 5 : 28
8388 : 1 : 0 : 0 : 7 : 27
8423 : 0 : 0 : 0 : 13 : 21
8457 : 1 : 0 : 0 : 7 : 26
8491 : 1 : 0 : 0 : 10 : 24
8526 : 0 : 0 : 0 : 7 : 27
8560 : 2 : 0 : 0 : 14 : 19
8612 : 1 : 0 : 0 : 27 : 6
8646 : 1 : 0 : 0 : 0 : 33
8682 : 0 : 0 : 0 : 0 : 34
8716 : 0 : 0 : 0 : *0* : *121* : 121 : 912
9750 : 0 : 0 : 0 : *0* : *128* : 129 : 0
9879 : 7 : 0 : 0 : *0* : *124* : 125 : 0
10011 : 7 : 0 : 0 : *0* : *123* : 124 : 0
10142 : 11 : 0 : 0 : *0* : *127* : 129 : 0
10282 : 4 : 0 : 0 : *0* : *121* : 121 : 0
10407 : 14 : 0 : 0 : *0* : *126* : 126 : 0
10547 : 7 : 0 : 0 : *0* : *121* : 121 : 0
10675 : 14 : 0 : 0 : *0* : *124* : 124 : 909
11727 : 0 : 0 : 0 : *1* : *124* : 125 : 0
11854 : 7 : 0 : 0 : *0* : *128* : 129 : 0
11991 : 3 : 0 : 0 : *0* : *121* : 122 : 0
12116 : 13 : 0 : 0 : *0* : *119* : 119 : 0
12248 : 14 : 0 : 0 : *0* : *127* : 127 : 0
12390 : 6 : 0 : 0 : *0* : *130* : 130 : 0
12526 : 4 : 0 : 0 : *0* : *123* : 123 : 0
12653 : 11 : 0 : 0 : *0* : *127* : 127 : 906
13727 : 9 : 0 : 0 : *0* : *118* : 118 : 0
13854 : 18 : 0 : 0 : *0* : *127* : 128 : 0
14000 : 4 : 0 : 0 : *0* : *122* : 122 : 0
14126 : 13 : 0 : 0 : *0* : *122* : 123 : 0
14262 : 15 : 0 : 0 : *0* : *128* : 128 : 0
14405 : 18 : 0 : 0 : *0* : *124* : 126 : 0
14549 : 8 : 0 : 0 : *0* : *127* : 128 : 0
14685 : 9 : 0 : 0 : *0* : *128* : 129 : 905
15763 : 0 : 0 : 0 : *0* : *117* : 117 : 0
15883 : 15 : 0 : 0 : *0* : *127* : 128 : 0
16026 : 8 : 0 : 0 : *0* : *124* : 125 : 0
16159 : 7 : 0 : 0 : *0* : *148* : 148 : 0
16314 : 3 : 0 : 0 : *0* : *130* : 130 : 0
16447 : 3 : 0 : 0 : *0* : *128* : 128 : 0
16578 : 8 : 0 : 0 : *0* : *145* : 145 : 888
17619 : 2 : 0 : 0 : *0* : *131* : 132 : 901
18658 : 22 : 0 : 0 : *0* : *323* : 324 : 709
19715 : 1 : 0 : 0 : *0* : *174* : 174 : 859
20798 : 0 : 0 : 0 : *0* : *168* : 168 : 0
20967 : 7 : 0 : 0 : *0* : *180* : 181 : 0
21155 : 3 : 0 : 0 : *0* : *173* : 173 : 0
21333 : 11 : 0 : 0 : *0* : *171* : 172 : 0
21521 : 8 : 0 : 0 : *0* : *182* : 183 : 0
21718 : 13 : 0 : 0 : *0* : *174* : 175 : 0
21912 : 1 : 0 : 0 : *0* : *182* : 182 : 0
22102 : 1 : 0 : 0 : *0* : *174* : 174 : 0
22283 : 1 : 0 : 0 : *0* : *174* : 175 : 0
22467 : 0 : 0 : 0 : *0* : *171* : 172 : 0
22645 : 4 : 0 : 0 : *0* : *171* : 172 : 861
23743 : 1 : 0 : 0 : *0* : *166* : 166 : 0
23915 : 11 : 0 : 0 : *0* : *178* : 178 : 1
24114 : 0 : 0 : 0 : *0* : *174* : 174 : 0
24294 : 1 : 0 : 0 : *0* : *172* : 173 : 0
24474 : 1 : 0 : 0 : *0* : *172* : 173 : 0
24654 : 6 : 0 : 0 : *0* : *173* : 173 : 861
25760 : 1 : 0 : 0 : *0* : *166* : 166 : 0
25935 : 0 : 0 : 0 : *0* : *182* : 182 : 0
26123 : 11 : 0 : 0 : *0* : *175* : 176 : 0
26316 : 2 : 0 : 0 : *0* : *172* : 172 : 0
26497 : 6 : 0 : 0 : *0* : *173* : 173 : 0
26683 : 4 : 0 : 0 : *0* : *183* : 183 : 850
27784 : 0 : 0 : 0 : *0* : *170* : 171 : 0
27964 : 0 : 0 : 0 : *0* : *183* : 183 : 0
28154 : 8 : 0 : 0 : *0* : *186* : 186 : 0
28358 : 4 : 0 : 0 : *0* : *174* : 174 : 0
28542 : 4 : 0 : 0 : *0* : *178* : 179 : 854
29610 : 9 : 0 : 0 : *0* : *166* : 166 : 867
30719 : 0 : 0 : 0 : *1* : *167* : 168 : 0
30894 : 0 : 0 : 0 : *0* : *169* : 170 : 0
31069 : 13 : 0 : 0 : *0* : *171* : 171 : 0
31261 : 0 : 0 : 0 : *0* : *177* : 178 : 0
31445 : 1 : 0 : 0 : *0* : *172* : 172 : 0
31625 : 4 : 0 : 0 : *0* : *176* : 176 : 857
32674 : 1 : 0 : 0 : *0* : *169* : 170 : 863
33734 : 8 : 0 : 0 : *0* : *171* : 172 : 0
33914 : 12 : 0 : 0 : *0* : *178* : 178 : 0
34110 : 1 : 0 : 0 : *0* : *171* : 172 : 0
34283 : 11 : 0 : 0 : *0* : *178* : 178 : 0
34472 : 6 : 0 : 0 : *0* : *178* : 178 : 0
34656 : 6 : 0 : 0 : *0* : *170* : 171 : 862
35695 : 1 : 0 : 0 : *0* : *177* : 179 : 855
36730 : 1 : 0 : 0 : *0* : *187* : 187 : 0
36919 : 6 : 0 : 0 : *0* : *172* : 172 : 0
37097 : 13 : 0 : 0 : *0* : *179* : 179 : 0
37289 : 5 : 0 : 0 : *0* : *185* : 186 : 0
37480 : 13 : 0 : 0 : *1* : *174* : 176 : 0
37669 : 9 : 0 : 0 : *0* : *179* : 180 : 853
38712 : 0 : 0 : 0 : *0* : *174* : 175 : 859
39746 : 1 : 0 : 0 : *0* : *176* : 177 : 0
39924 : 20 : 0 : 0 : *0* : *179* : 179 : 0
40123 : 17 : 0 : 0 : *0* : *167* : 168 : 0
40308 : 19 : 0 : 0 : *0* : *165* : 167 : 0
40494 : 15 : 0 : 0 : *0* : *179* : 179 : 0
40688 : 6 : 0 : 0 : *0* : *178* : 179 : 854
41727 : 1 : 0 : 0 : *1* : *174* : 175 : 0
41903 : 13 : 0 : 0 : *0* : *173* : 173 : 0
42089 : 13 : 0 : 0 : *0* : *176* : 177 : 0
42279 : 6 : 0 : 0 : *0* : *185* : 186 : 0
42471 : 15 : 0 : 0 : *0* : *179* : 180 : 0
42666 : 4 : 0 : 0 : *0* : *172* : 173 : 860
43703 : 1 : 0 : 0 : *0* : *174* : 175 : 858
44738 : 1 : 0 : 0 : *0* : *184* : 184 : 0
44923 : 8 : 0 : 0 : *0* : *179* : 180 : 0
45111 : 7 : 0 : 0 : *0* : *178* : 178 : 0
45296 : 6 : 0 : 0 : *0* : *174* : 174 : 0
45476 : 9 : 0 : 0 : *0* : *196* : 197 : 0
45682 : 4 : 0 : 0 : *0* : *190* : 190 : 843
46719 : 1 : 0 : 0 : *0* : *170* : 171 : 0
46891 : 21 : 0 : 0 : *0* : *168* : 168 : 0
47080 : 13 : 0 : 0 : *0* : *178* : 178 : 0
47271 : 6 : 0 : 0 : *0* : *173* : 173 : 0
47450 : 12 : 0 : 0 : *0* : *176* : 176 : 0
47639 : 7 : 0 : 0 : *0* : *172* : 172 : 861
48679 : 1 : 0 : 0 : *0* : *175* : 175 : 859
49714 : 1 : 0 : 0 : *0* : *175* : 175 : 858
50751 : 0 : 0 : 0 : *0* : *183* : 184 : 0
50935 : 13 : 0 : 0 : *0* : *173* : 173 : 0
51121 : 12 : 0 : 0 : *0* : *176* : 177 : 0
51310 : 7 : 0 : 0 : *0* : *172* : 173 : 0
51490 : 9 : 0 : 0 : *0* : *168* : 169 : 0
51668 : 15 : 0 : 0 : *0* : *170* : 171 : 863
52717 : 1 : 0 : 0 : *0* : *170* : 170 : 863
53754 : 1 : 0 : 0 : *0* : *182* : 182 : 0
53937 : 9 : 0 : 0 : *0* : *185* : 185 : 0
54131 : 15 : 0 : 0 : *0* : *181* : 181 : 0
54327 : 3 : 0 : 0 : *0* : *175* : 176 : 0
54506 : 11 : 0 : 0 : *1* : *168* : 169 : 0
54686 : 15 : 0 : 0 : *0* : *179* : 179 : 854
55734 : 1 : 0 : 0 : *0* : *170* : 170 : 0
55906 : 16 : 0 : 0 : 0 : 34
55957 : 0 : 0 : 0 : 10 : 23
55990 : 1 : 0 : 0 : 28 : 6
56025 : 0 : 0 : 0 : 8 : 26
56059 : 1 : 0 : 0 : 9 : 24
56093 : 1 : 0 : 0 : 7 : 26
56127 : 1 : 0 : 0 : 22 : 11
56161 : 2 : 0 : 0 : 21 : 12
56196 : 8 : 0 : 0 : 8 : 25
56237 : 1 : 0 : 0 : 6 : 27
56271 : 1 : 0 : 0 : 12 : 21
56306 : 3 : 0 : 0 : 11 : 23
56343 : 1 : 0 : 0 : 6 : 27
56377 : 1 : 0 : 0 : 8 : 25
56411 : 1 : 0 : 0 : 15 : 19
56446 : 7 : 0 : 0 : 11 : 22
56486 : 1 : 0 : 0 : 6 : 27
56520 : 1 : 0 : 0 : 7 : 26
56555 : 0 : 0 : 0 : 13 : 21
56589 : 0 : 0 : 0 : 7 : 27
56623 : 0 : 0 : 0 : 8 : 26
56657 : 8 : 0 : 0 : 18 : 16
56699 : 0 : 0 : 0 : 7 : 27
56733 : 0 : 0 : 0 : 27 : 7
56767 : 9 : 0 : 0 : 26 : 8
56810 : 3 : 0 : 0 : 8 : 26
56847 : 1 : 0 : 0 : 19 : 19
56886 : 7 : 0 : 0 : 7 : 27
56927 : 1 : 0 : 0 : 7 : 26
56961 : 1 : 0 : 0 : 8 : 25
56995 : 1 : 0 : 0 : 17 : 16
57029 : 1 : 0 : 0 : 8 : 26
57064 : 1 : 0 : 0 : 19 : 18
57102 : 6 : 0 : 1 : 7 : 26
57142 : 1 : 0 : 0 : 8 : 25
57176 : 1 : 0 : 0 : 15 : 19
57211 : 0 : 0 : 0 : 17 : 17
57246 : 1 : 0 : 0 : 5 : 28
57280 : 1 : 0 : 0 : 8 : 25
57314 : 2 : 0 : 0 : 14 : 19
57349 : 5 : 0 : 0 : 7 : 26
57389 : 0 : 0 : 0 : 6 : 27
57423 : 0 : 0 : 0 : 24 : 10
57457 : 7 : 0 : 0 : 19 : 14
57498 : 1 : 0 : 0 : 10 : 23
57532 : 1 : 0 : 0 : 6 : 27
57577 : 0 : 0 : 0 : 9 : 25
57611 : 0 : 0 : 0 : 9 : 25
57645 : 1 : 0 : 0 : 12 : 21
57679 : 1 : 0 : 0 : 11 : 22
57714 : 1 : 0 : 0 : 12 : 1022
58761 : 1 : 0 : 0 : 12 : 21
58795 : 1 : 0 : 0 : 16 : 17
58829 : 3 : 0 : 0 : 7 : 27
58866 : 0 : 0 : 0 : 21 : 13
58900 : 4 : 0 : 0 : 30 : 4
58938 : 0 : 0 : 0 : 11 : 24
58973 : 6 : 0 : 0 : 18 : 16
59013 : 0 : 1 : 0 : 13 : 20
59047 : 1 : 0 : 0 : 20 : 13
59081 : 1 : 0 : 0 : 10 : 23
59115 : 1 : 0 : 0 : 12 : 22
59150 : 0 : 0 : 0 : 7 : 27
59184 : 12 : 0 : 0 : 8 : 25
59230 : 0 : 0 : 0 : 24 : 10
59264 : 0 : 0 : 0 : 10 : 24
59298 : 1 : 0 : 0 : 14 : 19
59334 : 2 : 0 : 0 : 11 : 23
59370 : 1 : 0 : 0 : 5 : 28
59408 : 7 : 0 : 0 : 5 : 28
59448 : 2 : 0 : 0 : 22 : 11
59483 : 1 : 0 : 0 : 10 : 23
59518 : 0 : 0 : 0 : 12 : 22
59552 : 2 : 0 : 0 : 8 : 25
59587 : 6 : 0 : 0 : 9 : 24
59629 : 0 : 0 : 0 : 22 : 12
59663 : 0 : 0 : 0 : 26 : 8
59697 : 1 : 0 : 0 : 9 : 24
59732 : 1 : 0 : 0 : 20 : 13
59766 : 1 : 0 : 0 : 6 : 27
59801 : 1 : 0 : 0 : 17 : 16
59835 : 1 : 0 : 0 : 14 : 20
59880 : 0 : 0 : 0 : 15 : 19
59914 : 0 : 0 : 0 : 7 : 27
59948 : 1 : 0 : 0 : 22 : 11
59983 : 1 : 0 : 0 : 5 : 28
60017 : 2 : 0 : 0 : 13 : 21
60058 : 1 : 0 : 0 : 21 : 13
60093 : 1 : 0 : 0 : 7 : 27
60128 : 1 : 0 : 0 : 27 : 6
60164 : 1 : 0 : 0 : 12 : 22
60199 : 5 : 0 : 0 : 19 : 14
60238 : 1 : 0 : 0 : 11 : 23
60273 : 1 : 0 : 0 : 8 : 26
60323 : 0 : 0 : 0 : 15 : 18
60357 : 0 : 0 : 0 : 9 : 25
60393 : 1 : 0 : 0 : 13 : 20
60427 : 2 : 0 : 0 : 9 : 24
60467 : 2 : 0 : 0 : 16 : 17
60514 : 1 : 0 : 0 : 9 : 25
60549 : 0 : 0 : 0 : 7 : 27
60584 : 0 : 0 : 0 : 10 : 24
60618 : 0 : 0 : 0 : 8 : 26
60654 : 1 : 0 : 0 : 13 : 20
60689 : 0 : 0 : 0 : 16 : 18
60723 : 4 : 0 : 0 : 10 : 24
60762 : 0 : 0 : 0 : 27 : 7
60796 : 1 : 0 : 0 : 10 : 24
60849 : 1 : 0 : 0 : 20 : 14
60885 : 1 : 0 : 0 : 8 : 25
60919 : 1 : 0 : 0 : 17 : 17
60956 : 1 : 0 : 0 : 17 : 17
60991 : 1 : 0 : 0 : 7 : 27
61027 : 1 : 0 : 0 : 6 : 27
61061 : 1 : 0 : 0 : 10 : 23
61096 : 1 : 0 : 0 : 12 : 21
61130 : 1 : 0 : 0 : 12 : 22
61165 : 0 : 0 : 0 : 6 : 28
61203 : 1 : 0 : 0 : 21 : 13
61243 : 1 : 0 : 0 : 7 : 26
61278 : 0 : 0 : 0 : 37 : 0
61315 : 1 : 0 : 0 : 7 : 27
61350 : 1 : 0 : 0 : 9 : 24
61384 : 1 : 0 : 0 : 14 : 20
61419 : 6 : 0 : 0 : 6 : 27
61458 : 1 : 0 : 0 : 18 : 15
61492 : 4 : 0 : 0 : 8 : 25
61529 : 1 : 1 : 0 : 18 : 15
61564 : 1 : 0 : 0 : 9 : 24
61598 : 1 : 0 : 0 : 11 : 22
61632 : 9 : 0 : 0 : 16 : 18
61675 : 1 : 0 : 0 : 6 : 27
61709 : 1 : 0 : 0 : 19 : 1014
62746 : 1 : 0 : 0 : 10 : 23
62780 : 1 : 0 : 0 : 16 : 18
62815 : 4 : 0 : 0 : 7 : 26
62852 : 2 : 0 : 0 : 7 : 27
62888 : 0 : 0 : 0 : 10 : 24
62922 : 1 : 0 : 0 : 7 : 26
62956 : 1 : 0 : 0 : 8 : 26
62991 : 1 : 0 : 0 : 6 : 27
63025 : 1 : 0 : 0 : 14 : 20
63060 : 5 : 0 : 0 : 16 : 17
63098 : 1 : 0 : 0 : 6 : 28
63133 : 0 : 0 : 0 : 10 : 24
63167 : 1 : 0 : 0 : 6 : 27
63201 : 2 : 0 : 0 : 14 : 19
63237 : 0 : 0 : 0 : 11 : 23
63271 : 1 : 0 : 0 : 9 : 25
63306 : 9 : 0 : 0 : 24 : 9
63348 : 1 : 0 : 0 : 7 : 27
63383 : 0 : 0 : 0 : 6 : 28
63417 : 1 : 0 : 0 : 24 : 10
63452 : 1 : 0 : 0 : 6 : 27
63487 : 0 : 0 : 0 : 13 : 21
63529 : 0 : 0 : 0 : 6 : 28
63563 : 5 : 0 : 0 : 7 : 26
63601 : 1 : 0 : 0 : 13 : 20
63638 : 1 : 0 : 0 : 19 : 14
63673 : 1 : 0 : 0 : 11 : 22
63707 : 1 : 0 : 0 : 8 : 26
63742 : 5 : 0 : 0 : 24 : 10
63781 : 3 : 0 : 0 : 8 : 25
63817 : 1 : 0 : 0 : 23 : 10
63852 : 0 : 0 : 0 : 11 : 23
63886 : 1 : 0 : 0 : 21 : 12
63920 : 1 : 0 : 0 : 8 : 25
63954 : 2 : 0 : 0 : 10 : 27
63993 : 5 : 0 : 0 : 27 : 7
64032 : 2 : 0 : 0 : 6 : 27
64067 : 1 : 0 : 0 : 6 : 27
64102 : 0 : 0 : 0 : 23 : 11
64137 : 2 : 0 : 0 : 18 : 16
AL lib: ALc.c:1879: exit(): closing 1 Device
AL lib: ALc.c:1808: alcCloseDevice(): destroying 1 Context(s)
AL lib: ALc.c:1420: alcDestroyContext(): deleting 30 Source(s)
AL lib: ALc.c:1818: alcCloseDevice(): deleting 25 Buffer(s)


prushik 04-23-2012 11:48 PM

Quote:

Originally Posted by manu-tm (Post 4660720)
Here is what I got:

Code:

~/Desktop/prushik-untitledone-c91d028$ ./UntitledOne
45 : 2 : 0 : 0 : 0 : 34
357 : 0 : 0 : 0 : 36 : 0
394 : 7 : 0 : 0 : 6 : 27
446 : 1 : 0 : 0 : 7 : 27
483 : 1 : 0 : 0 : 10 : 23
517 : 1 : 0 : 0 : 8 : 25
551 : 2 : 0 : 0 : 20 : 14
587 : 11 : 0 : 0 : 8 : 26
632 : 1 : 0 : 0 : 6 : 27
666 : 1 : 0 : 0 : 7 : 26
700 : 1 : 0 : 0 : 8 : 26
735 : 1 : 0 : 0 : 14 : 20
770 : 1 : 0 : 0 : 7 : 26
804 : 6 : 0 : 0 : 15 : 19
844 : 9 : 0 : 0 : 6 : 27
886 : 1 : 0 : 0 : 27 : 7
921 : 0 : 0 : 0 : 8 : 26
955 : 1 : 0 : 0 : 7 : 26
989 : 1 : 0 : 0 : 8 : 25
1024 : 0 : 0 : 0 : 13 : 21
1058 : 7 : 0 : 0 : 6 : 27
1098 : 4 : 0 : 0 : 6 : 28
1136 : 0 : 0 : 1 : 6 : 27
1170 : 1 : 0 : 0 : 29 : 4
1204 : 1 : 0 : 0 : 9 : 24
1238 : 1 : 0 : 0 : 15 : 18
1273 : 10 : 0 : 0 : 11 : 23
1317 : 1 : 0 : 0 : 10 : 23
1351 : 1 : 0 : 0 : 5 : 28
1386 : 0 : 0 : 0 : 7 : 27
1420 : 0 : 0 : 0 : 7 : 27
1454 : 0 : 0 : 0 : 6 : 28
1488 : 13 : 0 : 0 : 16 : 18
1535 : 0 : 1 : 0 : 7 : 26
1569 : 1 : 0 : 0 : 12 : 22
1604 : 0 : 0 : 0 : 7 : 27
1638 : 1 : 0 : 0 : 7 : 26
1672 : 1 : 0 : 0 : 13 : 21
1707 : 7 : 0 : 0 : 14 : 1019
2759 : 0 : 0 : 0 : 5 : 29
2793 : 3 : 0 : 0 : 11 : 23
2830 : 10 : 0 : 0 : 16 : 17
2874 : 0 : 0 : 0 : 11 : 23
2908 : 0 : 0 : 0 : 23 : 11
2942 : 8 : 0 : 0 : 5 : 28
2983 : 1 : 0 : 0 : 14 : 20
3018 : 6 : 0 : 0 : 7 : 27
3058 : 0 : 0 : 0 : 9 : 25
3092 : 2 : 0 : 0 : 13 : 20
3127 : 1 : 0 : 0 : 6 : 27
3161 : 1 : 0 : 0 : 7 : 27
3196 : 1 : 0 : 0 : 14 : 20
3231 : 9 : 0 : 0 : 8 : 26
3274 : 1 : 0 : 0 : 14 : 19
3308 : 1 : 1 : 0 : 18 : 15
3343 : 1 : 0 : 0 : 8 : 25
3377 : 1 : 0 : 0 : 9 : 24
3412 : 0 : 0 : 0 : 14 : 20
3446 : 9 : 0 : 0 : 7 : 27
3489 : 1 : 0 : 0 : 10 : 23
3523 : 1 : 0 : 0 : 10 : 23
3558 : 0 : 0 : 0 : 5 : 29
3592 : 0 : 0 : 0 : 9 : 25
3626 : 1 : 0 : 0 : 6 : 27
3660 : 1 : 0 : 0 : 10 : 23
3695 : 0 : 0 : 0 : 15 : 19
3729 : 1 : 0 : 0 : 24 : 9
3763 : 4 : 0 : 0 : 8 : 26
3801 : 1 : 0 : 0 : 12 : 21
3835 : 1 : 0 : 0 : 7 : 28
3871 : 1 : 0 : 0 : 27 : 6
3905 : 1 : 0 : 0 : 18 : 15
3940 : 0 : 0 : 0 : 8 : 26
3974 : 0 : 0 : 0 : 9 : 25
4008 : 1 : 0 : 0 : 38 : 0
4047 : 5 : 0 : 0 : 6 : 28
4086 : 0 : 0 : 0 : 6 : 28
4120 : 1 : 0 : 0 : 12 : 21
4154 : 1 : 0 : 0 : 5 : 28
4188 : 5 : 0 : 0 : 7 : 27
4227 : 11 : 0 : 0 : 5 : 28
4271 : 1 : 0 : 0 : 5 : 28
4305 : 1 : 0 : 0 : 8 : 25
4339 : 1 : 0 : 0 : 16 : 18
4374 : 1 : 0 : 0 : 7 : 26
4408 : 1 : 0 : 0 : 8 : 25
4443 : 0 : 0 : 0 : 14 : 20
4477 : 9 : 0 : 0 : 10 : 23
4519 : 3 : 0 : 0 : 7 : 27
4556 : 0 : 1 : 0 : 8 : 25
4590 : 1 : 0 : 0 : 5 : 28
4624 : 1 : 0 : 0 : 21 : 13
4659 : 0 : 0 : 0 : 5 : 29
4693 : 4 : 0 : 0 : 7 : 27
4731 : 5 : 0 : 0 : 6 : 28
4770 : 1 : 0 : 0 : 6 : 28
4805 : 1 : 0 : 0 : 9 : 24
4839 : 1 : 0 : 0 : 10 : 23
4874 : 0 : 0 : 0 : 7 : 27
4908 : 0 : 0 : 0 : 6 : 28
4942 : 1 : 0 : 0 : 5 : 28
4976 : 6 : 0 : 0 : 13 : 21
5016 : 3 : 0 : 0 : 7 : 26
5053 : 0 : 0 : 0 : 8 : 26
5087 : 0 : 0 : 0 : 31 : 3
5121 : 4 : 0 : 0 : 14 : 19
5158 : 1 : 0 : 0 : 5 : 28
5192 : 1 : 0 : 0 : 7 : 27
5227 : 1 : 0 : 0 : 16 : 20
5270 : 0 : 0 : 0 : 5 : 29
5304 : 1 : 0 : 0 : 6 : 27
5338 : 1 : 0 : 0 : 12 : 21
5372 : 1 : 0 : 0 : 6 : 27
5409 : 1 : 0 : 0 : 6 : 27
5443 : 7 : 0 : 0 : 14 : 20
5484 : 1 : 0 : 0 : 8 : 25
5519 : 0 : 0 : 0 : 6 : 28
5553 : 1 : 0 : 0 : 17 : 16
5588 : 0 : 0 : 0 : 8 : 26
5625 : 1 : 0 : 0 : 6 : 27
5659 : 8 : 0 : 0 : 17 : 17
5701 : 1 : 0 : 0 : 6 : 27
5736 : 0 : 0 : 0 : 5 : 29
5770 : 3 : 0 : 1 : 13 : 20
5807 : 1 : 0 : 0 : 8 : 25
5841 : 1 : 0 : 0 : 6 : 27
5876 : 0 : 0 : 0 : 23 : 11
5910 : 12 : 0 : 0 : 5 : 28
5956 : 0 : 0 : 0 : 21 : 13
5991 : 0 : 0 : 0 : 23 : 10
6025 : 5 : 0 : 0 : 5 : 28
6063 : 1 : 0 : 0 : 5 : 28
6098 : 7 : 0 : 0 : 16 : 18
6139 : 1 : 0 : 0 : 7 : 27
6174 : 1 : 0 : 0 : 10 : 23
6210 : 0 : 0 : 0 : 9 : 25
6244 : 1 : 0 : 0 : 6 : 27
6279 : 5 : 0 : 0 : 19 : 15
6318 : 1 : 0 : 0 : 13 : 20
6353 : 1 : 0 : 0 : 5 : 28
6388 : 0 : 0 : 0 : 17 : 17
6422 : 1 : 0 : 0 : 6 : 27
6456 : 1 : 0 : 0 : 8 : 25
6492 : 1 : 0 : 0 : 17 : 17
6527 : 8 : 0 : 0 : 6 : 27
6568 : 1 : 0 : 0 : 5 : 28
6603 : 0 : 0 : 0 : 8 : 26
6637 : 1 : 0 : 0 : 13 : 20
6671 : 2 : 0 : 0 : 16 : 17
6707 : 1 : 0 : 0 : 5 : 28
6741 : 5 : 0 : 0 : 13 : 20
6782 : 1 : 0 : 0 : 7 : 26
6816 : 1 : 0 : 0 : 25 : 9
6851 : 0 : 1 : 0 : 10 : 23
6886 : 0 : 0 : 0 : 8 : 26
6920 : 0 : 0 : 0 : 9 : 25
6959 : 0 : 0 : 0 : 15 : 19
6993 : 1 : 0 : 0 : 6 : 28
7028 : 0 : 0 : 0 : 10 : 24
7064 : 1 : 0 : 0 : 9 : 24
7098 : 1 : 0 : 0 : 9 : 24
7134 : 0 : 0 : 0 : 9 : 26
7169 : 14 : 0 : 0 : 7 : 26
7217 : 1 : 0 : 0 : 10 : 24
7252 : 0 : 0 : 0 : 7 : 27
7286 : 0 : 0 : 0 : 9 : 25
7322 : 0 : 0 : 1 : 18 : 15
7356 : 12 : 0 : 0 : 6 : 27
7403 : 1 : 0 : 0 : 10 : 23
7438 : 0 : 0 : 1 : 6 : 27
7472 : 1 : 0 : 0 : 5 : 28
7506 : 1 : 0 : 0 : 7 : 26
7540 : 9 : 0 : 0 : 7 : 27
7583 : 1 : 0 : 0 : 5 : 28
7617 : 1 : 0 : 0 : 12 : 21
7651 : 2 : 0 : 0 : 9 : 24
7686 : 2 : 0 : 0 : 10 : 23
7722 : 1 : 0 : 0 : 6 : 27
7756 : 1 : 0 : 0 : 14 : 20
7791 : 4 : 0 : 0 : 14 : 20
7829 : 1 : 0 : 0 : 8 : 25
7863 : 1 : 0 : 0 : 22 : 11
7898 : 0 : 0 : 0 : 9 : 25
7932 : 0 : 0 : 0 : 9 : 25
7966 : 1 : 0 : 0 : 11 : 22
8000 : 1 : 0 : 0 : 9 : 24
8035 : 1 : 0 : 0 : 15 : 18
8069 : 6 : 0 : 0 : 24 : 10
8109 : 3 : 0 : 0 : 6 : 27
8145 : 1 : 0 : 0 : 15 : 18
8179 : 1 : 0 : 0 : 7 : 26
8214 : 1 : 0 : 0 : 12 : 21
8248 : 1 : 0 : 0 : 6 : 28
8283 : 1 : 0 : 0 : 17 : 17
8318 : 3 : 0 : 0 : 8 : 25
8354 : 1 : 0 : 0 : 5 : 28
8388 : 1 : 0 : 0 : 7 : 27
8423 : 0 : 0 : 0 : 13 : 21
8457 : 1 : 0 : 0 : 7 : 26
8491 : 1 : 0 : 0 : 10 : 24
8526 : 0 : 0 : 0 : 7 : 27
8560 : 2 : 0 : 0 : 14 : 19
8612 : 1 : 0 : 0 : 27 : 6
8646 : 1 : 0 : 0 : 0 : 33
8682 : 0 : 0 : 0 : 0 : 34
8716 : 0 : 0 : 0 : *0* : *121* : 121 : 912
9750 : 0 : 0 : 0 : *0* : *128* : 129 : 0
9879 : 7 : 0 : 0 : *0* : *124* : 125 : 0
10011 : 7 : 0 : 0 : *0* : *123* : 124 : 0
10142 : 11 : 0 : 0 : *0* : *127* : 129 : 0
10282 : 4 : 0 : 0 : *0* : *121* : 121 : 0
10407 : 14 : 0 : 0 : *0* : *126* : 126 : 0
10547 : 7 : 0 : 0 : *0* : *121* : 121 : 0
10675 : 14 : 0 : 0 : *0* : *124* : 124 : 909
11727 : 0 : 0 : 0 : *1* : *124* : 125 : 0
11854 : 7 : 0 : 0 : *0* : *128* : 129 : 0
11991 : 3 : 0 : 0 : *0* : *121* : 122 : 0
12116 : 13 : 0 : 0 : *0* : *119* : 119 : 0
12248 : 14 : 0 : 0 : *0* : *127* : 127 : 0
12390 : 6 : 0 : 0 : *0* : *130* : 130 : 0
12526 : 4 : 0 : 0 : *0* : *123* : 123 : 0
12653 : 11 : 0 : 0 : *0* : *127* : 127 : 906
13727 : 9 : 0 : 0 : *0* : *118* : 118 : 0
13854 : 18 : 0 : 0 : *0* : *127* : 128 : 0
14000 : 4 : 0 : 0 : *0* : *122* : 122 : 0
14126 : 13 : 0 : 0 : *0* : *122* : 123 : 0
14262 : 15 : 0 : 0 : *0* : *128* : 128 : 0
14405 : 18 : 0 : 0 : *0* : *124* : 126 : 0
14549 : 8 : 0 : 0 : *0* : *127* : 128 : 0
14685 : 9 : 0 : 0 : *0* : *128* : 129 : 905
15763 : 0 : 0 : 0 : *0* : *117* : 117 : 0
15883 : 15 : 0 : 0 : *0* : *127* : 128 : 0
16026 : 8 : 0 : 0 : *0* : *124* : 125 : 0
16159 : 7 : 0 : 0 : *0* : *148* : 148 : 0
16314 : 3 : 0 : 0 : *0* : *130* : 130 : 0
16447 : 3 : 0 : 0 : *0* : *128* : 128 : 0
16578 : 8 : 0 : 0 : *0* : *145* : 145 : 888
17619 : 2 : 0 : 0 : *0* : *131* : 132 : 901
18658 : 22 : 0 : 0 : *0* : *323* : 324 : 709
19715 : 1 : 0 : 0 : *0* : *174* : 174 : 859
20798 : 0 : 0 : 0 : *0* : *168* : 168 : 0
20967 : 7 : 0 : 0 : *0* : *180* : 181 : 0
21155 : 3 : 0 : 0 : *0* : *173* : 173 : 0
21333 : 11 : 0 : 0 : *0* : *171* : 172 : 0
21521 : 8 : 0 : 0 : *0* : *182* : 183 : 0
21718 : 13 : 0 : 0 : *0* : *174* : 175 : 0
21912 : 1 : 0 : 0 : *0* : *182* : 182 : 0
22102 : 1 : 0 : 0 : *0* : *174* : 174 : 0
22283 : 1 : 0 : 0 : *0* : *174* : 175 : 0
22467 : 0 : 0 : 0 : *0* : *171* : 172 : 0
22645 : 4 : 0 : 0 : *0* : *171* : 172 : 861
23743 : 1 : 0 : 0 : *0* : *166* : 166 : 0
23915 : 11 : 0 : 0 : *0* : *178* : 178 : 1
24114 : 0 : 0 : 0 : *0* : *174* : 174 : 0
24294 : 1 : 0 : 0 : *0* : *172* : 173 : 0
24474 : 1 : 0 : 0 : *0* : *172* : 173 : 0
24654 : 6 : 0 : 0 : *0* : *173* : 173 : 861
25760 : 1 : 0 : 0 : *0* : *166* : 166 : 0
25935 : 0 : 0 : 0 : *0* : *182* : 182 : 0
26123 : 11 : 0 : 0 : *0* : *175* : 176 : 0
26316 : 2 : 0 : 0 : *0* : *172* : 172 : 0
26497 : 6 : 0 : 0 : *0* : *173* : 173 : 0
26683 : 4 : 0 : 0 : *0* : *183* : 183 : 850
27784 : 0 : 0 : 0 : *0* : *170* : 171 : 0
27964 : 0 : 0 : 0 : *0* : *183* : 183 : 0
28154 : 8 : 0 : 0 : *0* : *186* : 186 : 0
28358 : 4 : 0 : 0 : *0* : *174* : 174 : 0
28542 : 4 : 0 : 0 : *0* : *178* : 179 : 854
29610 : 9 : 0 : 0 : *0* : *166* : 166 : 867
30719 : 0 : 0 : 0 : *1* : *167* : 168 : 0
30894 : 0 : 0 : 0 : *0* : *169* : 170 : 0
31069 : 13 : 0 : 0 : *0* : *171* : 171 : 0
31261 : 0 : 0 : 0 : *0* : *177* : 178 : 0
31445 : 1 : 0 : 0 : *0* : *172* : 172 : 0
31625 : 4 : 0 : 0 : *0* : *176* : 176 : 857
32674 : 1 : 0 : 0 : *0* : *169* : 170 : 863
33734 : 8 : 0 : 0 : *0* : *171* : 172 : 0
33914 : 12 : 0 : 0 : *0* : *178* : 178 : 0
34110 : 1 : 0 : 0 : *0* : *171* : 172 : 0
34283 : 11 : 0 : 0 : *0* : *178* : 178 : 0
34472 : 6 : 0 : 0 : *0* : *178* : 178 : 0
34656 : 6 : 0 : 0 : *0* : *170* : 171 : 862
35695 : 1 : 0 : 0 : *0* : *177* : 179 : 855
36730 : 1 : 0 : 0 : *0* : *187* : 187 : 0
36919 : 6 : 0 : 0 : *0* : *172* : 172 : 0
37097 : 13 : 0 : 0 : *0* : *179* : 179 : 0
37289 : 5 : 0 : 0 : *0* : *185* : 186 : 0
37480 : 13 : 0 : 0 : *1* : *174* : 176 : 0
37669 : 9 : 0 : 0 : *0* : *179* : 180 : 853
38712 : 0 : 0 : 0 : *0* : *174* : 175 : 859
39746 : 1 : 0 : 0 : *0* : *176* : 177 : 0
39924 : 20 : 0 : 0 : *0* : *179* : 179 : 0
40123 : 17 : 0 : 0 : *0* : *167* : 168 : 0
40308 : 19 : 0 : 0 : *0* : *165* : 167 : 0
40494 : 15 : 0 : 0 : *0* : *179* : 179 : 0
40688 : 6 : 0 : 0 : *0* : *178* : 179 : 854
41727 : 1 : 0 : 0 : *1* : *174* : 175 : 0
41903 : 13 : 0 : 0 : *0* : *173* : 173 : 0
42089 : 13 : 0 : 0 : *0* : *176* : 177 : 0
42279 : 6 : 0 : 0 : *0* : *185* : 186 : 0
42471 : 15 : 0 : 0 : *0* : *179* : 180 : 0
42666 : 4 : 0 : 0 : *0* : *172* : 173 : 860
43703 : 1 : 0 : 0 : *0* : *174* : 175 : 858
44738 : 1 : 0 : 0 : *0* : *184* : 184 : 0
44923 : 8 : 0 : 0 : *0* : *179* : 180 : 0
45111 : 7 : 0 : 0 : *0* : *178* : 178 : 0
45296 : 6 : 0 : 0 : *0* : *174* : 174 : 0
45476 : 9 : 0 : 0 : *0* : *196* : 197 : 0
45682 : 4 : 0 : 0 : *0* : *190* : 190 : 843
46719 : 1 : 0 : 0 : *0* : *170* : 171 : 0
46891 : 21 : 0 : 0 : *0* : *168* : 168 : 0
47080 : 13 : 0 : 0 : *0* : *178* : 178 : 0
47271 : 6 : 0 : 0 : *0* : *173* : 173 : 0
47450 : 12 : 0 : 0 : *0* : *176* : 176 : 0
47639 : 7 : 0 : 0 : *0* : *172* : 172 : 861
48679 : 1 : 0 : 0 : *0* : *175* : 175 : 859
49714 : 1 : 0 : 0 : *0* : *175* : 175 : 858
50751 : 0 : 0 : 0 : *0* : *183* : 184 : 0
50935 : 13 : 0 : 0 : *0* : *173* : 173 : 0
51121 : 12 : 0 : 0 : *0* : *176* : 177 : 0
51310 : 7 : 0 : 0 : *0* : *172* : 173 : 0
51490 : 9 : 0 : 0 : *0* : *168* : 169 : 0
51668 : 15 : 0 : 0 : *0* : *170* : 171 : 863
52717 : 1 : 0 : 0 : *0* : *170* : 170 : 863
53754 : 1 : 0 : 0 : *0* : *182* : 182 : 0
53937 : 9 : 0 : 0 : *0* : *185* : 185 : 0
54131 : 15 : 0 : 0 : *0* : *181* : 181 : 0
54327 : 3 : 0 : 0 : *0* : *175* : 176 : 0
54506 : 11 : 0 : 0 : *1* : *168* : 169 : 0
54686 : 15 : 0 : 0 : *0* : *179* : 179 : 854
55734 : 1 : 0 : 0 : *0* : *170* : 170 : 0
55906 : 16 : 0 : 0 : 0 : 34
55957 : 0 : 0 : 0 : 10 : 23
55990 : 1 : 0 : 0 : 28 : 6
56025 : 0 : 0 : 0 : 8 : 26
56059 : 1 : 0 : 0 : 9 : 24
56093 : 1 : 0 : 0 : 7 : 26
56127 : 1 : 0 : 0 : 22 : 11
56161 : 2 : 0 : 0 : 21 : 12
56196 : 8 : 0 : 0 : 8 : 25
56237 : 1 : 0 : 0 : 6 : 27
56271 : 1 : 0 : 0 : 12 : 21
56306 : 3 : 0 : 0 : 11 : 23
56343 : 1 : 0 : 0 : 6 : 27
56377 : 1 : 0 : 0 : 8 : 25
56411 : 1 : 0 : 0 : 15 : 19
56446 : 7 : 0 : 0 : 11 : 22
56486 : 1 : 0 : 0 : 6 : 27
56520 : 1 : 0 : 0 : 7 : 26
56555 : 0 : 0 : 0 : 13 : 21
56589 : 0 : 0 : 0 : 7 : 27
56623 : 0 : 0 : 0 : 8 : 26
56657 : 8 : 0 : 0 : 18 : 16
56699 : 0 : 0 : 0 : 7 : 27
56733 : 0 : 0 : 0 : 27 : 7
56767 : 9 : 0 : 0 : 26 : 8
56810 : 3 : 0 : 0 : 8 : 26
56847 : 1 : 0 : 0 : 19 : 19
56886 : 7 : 0 : 0 : 7 : 27
56927 : 1 : 0 : 0 : 7 : 26
56961 : 1 : 0 : 0 : 8 : 25
56995 : 1 : 0 : 0 : 17 : 16
57029 : 1 : 0 : 0 : 8 : 26
57064 : 1 : 0 : 0 : 19 : 18
57102 : 6 : 0 : 1 : 7 : 26
57142 : 1 : 0 : 0 : 8 : 25
57176 : 1 : 0 : 0 : 15 : 19
57211 : 0 : 0 : 0 : 17 : 17
57246 : 1 : 0 : 0 : 5 : 28
57280 : 1 : 0 : 0 : 8 : 25
57314 : 2 : 0 : 0 : 14 : 19
57349 : 5 : 0 : 0 : 7 : 26
57389 : 0 : 0 : 0 : 6 : 27
57423 : 0 : 0 : 0 : 24 : 10
57457 : 7 : 0 : 0 : 19 : 14
57498 : 1 : 0 : 0 : 10 : 23
57532 : 1 : 0 : 0 : 6 : 27
57577 : 0 : 0 : 0 : 9 : 25
57611 : 0 : 0 : 0 : 9 : 25
57645 : 1 : 0 : 0 : 12 : 21
57679 : 1 : 0 : 0 : 11 : 22
57714 : 1 : 0 : 0 : 12 : 1022
58761 : 1 : 0 : 0 : 12 : 21
58795 : 1 : 0 : 0 : 16 : 17
58829 : 3 : 0 : 0 : 7 : 27
58866 : 0 : 0 : 0 : 21 : 13
58900 : 4 : 0 : 0 : 30 : 4
58938 : 0 : 0 : 0 : 11 : 24
58973 : 6 : 0 : 0 : 18 : 16
59013 : 0 : 1 : 0 : 13 : 20
59047 : 1 : 0 : 0 : 20 : 13
59081 : 1 : 0 : 0 : 10 : 23
59115 : 1 : 0 : 0 : 12 : 22
59150 : 0 : 0 : 0 : 7 : 27
59184 : 12 : 0 : 0 : 8 : 25
59230 : 0 : 0 : 0 : 24 : 10
59264 : 0 : 0 : 0 : 10 : 24
59298 : 1 : 0 : 0 : 14 : 19
59334 : 2 : 0 : 0 : 11 : 23
59370 : 1 : 0 : 0 : 5 : 28
59408 : 7 : 0 : 0 : 5 : 28
59448 : 2 : 0 : 0 : 22 : 11
59483 : 1 : 0 : 0 : 10 : 23
59518 : 0 : 0 : 0 : 12 : 22
59552 : 2 : 0 : 0 : 8 : 25
59587 : 6 : 0 : 0 : 9 : 24
59629 : 0 : 0 : 0 : 22 : 12
59663 : 0 : 0 : 0 : 26 : 8
59697 : 1 : 0 : 0 : 9 : 24
59732 : 1 : 0 : 0 : 20 : 13
59766 : 1 : 0 : 0 : 6 : 27
59801 : 1 : 0 : 0 : 17 : 16
59835 : 1 : 0 : 0 : 14 : 20
59880 : 0 : 0 : 0 : 15 : 19
59914 : 0 : 0 : 0 : 7 : 27
59948 : 1 : 0 : 0 : 22 : 11
59983 : 1 : 0 : 0 : 5 : 28
60017 : 2 : 0 : 0 : 13 : 21
60058 : 1 : 0 : 0 : 21 : 13
60093 : 1 : 0 : 0 : 7 : 27
60128 : 1 : 0 : 0 : 27 : 6
60164 : 1 : 0 : 0 : 12 : 22
60199 : 5 : 0 : 0 : 19 : 14
60238 : 1 : 0 : 0 : 11 : 23
60273 : 1 : 0 : 0 : 8 : 26
60323 : 0 : 0 : 0 : 15 : 18
60357 : 0 : 0 : 0 : 9 : 25
60393 : 1 : 0 : 0 : 13 : 20
60427 : 2 : 0 : 0 : 9 : 24
60467 : 2 : 0 : 0 : 16 : 17
60514 : 1 : 0 : 0 : 9 : 25
60549 : 0 : 0 : 0 : 7 : 27
60584 : 0 : 0 : 0 : 10 : 24
60618 : 0 : 0 : 0 : 8 : 26
60654 : 1 : 0 : 0 : 13 : 20
60689 : 0 : 0 : 0 : 16 : 18
60723 : 4 : 0 : 0 : 10 : 24
60762 : 0 : 0 : 0 : 27 : 7
60796 : 1 : 0 : 0 : 10 : 24
60849 : 1 : 0 : 0 : 20 : 14
60885 : 1 : 0 : 0 : 8 : 25
60919 : 1 : 0 : 0 : 17 : 17
60956 : 1 : 0 : 0 : 17 : 17
60991 : 1 : 0 : 0 : 7 : 27
61027 : 1 : 0 : 0 : 6 : 27
61061 : 1 : 0 : 0 : 10 : 23
61096 : 1 : 0 : 0 : 12 : 21
61130 : 1 : 0 : 0 : 12 : 22
61165 : 0 : 0 : 0 : 6 : 28
61203 : 1 : 0 : 0 : 21 : 13
61243 : 1 : 0 : 0 : 7 : 26
61278 : 0 : 0 : 0 : 37 : 0
61315 : 1 : 0 : 0 : 7 : 27
61350 : 1 : 0 : 0 : 9 : 24
61384 : 1 : 0 : 0 : 14 : 20
61419 : 6 : 0 : 0 : 6 : 27
61458 : 1 : 0 : 0 : 18 : 15
61492 : 4 : 0 : 0 : 8 : 25
61529 : 1 : 1 : 0 : 18 : 15
61564 : 1 : 0 : 0 : 9 : 24
61598 : 1 : 0 : 0 : 11 : 22
61632 : 9 : 0 : 0 : 16 : 18
61675 : 1 : 0 : 0 : 6 : 27
61709 : 1 : 0 : 0 : 19 : 1014
62746 : 1 : 0 : 0 : 10 : 23
62780 : 1 : 0 : 0 : 16 : 18
62815 : 4 : 0 : 0 : 7 : 26
62852 : 2 : 0 : 0 : 7 : 27
62888 : 0 : 0 : 0 : 10 : 24
62922 : 1 : 0 : 0 : 7 : 26
62956 : 1 : 0 : 0 : 8 : 26
62991 : 1 : 0 : 0 : 6 : 27
63025 : 1 : 0 : 0 : 14 : 20
63060 : 5 : 0 : 0 : 16 : 17
63098 : 1 : 0 : 0 : 6 : 28
63133 : 0 : 0 : 0 : 10 : 24
63167 : 1 : 0 : 0 : 6 : 27
63201 : 2 : 0 : 0 : 14 : 19
63237 : 0 : 0 : 0 : 11 : 23
63271 : 1 : 0 : 0 : 9 : 25
63306 : 9 : 0 : 0 : 24 : 9
63348 : 1 : 0 : 0 : 7 : 27
63383 : 0 : 0 : 0 : 6 : 28
63417 : 1 : 0 : 0 : 24 : 10
63452 : 1 : 0 : 0 : 6 : 27
63487 : 0 : 0 : 0 : 13 : 21
63529 : 0 : 0 : 0 : 6 : 28
63563 : 5 : 0 : 0 : 7 : 26
63601 : 1 : 0 : 0 : 13 : 20
63638 : 1 : 0 : 0 : 19 : 14
63673 : 1 : 0 : 0 : 11 : 22
63707 : 1 : 0 : 0 : 8 : 26
63742 : 5 : 0 : 0 : 24 : 10
63781 : 3 : 0 : 0 : 8 : 25
63817 : 1 : 0 : 0 : 23 : 10
63852 : 0 : 0 : 0 : 11 : 23
63886 : 1 : 0 : 0 : 21 : 12
63920 : 1 : 0 : 0 : 8 : 25
63954 : 2 : 0 : 0 : 10 : 27
63993 : 5 : 0 : 0 : 27 : 7
64032 : 2 : 0 : 0 : 6 : 27
64067 : 1 : 0 : 0 : 6 : 27
64102 : 0 : 0 : 0 : 23 : 11
64137 : 2 : 0 : 0 : 18 : 16
AL lib: ALc.c:1879: exit(): closing 1 Device
AL lib: ALc.c:1808: alcCloseDevice(): destroying 1 Context(s)
AL lib: ALc.c:1420: alcDestroyContext(): deleting 30 Source(s)
AL lib: ALc.c:1818: alcCloseDevice(): deleting 25 Buffer(s)


Perfect, thank you so much.
According to that it is as I suspected, the actual calculations are taking no time at all, its the code that actually draws stuff on the screen that is the problem. I think I should be able to fix it, it was something that should have been done in the beginning, but I really didn't understand OpenGL well when this was written, so its really just laziness that has prevented me from fixing it until now.
Also, according to those numbers, it looks like the menus are running at the correct speed, with the exception of whatever craziness happened at 1707 (maybe you moved or resized the window?). Are the menus in fact running at the correct speed?

manu-tm 04-24-2012 12:15 AM

Quote:

Originally Posted by prushik (Post 4661306)
Also, according to those numbers, it looks like the menus are running at the correct speed, with the exception of whatever craziness happened at 1707 (maybe you moved or resized the window?). Are the menus in fact running at the correct speed?

Yes, they are. And I maximized the window.

prushik 04-24-2012 10:28 AM

Quote:

Originally Posted by manu-tm (Post 4661315)
Yes, they are. And I maximized the window.

Excellent, thank you

prushik 05-05-2012 12:44 AM

Quote:

Originally Posted by prushik (Post 4661803)
Excellent, thank you

Sorry for the delay;
I have committed some changes to the git repo which should increase execution speed significantly, although if you were having speed problems, then "Asteroids" mode may still suffer from slow speeds, although it should be a bit faster.
I also made sloppy-timing the default again since I was having occasional issues with the more accurate timing system; This means that if you are having speed issues, you should compile like this:
Code:

./configure --disable-sloppy-timings
make clean
make all

OR

Code:

gcc main.c -lglut -lGLU -lGL -lm -DAUDIO -lopenal -lalut -o UntitledOne
OR, if you still have issues and want to report the problems to me so I can fix them:

Code:

gcc main.c -lglut -lGLU -lGL -lm -DINSTRUMENT -DAUDIO -lopenal -lalut -o UntitledOne

prushik 05-05-2012 01:57 AM

I have also just added some code for fullscreen friendliness.
If you configure with the --enable-fullscreen option, or compile with -DFULLSCREEN, then the resulting executable will run in fullscreen mode, and should look much better than previous fullscreen executables. Note that some gameplay modes will be easier in fullscreen mode because it gives you slightly more room to fly around, network games with one person using fullscreen will put the windowed player at a disadvantage. You should also be able to achieve better asteroids scores in fullscreen mode, although, you can't cheat in asteroids mode like you could before (by enabling fullscreen and staying near the edge where the asteroids can't reach).
I also changed the colors of the targets to make them look less flat and dull. I also changed a few ship colors as well.
Remember to test out the newer and faster rendering code.

manu-tm 05-09-2012 08:12 AM

It's better but still too slow. Maybe the issue relates to hardware (Indietrash didn't report any speed issue with a 2.5GHz CPU.)


All times are GMT -5. The time now is 03:50 PM.