Search found 204 matches

by tappatekie
Wed Apr 18, 2012 1:34 pm
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

On the code organization topic: reading source code should be the last resource when trying to understand how some part of the application works. You (the developer) should supply documentation to guide users (developers using your code, not the end user). I haven't decided yet whether I open sourc...
by tappatekie
Wed Apr 18, 2012 1:23 pm
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

On the code organization topic: reading source code should be the last resource when trying to understand how some part of the application works. You (the developer) should supply documentation to guide users (developers using your code, not the end user). I haven't decided yet whether I open sourc...
by tappatekie
Wed Apr 18, 2012 1:03 pm
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

But keep in mind that if you are working with other people, and they are going to use your code, they only need to see the public functions, because that's all they are going to use. If you have a huge list of private stuff at the top, people would need to scroll down an look for the things they wa...
by tappatekie
Wed Apr 18, 2012 12:54 pm
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

THe Floating Brain wrote:
tappatekie wrote:
THe Floating Brain wrote: Im kinda confused at first I though it was Plywood then C# then Plywood now I think its C#.
Every teaser from now has been in C# from Visual Studio...
Every code block in my posts is plywood syntax

Also, what you mean by nice dynamic typing?
by tappatekie
Wed Apr 18, 2012 11:58 am
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

Here is another teaser for all you lovely people :D
This code is the top of interpreter source code... And as you can see, it was displayed like public then private.
by tappatekie
Wed Apr 18, 2012 11:48 am
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

I wasent questioning your style, I was questioning your syntax. For example: class A { private: int myInt; string s; public: void Func(); void Func2(); } As opposed to: class B { private int myInt; private string s; public Func(); public Func2(); } The programming language (Plywood) does not actual...
by tappatekie
Wed Apr 18, 2012 11:39 am
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

Did I delete the wrong post from this thread ? If so, I apologise. Someone had marked the post as reported and the post said something like "I couldnt work out how to delete this" So I deleted it. It's sound, you deleted the right post after I reported my own post because I could not dele...
by tappatekie
Wed Apr 18, 2012 11:32 am
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

@The Floating Brain: erm.. No idea why your post was deleted? but the answer is, I prefer having private members on top of public to basically say, these public functions use these private functions. But keep in mind that if you are working with other people, and they are going to use your code, th...
by tappatekie
Wed Apr 18, 2012 11:10 am
Forum: Game Development
Topic: Smooth Movement?
Replies: 25
Views: 8869

Re: Smooth Movement?

If it is leaking, why not try making some sort of tester to force the engine to re-render everything every 1ms, then see if the memory it uses increases.
E.g

Code: Select all

while(true) { engine.Draw(); }
by tappatekie
Wed Apr 18, 2012 11:01 am
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

@The Floating Brain:
erm.. No idea why your post was deleted? but the answer is, I prefer having private members on top of public to basically say, these public functions use these private functions.
by tappatekie
Wed Apr 18, 2012 10:43 am
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

Heres a teaser :D
Its a preview of the programming language source code in C# not the actual programming language..
by tappatekie
Tue Apr 17, 2012 7:29 pm
Forum: Game Development
Topic: Smooth Movement?
Replies: 25
Views: 8869

Re: Smooth Movement?

Make sure your disposing of every bitmap you are rendering after you finished using them. If your using c#, then you don't need to do this since it has a garbage collector. But otherwise, if your getting memory leaks, personal experience suggests that your not disposing of the bitmaps that are being...
by tappatekie
Tue Apr 17, 2012 12:03 pm
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

I'm in the spotlight? People are demanding your video, so yes. Done yet? Why not? NEED MOAR VIDEOZZ. Lol, erm, atm I don't have time yet (I got coll etc.. to actually work on the language) and secondly, I don't have the language to the level where I believe it should be shown off in a video. EDIT: ...
by tappatekie
Tue Apr 17, 2012 6:27 am
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

dandymcgee wrote:
tappatekie wrote:
VolsporTV wrote:Make this shit!
I admire your impatience dear elysian shadows forum user :P
How does it feel sharing the spotlight? As a great man once said, "Get the fuck back to work, gentlemen!"
I'm in the spotlight?
by tappatekie
Mon Apr 16, 2012 2:01 pm
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 34683

Re: Development video on youtube

VolsporTV wrote:Make this shit!
I admire your impatience dear elysian shadows forum user :P