• What are you working on? V4 (HTML ISN'T PROGRAMMING)
    2,003 replies, posted
[QUOTE=Jallen;18060063]HTML log file thing for my pong game. [/QUOTE] Love it! Willing to share that visual studio theme please?
I'd fire you for that mudkip comment, other than that, looks awesome.
[QUOTE=databee;18060399]Love it! Willing to share that visual studio theme please?[/QUOTE] I've got my exported colour settings on my desktop because people ask for it so much lol. [url]http://www.mediafire.com/?sharekey=35ca427698ece76961d4646c62b381cbe04e75f6e8ebb871[/url] The font is bitstream vera sans mono - [url]http://www.gnome.org/fonts/[/url] [editline]02:19PM[/editline] [QUOTE=voodooattack;18060435]I'd fire you for that mudkip comment, other than that, looks awesome.[/QUOTE] Thanks :D Threw that in for the screenshot to see if people would notice.
[QUOTE=Torekk;18060134]We could group together, speeds up stuff.[/QUOTE] I would but I am using python to develop, sorry :( @Jallen: That logger is awesome. I made a logger myself after you showed off your one for your roller coaster simulator. I'm going to copy you again :D. Scanning working on my hacking game: [code] Scanning: test.test-test.atm Name: File Server Port: 0 128 bit protection Files: -none 0.0kb Name: HTTP Server Port: 80 32 bit protection Files: -home.htm 0.0kb -page1.htm 0.0kb -page2.htm 0.0kb [/code] Files are yet to be done, so thats why they have 0 size. Files are only there as a debug, in the game I wouldn't let it be so easy :D.
Jallen you shouldn't make your log a singleton, it's [I]very[/I] possible that you might want multiple logs, say one for the physics side and one for the graphics side. The way I do it with my HTML Logger is have my main log as a global like cout. This frees it up so I can create multiple logs. Also remember to flush whenever you write to the log.
[QUOTE=r4nk_;18060556]Jallen you shouldn't make your log a singleton, it's [I]very[/I] possible that you might want multiple logs, say one for the physics side and one for the graphics side. The way I do it with my HTML Logger is have my main log as a global like cout. This frees it up so I can create multiple logs. Also remember to flush whenever you write to the log.[/QUOTE] Static classes <3 I could make it have a vector full of logs so that you pass a second argument to the write functions which is an identifier string for each log.
[QUOTE=Jallen;18060617]Static classes <3 I could make it have a vector full of logs so that you pass a second argument to the write functions which is an identifier string for each log.[/QUOTE] Uhhhhhhhhh
[QUOTE='-[ Fizzadar ]-;18048372']I banned someone on winsauce forums today for double-accounting, and very strangely he was running Windows Server 2003 RC2, on a personal connection? What is that shit?![/QUOTE] More robust than XP, which is why some people use it as their main PC's OS.
More progress. Now greets you if your nick is in the Hash table. [img]http://farm3.static.flickr.com/2502/4053032124_64c4f4966d_o.png[/img] Hash Table: [code] static Hashtable Greetz = new Hashtable(); static void PopulateGreets() { // all keys _MUST_ be lowercase. Greetz.Add("shadiku", "Hello, shadiku. You own!"); }[/code] Event Handler: [code] static void IRC_OnJoin(string channel, string who, Data ircdata) { if (who != Consolas.Program.Nick) { Consolas.Program.WriteLine(who + " has joined the channel.", ConsoleColor.Yellow); try { if (Greetz.ContainsKey(who.ToLower())) { Consolas.Program.WriteLine("Greeting " + who + "..", ConsoleColor.Cyan); Consolas.Program.MessageChannel(channel, "4[" + who + "] " + Greetz[who.ToLower()]); } } catch (Exception error) { Consolas.Program.WriteLine("Oh shit, " + error.ToString(), ConsoleColor.Red); } } else { Consolas.Program.WriteLine("Successfully joined " + channel + "!", ConsoleColor.Green); } }[/code] [editline]02:35PM[/editline] [QUOTE=DrTaxi;18060655]More robust than XP, which is why some people use it as their main PC's OS.[/QUOTE] x1000 Agree. [img]http://farm4.static.flickr.com/3488/4053096902_d683c92e1b_o.png[/img]
I'm very interested in neural nets, I am currently making a height generator in console, but do you think I can make some sort of neural net in console (idea's) ? I ain't that good with c++ but I did almost all the tutorials on [url]http://www.cplusplus.com/doc/tutorial/[/url] and made a guessing game/prime finder. Experimented with sfml but decided to go back to console to do some stuff there.
ai-junkie has some good stuff on neural nets. Make sure you understand vectors ect. before you move onto it. They are pretty complex (too me).
I understand vectors(most of them)
[QUOTE=iPope;18060550]I would but I am using python to develop, sorry :([/QUOTE] Ah well, no problem. Anyways, added a home icon instead of the text, made the facepunch.txt "open- closeable", gave the design a bit more color. [url]http://torekk.110mb.com/[/url] Next to go: A clock in the right bottom corner. :buddy:
[QUOTE=Jallen;18060485]I've got my exported colour settings on my desktop because people ask for it so much lol.[/QUOTE] Much appreciated
[QUOTE=Torekk;18060912]Ah well, no problem. Anyways, added a home icon instead of the text, made the facepunch.txt "open- closeable", gave the design a bit more color. [url]http://torekk.110mb.com/[/url] Next to go: A clock in the right bottom corner. :buddy:[/QUOTE] How does this work? I know its early in development but it seems to me that the current windows are hardcoded. You might want to add desktop items and proper window opening, so we can open as many as we want :D
[QUOTE=SteveUK;18049869]the timestamp was given to me, it wasn't automatically calculated. calculated timestamps have to have a store page fixed it based on the new time: [url]http://s-swires.org/launcha/?game=590[/url][/QUOTE] Fix the Borderlands page to show the European release please.
[QUOTE=iPope;18061077]How does this work? I know its early in development but it seems to me that the current windows are hardcoded. You might want to add desktop items and proper window opening, so we can open as many as we want :D[/QUOTE] It's actually simple. Just a <div> which got the display: none; style. Then if you click the task(which is a div too), a little javascript changes the style to display: block;. Well, I was going to implement icons to open files and stuff, but since it'd be kinda too hard for me to get also the correct openings of tasks, since I'd just display them too then. Also it's kinda more matching then with the rest of the style, giving it a feel of an "old" OS, which isn't multi task ready. Also, I'll give the stylesheet the function to be more dynamic, by telling the server it's actually a php file with the mime header of a normal stylesheet, so I can add some more stuff in it, like giving the windows a different location each time you open them.
[QUOTE=Torekk;18061442]It's actually simple. Just a <div> which got the display: none; style. Then if you click the task(which is a div too), a little javascript changes the style to display: block;. Well, I was going to implement icons to open files and stuff, but since it'd be kinda too hard for me to get also the correct openings of tasks, since I'd just display them too then. Also it's kinda more matching then with the rest of the style, giving it a feel of an "old" OS, which isn't multi task ready. Also, I'll give the stylesheet the function to be more dynamic, by telling the server it's actually a php file with the mime header of a normal stylesheet, so I can add some more stuff in it, like giving the windows a different location each time you open them.[/QUOTE] Oh I see. Work on my HTML logger is going well :D Just setting up different colors now. [img]http://media.tumblr.com/tumblr_ks8fklI6Wk1qa4q72.png[/img]
Hah, now I only need a icon to open the facepunch.txt and I got the first "task" which is openable, closeable and minimizeable. :buddy: Also, this starts to make fun. [b]Edit:[/b] Done, but now my host went down... Pfft. [b]Edit2:[/b] Well, hosted it on my old freespace, here you go: [url]http://torekk.bplaced.net/[/url]
Are we all posting our HTML logs? Here's mine I made a few months ago: [img]http://filebox.me/files/ynunwd3ei_log.png[/img]
Would it be possible to use Notepad++ for C++? Is there an easy way to compile it?
You could use GCC and Notepad++ together, but I really do suggest using an actual IDE. [QUOTE=r4nk_;18062392]Here's mine I made a few months ago:[/QUOTE] Use the error.png icon instead of the medal: [img]http://i38.tinypic.com/243i3q8.png[/img]
[QUOTE=r4nk_;18062392]Are we all posting our HTML logs? Here's mine I made a few months ago: [img]http://filebox.me/files/ynunwd3ei_log.png[/img][/QUOTE] I actually got the idea of a html logger from r4nk_ when he did it a while ago just so you guys all know I didn't think it up myself. I guess it's not an uncommon thing to do though. [editline]05:18PM[/editline] Also mine is the best looking :smugdog:
[QUOTE=r4nk_;18062392]Are we all posting our HTML logs? Here's mine I made a few months ago: [img]http://filebox.me/files/ynunwd3ei_log.png[/img][/QUOTE] Which OS/Theme is that? Also, really nice. Maybe add a background?
[QUOTE=ddrl46;18063046]Which OS/Theme is that? Also, really nice. Maybe add a background?[/QUOTE] Had to do a bit of searching but I found it again: [url]http://b0se.deviantart.com/art/XPMC-RC3-20901820[/url] It's a really nice theme, the only problem with it is that it makes the time quite hard to read.
[QUOTE=Torekk;18062278]Hah, now I only need a icon to open the facepunch.txt and I got the first "task" which is openable, closeable and minimizeable. :buddy: Also, this starts to make fun. [b]Edit:[/b] Done, but now my host went down... Pfft. [b]Edit2:[/b] Well, hosted it on my old freespace, here you go: [url]http://torekk.bplaced.net/[/url][/QUOTE] I really like how this is progressing, great work!
[QUOTE=r4nk_;18063243]Had to do a bit of searching but I found it again: [url]http://b0se.deviantart.com/art/XPMC-RC3-20901820[/url] It's a really nice theme, the only problem with it is that it makes the time quite hard to read.[/QUOTE] Damn, i wish it existed for vista :(.
[QUOTE=ddrl46;18063403]Damn, i wish it existed for vista :(.[/QUOTE] :smug:
My HTML logger now passes HTML 4.01 validation with 19 warnings (fixed now). Don't know why I did this, I just did so I could brag about it.
[QUOTE=Torekk;18062278]Hah, now I only need a icon to open the facepunch.txt and I got the first "task" which is openable, closeable and minimizeable. :buddy: Also, this starts to make fun. [b]Edit:[/b] Done, but now my host went down... Pfft. [b]Edit2:[/b] Well, hosted it on my old freespace, here you go: [url]http://torekk.bplaced.net/[/url][/QUOTE] Lookin' good :D
Sorry, you need to Log In to post a reply to this thread.