• What are you working on? v19
    6,590 replies, posted
God damnit I have twice as many images as is allowed
Ask esalaka to borrow his first post.
I have the third, so I'm using that. [editline]19th June 2011[/editline] Fuck, videos aren't working... [editline]19th June 2011[/editline] Fixed
[img]http://dl.dropbox.com/u/8745051/tiles.gif[/img]
Do you think it is overkill that i am signing all my network messages with a 6 character token unique to each client.
[img]http://i.imgur.com/jR7sc.png[/img] This stoned smile.
[img]http://i.imgur.com/ohDVc.png[/img] I posted this, but thanks for reminding me, I have to wake her up again. All seriousness though, thanks for putting me in the highlights. ;D
[url=http://tinypic.com/r/14ahc07/7][img]http://i51.tinypic.com/2djp0uv.png[/img][/url] Video: [url]http://tinypic.com/r/14ahc07/7[/url]
Oh my God's I'm in the highlights :haw:
Made a Enemy Location Indicator thing for my HUD in my Top Down Shooter, pretty easy stuff. I also modified the shotgun so it's more like a shotgun; it originally just shot 2 bullets now it shoots a bunch of small 'bullets' at random speeds and offsets. [IMG]http://i.imgur.com/vOcHU.gif[/IMG]
I now have networking in my game, one of the big things I am doing with it organising packets [csharp] using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CodeGame.Networking.Clientside.ServerClientPackets { class GlobalChatPacket : ClientPacket { public override void Handle(Lidgren.Network.NetIncomingMessage message) { string nick = message.ReadString(); string msg = message.ReadString(); Singiltons.Console.Print(nick + " : " + msg, Singiltons.NetworkColor); } public override ServerClientNet GetID() { return ServerClientNet.GlobalAnounce; } } } [/csharp] This is also automaticly registered to the client, reflection is great that way. Third one this weekend. Dam Inception reference when making the database system... [csharp] private Dictionary<string, Dictionary<string, string>> Tables = new Dictionary<string, Dictionary<string, string>>(); [/csharp]
What, me in the highlights? -snip for the rest of the post, screw me and my ambitions-
Some more content. [img]http://dl.dropbox.com/u/29241139/Snake%202011-06-19%2012-09-01-85.gif[/img]
What happened to that mario portal thing?
[QUOTE=Vbits;30558184]I now have networking in my game, one of the big things I am doing with it organising packets [csharp] using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CodeGame.Networking.Clientside.ServerClientPackets { class GlobalChatPacket : ClientPacket { public override void Handle(Lidgren.Network.NetIncomingMessage message) { string nick = message.ReadString(); string msg = message.ReadString(); Singiltons.Console.Print(nick + " : " + msg, Singiltons.NetworkColor); } public override ServerClientNet GetID() { return ServerClientNet.GlobalAnounce; } } } [/csharp] This is also automaticly registered to the client, reflection is great that way. Third one this weekend. Dam Inception reference when making the database system... [csharp] private Dictionary<string, Dictionary<string, string>> Tables = new Dictionary<string, Dictionary<string, string>>(); [/csharp][/QUOTE] 'singiltons'?
Just fixed the spelling mistake, 99 times I misspelt it.
[QUOTE=Icedshot;30550926]I dont know about anyone else, but facepunch is severely broken on chrome, for me at least Cannae scroll down the page! Or see anything.[/QUOTE] If on dev build (or beta) disable full-page hardware rendering. Seems to break frames and sometimes the whole page.
[QUOTE=uitham;30558651]What, me in the highlights? Content: Would it be legal to make a virus that does nothing except run folding@home in the background? Kind of a whitehat virus?[/QUOTE] Hacking (and any other kind of intrusion) is never legal, no matter what intention you have.
[QUOTE=uitham;30558651]What, me in the highlights? Content: Would it be legal to make a virus that does nothing except run folding@home in the background? Kind of a whitehat virus?[/QUOTE] No, because you're still running stuff on someone else's computer, without their permission. Also F@H said that if they find someone running F@H like in a botnet or something, it wipes their scores. [editline]19th June 2011[/editline] :ninja:
I'm still working on the Mandelbrot calculator. It kind of works. Except it's not Mandelbrot. It's some kind of a pattern that goes from a circle of approximately radius 1 (centered somewhere between -1 and 0) into a diamond as the detail increases. [img]http://img842.imageshack.us/img842/491/ldhd.png[/img] The curious thing is, whatever the shape is, it still works with the escape-time algorithm. It doesn't reduce further from that diamond with this resolution. So I suspect the fault is either with the integer arithmetic or my math - and it's probably a very small error. Unfortunately it's going to be hard to debug because I can't make any sense out of the intermediary values in the memory.
Yes! Finally got in the highlights! Next up on my game is text rendering and a UI system.
I'm being honest when I say this was not meant to happen: [img]http://i.imgur.com/SCygL.png[/img]
RyanDv3, I don't want to sound like an ass but you put my cool sphere thing by Maurice's highlights :smith: (see [url=http://www.facepunch.com/threads/1090922-What-are-you-working-on-v18?p=30259816&viewfull=1#post30259816]this post[/url])
Trying to make threading less of a pain in the ass [IMG]http://localhostr.com/files/SeXnWVL/capture.png[/IMG]
Wow, I actually made it into the highlights! Milestone in my life :unsmith:
Spotlights! I almost have you! [img]http://img204.imageshack.us/img204/6076/theattic20110619041037.png[/img]
[QUOTE=Vbits;30556019]Do you think it is overkill that i am signing all my network messages with a 6 character token unique to each client.[/QUOTE] 2 Bytes would be sufficient, really
Damn that's a lot of highlights.
CAUTION: AMATEUR CONTENT I made a program that prints out Fibonacci numbers. For some reason, after a certain amount, the numbers get negative (WHY!? IT IS IMPOSSIBLE GODDAMNIT). Then it crashes at number 256. It is kind of the Hello World program, but more advanced. Just like 99 bottles of beer, which I will do right now.
Code?
Sorry, you need to Log In to post a reply to this thread.