Search found 8 matches

by Aliuar2
Fri Mar 13, 2009 2:36 am
Forum: Programming Discussion
Topic: C#: Callback & ViewState
Replies: 7
Views: 5555

Re: C#: Callback & ViewState

Hi there, are you using dynamic controls, and if so, are you creating them oninit?

It's been a little while since I've created a custom web control, but I sympathize with what you're going through.
by Aliuar2
Thu Feb 12, 2009 1:01 am
Forum: Programming Discussion
Topic: something i bet you didnt know you could do with pointers.
Replies: 19
Views: 1627

Re: something i bet you didnt know you could do with pointers.

Be nice.... but seriously I realize this is spaghetti nightmare code :) But see it's the intention that matters right?:))) This was an old scratch piece I put together when I was building a rule system.
by Aliuar2
Thu Feb 12, 2009 12:56 am
Forum: Programming Discussion
Topic: something i bet you didnt know you could do with pointers.
Replies: 19
Views: 1627

Re: something i bet you didnt know you could do with pointers.

#include "stdafx.h" #include "iostream" #include "string" #include "vector" using namespace std; class ParameterType { public: ParameterType() { isReturn = false; } string TypeName; string Name; bool isReturn; }; class ParameterLink { public: void * data; Par...
by Aliuar2
Thu Feb 12, 2009 12:43 am
Forum: Programming Discussion
Topic: something i bet you didnt know you could do with pointers.
Replies: 19
Views: 1627

Re: something i bet you didnt know you could do with pointers.

LOL, I'm going to post some serious crap code that I wrote :)
by Aliuar2
Thu Feb 12, 2009 12:35 am
Forum: Programming Discussion
Topic: OpenGL
Replies: 1
Views: 475

Re: OpenGL

There is an OpenGL book I'm going to pick up this weekend, I'll get back to you if it is good.

John
by Aliuar2
Thu Feb 12, 2009 12:34 am
Forum: Programming Discussion
Topic: Suggestions for Books
Replies: 7
Views: 866

Re: Suggestions for Books

I recommend GPU Gems 2 or 3 by Nvidia for really neat stuff... (this is a bit advanced.)
by Aliuar2
Wed Feb 11, 2009 11:59 pm
Forum: Programming Discussion
Topic: World Persistance
Replies: 16
Views: 2632

Re: World Persistance

You guys have been really great, I'll work on the suggestions you mentioned and check out the articles. I'll post full source code in a couple of weeks when I've refined things. I really want this code to be a toolset for anyone who wants to make their own MMO, but I want to make it scalable and sec...
by Aliuar2
Mon Feb 09, 2009 4:02 am
Forum: Programming Discussion
Topic: World Persistance
Replies: 16
Views: 2632

World Persistance

I've written a simple 3D engine that lets me animate a model and move inside buildings/on terrain. I've written a simple world server that uses I/O Completion Ports and handles authentication - and game state. I want to know what the best way to deal with tracking player position is? Should I be doi...