Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Kweepa

#2701
Advanced Technical Forum / Re: sin(x)
Thu 04/11/2004 05:02:10
Two things:

Use brackets when putting multiple terms in one calculation because AGS evaluates right to left! This is a historical thing that CJ refuses to change in the face of reason :=
I see Gilbot did this, but forgot to explain it.

Also, the expansion will be more accurate between -pi/4 and pi/4 - everything else can be refactored to use this range.

For example,

function taylor_sin(int x)
{
   // taylor series approximation of sin x
   // t = x - x^3/3! + x^5/5! - x^7/7!
   // as Gilbot
   return t;
}

function taylor_cos(int x)
{
   // taylor series approximation of cos x
   // t = 1 - x^2/2! + x^4/4! - x^6/6!
   // left as an exercise to the reader
   return t;
}

function sin(int x)
{
   // two steps to try to reduce the drift
   while (x > 31416) x = x - 31416;
   while (x > 3142) x = x - 2*3142;

   if (x < -3*3142/4) return -taylor_sin(x+3142);
   if (x < -3142/4) return -taylor_cos(x+3142/2);
   if (x < 3142/4) return taylor_sin(x);
   if (x < 3*3142/4) return taylor_cos(x-3142/2);
   return taylor_sin(x-3142);
}

Or you could use my maths plugin. This is the tech forum so I think I can safely mention that.
#2702
I'd be happy to PayPal a few dollars to keep the forums alive.
#2703
Critics' Lounge / Re: Future Noir
Sun 10/10/2004 06:22:17
I think the last two lines are cliched and unnecessary.
Well, it's all cliched, but it would be much better without them. IMO.
#2704
Get someone here to do some GUI elements for you.
You just have to ask!
Not me mind you - I haven't played Black Cauldron. And I'm not going to until the GUI fits  ;D
#2705
Wow, great stuff!
I love the detail in the backgrounds, the descriptions, the character's cynicism and dark side.
The artwork is extremely colourful without being gaudy. Nicely done!

It could use a little polish but you said that already.
#2706
Critics' Lounge / Re: Thumb issue...
Sun 26/09/2004 17:19:19
I think it's a bit odd that the fingers are "fisted".
If I was to use a thumb pad I'd probably do this:

#2707
Good question, EW. Probably not. I'll check later.
I never found the curves functionality to be very useful - partially because the interface is so bad, and partially because I didn't manage to rasterise the curves to aliased lines. Corel Draw did it much better 10 years ago.
#2708
I don't think there's anything "amazing" or "gorgeous" about this latest image.
I think it's quite ordinary.
No offence intended - I just thought I'd throw in a conflicting opinion.
#2709
Errr, make that Ctrl-Alt-Z.
Heh.
#2710
If anyone lives near a Frys and has been on the lookout for a graphics tablet, now's the time...
The Wacom Graphire package now includes Photoshop Elements 2 (like the European one has for a while) and Frys is doing a special for $80! Whattadeal!

I've been trying out Elements 2 for a month now and I haven't missed a single Photoshop 7 feature when making pixel art for my adventure game. If anything it's a little easier to use (eg New From Clipboard; Ctrl-Z multiple undos, rather than having to press Shift-Ctrl-Z...).
#2711
Two toolbars for gambling sites I think.
And a browser hijack that used a dll called XML.dll, and which just kept popping up adverts windows.
It was satisfying to bust that one with toolbarcop.
#2712
I recently downloaded and ran SpyKiller (no link provided because it's a trojan horse) which completely riddled my machine with spyware, browser hijackers, extra toolbars, etc. Big mistake.

AdAware and SpyBot got rid of most of them but for the browser hijacks, a little program called toolbarcop saved the day. Highly recommended.
#2713
Ok then, left to right and top to bottom. Jeez.

In most of those examples you give, there's dialog above, and a reaction below, or the events are supposed to be, as you say, simultaneous. The only counter example is perhaps the "For Better or Worse" strip, but then the flapping is supposed to be the punchline - something that's being going on offpanel for a while to undermine the father's little speech. And in that case the flapping is definitely the focus of the panel.

Here, the grin is a subtle change, and the eye is drawn to the speech balloon first, particularly since it cuts into the border.

Err, anyway, nice characters!
#2714
Well then, I disagree with your disagreement.
You still read the images left to right, so it would be better to horizontally mirror the scene.
#2715
I like what you've done with the top of the bowl - otherwise it's a toss up which one is better... I don't like the darker hue of the turban... and changing the eyebrows really changed the expression...
No change necessary I think!
#2716
Critics' Lounge / Re: Girl Flashing
Fri 17/09/2004 07:11:50
I think it would be better without the really heavy black line around her face - thinned out would be good I think.
It creates a disjoint between her face and her hair and also makes her head look like a button or a casserole dish.
Beautiful work! I love the hands.
#2718
Quit beating about the bush SSH and tell us Radiant's secrets. >:(
What is this, 20 questions? :=

[edit]
Ok, I'll start.
Is there a "switch (room)" statement (equivalent) involved?
#2719
I think it makes sense to have the Get/Set functionality.
Gilbot's code, while simple, is not as obvious as Ginny's...
#2720
The spoil heap looks like a dinosaur poo.
I'd think (from watching Time Team, etc) that it would look more like a flattened Toblerone, right next to the hole.
http://www.bewarethecheese.com/12toblorone.htm
Pelican?
SMF spam blocked by CleanTalk