fast // User Search

fast // User Search

1  |  

Moving the bots

Nov 30, 1998, 2:56am
--------------8840F154C105033792169F2B
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

So i guess this means you haven't figured out how to get my SDK script
to chase ppl?<g>



[View Quote] > There is full source, documentation and binary downloads on the
> download page.
>
[View Quote]
[View Quote] > There is full source, documentation and binary downloads on the
> download page.
>
[View Quote]
--
**************************************************************
*Fast's Avatar Bar:Making Fine Quality Avatars For the *
* citizens of Active Worlds. *
* A Division Of SPY WorldBuilders(www.FastWalker2.8m.com) *
* *
* Fas2 at Bellsouth.net *
**************************************************************


--------------8840F154C105033792169F2B
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<HTML>
<BODY BGCOLOR="#FFFFFF">
So i guess this means you haven't figured out how to get my SDK script
to chase ppl?&lt;g>
<BR>&nbsp;
<BR>&nbsp;

[View Quote] [View Quote] [View Quote] <P>AWCPP is implemented entirely in GNU G++. The version implemented by
Cygnus at <A HREF="http://www.cygnus.com">http://www.cygnus.com</A>

<P>You can find the source I referenced at

<P>&nbsp;&nbsp;&nbsp; <A HREF="http://members.xoom.com/esumerfd/ActiveWorlds/AWCPP/">http://members.xoom.com/esumerfd/ActiveWorlds/AWCPP/</A>

<P>Infact, I just released version 0.3 that supports a complete Avatar
tracking model.

<P>The one thing I might modify in Xelags write-up is the design approach
and this depends entirely on where you are coming from as a developer.
Xelag mentioned the idea of multiple robots and how to keep track of the
appropriate positions. That is a C design problem. With the AWCPP design
in C++ we already have all that encapsulation. This is an excellent example
of why OO design is so powerful.

<P>So, if you are learning C I would recommend learning C++ straight away
and forget C. If you are a C programmer I would recommend getting into
C++ fast. It has taken me, a veteran C programmer, 5 years now to feel
comfortable working with OO design concepts.

<P>It seems to be an industry problem for procedural programmers (C) to
reenginner their thinking processes to become OO programmers (C++). Good
luck.

<P>Roland, thanks for the tip. I didn't spot that one.

<P>Edward Sumerfield.

[View Quote] [View Quote] <P><B>1.&nbsp;&nbsp;&nbsp; avatar distance from robot.</B>

<P>I implemented this using Pythagarous in the code in the AWCPP - Avatar.C,
distanceFrom() method. Here is an excerpt

<P>&nbsp; // Convert all positions to their absolute values. No negatives.

<P>&nbsp; if (delta_x &lt; 0) delta_x = -delta_x;
<BR>&nbsp; if (delta_y &lt; 0) delta_y = -delta_y;
<BR>&nbsp; if (delta_z &lt; 0) delta_z = -delta_z;

<P>&nbsp; // Work out the horizontal hypotenuse using Pythagarous theorem.
<BR>&nbsp; //
<BR>&nbsp; // hypotenuse squared = opposite squared + adjacent squared;

<P>&nbsp; float hor_h = sqrt(((delta_x * delta_x) + (delta_z * delta_z)));

<P>&nbsp; // The vertical hypotenuse is the the actual distance between
the
<BR>&nbsp; // the avatars.

<P>&nbsp; float <B>distance_from_avatar</B> = sqrt(((hor_h * hor_h) + (delta_y
* delta_y)));
<BR>&nbsp;
<BR>&nbsp;</BLOCKQUOTE>
</BLOCKQUOTE>
</BLOCKQUOTE>
</BLOCKQUOTE>
</BLOCKQUOTE>
</BLOCKQUOTE>
&nbsp;

[View Quote] [View Quote] [View Quote] <P>AWCPP is implemented entirely in GNU G++. The version implemented by
Cygnus at <A HREF="http://www.cygnus.com">http://www.cygnus.com</A>

<P>You can find the source I referenced at

<P>&nbsp;&nbsp;&nbsp; <A HREF="http://members.xoom.com/esumerfd/ActiveWorlds/AWCPP/">http://members.xoom.com/esumerfd/ActiveWorlds/AWCPP/</A>

<P>Infact, I just released version 0.3 that supports a complete Avatar
tracking model.

<P>The one thing I might modify in Xelags write-up is the design approach
and this depends entirely on where you are coming from as a developer.
Xelag mentioned the idea of multiple robots and how to keep track of the
appropriate positions. That is a C design problem. With the AWCPP design
in C++ we already have all that encapsulation. This is an excellent example
of why OO design is so powerful.

<P>So, if you are learning C I would recommend learning C++ straight away
and forget C. If you are a C programmer I would recommend getting into
C++ fast. It has taken me, a veteran C programmer, 5 years now to feel
comfortable working with OO design concepts.

<P>It seems to be an industry problem for procedural programmers (C) to
reenginner their thinking processes to become OO programmers (C++). Good
luck.

<P>Roland, thanks for the tip. I didn't spot that one.

<P>Edward Sumerfield.

[View Quote] [View Quote] <P><B>1.&nbsp;&nbsp;&nbsp; avatar distance from robot.</B>

<P>I implemented this using Pythagarous in the code in the AWCPP - Avatar.C,
distanceFrom() method. Here is an excerpt

<P>&nbsp; // Convert all positions to their absolute values. No negatives.

<P>&nbsp; if (delta_x &lt; 0) delta_x = -delta_x;
<BR>&nbsp; if (delta_y &lt; 0) delta_y = -delta_y;
<BR>&nbsp; if (delta_z &lt; 0) delta_z = -delta_z;

<P>&nbsp; // Work out the horizontal hypotenuse using Pythagarous theorem.
<BR>&nbsp; //
<BR>&nbsp; // hypotenuse squared = opposite squared + adjacent squared;

<P>&nbsp; float hor_h = sqrt(((delta_x * delta_x) + (delta_z * delta_z)));

<P>&nbsp; // The vertical hypotenuse is the the actual distance between
the
<BR>&nbsp; // the avatars.

<P>&nbsp; float <B>distance_from_avatar</B> = sqrt(((hor_h * hor_h) + (delta_y
* delta_y)));
<BR>&nbsp;
<BR>&nbsp;</BLOCKQUOTE>
</BLOCKQUOTE>
</BLOCKQUOTE>
</BLOCKQUOTE>
</BLOCKQUOTE>
</BLOCKQUOTE>
&nbsp;

<P>--
<BR>**************************************************************
<BR>*Fast's Avatar Bar:Making Fine Quality Avatars For the&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
*
<BR>*&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
citizens of Active Worlds.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
*
<BR>*&nbsp;&nbsp; A Division Of SPY WorldBuilders(www.FastWalker2.8m.com)&nbsp;
*
<BR>*&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
*
<BR>*&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Fas2 at Bellsouth.net&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
*
<BR>**************************************************************
<BR>&nbsp;
</BODY>
</HTML>

--------------8840F154C105033792169F2B--

WorldBuilders World

Dec 3, 1998, 12:16am
--------------215194E71868F2CCF62C5F4B
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

I Will Be Buying a World For Spy WB As a Demo World.And I need some
helpers?No.Sorry.Just alerting ya.Updates Later


--Fast
**************************************************************
Spy WorldBuilders Offer:
Hosting
All Avatars On Request
All Objects On Request
Reasonable Pricing
*Trial* worlds(ie:Sample)
Bot Scripts
Monitering(Ie:We Moniter the world for Spammers Vandals Etc)
Etc

Spy WorldBuilders Asks:
That We Be allowed to have (and keep) Build,PS,Eject,CareTaker,Etc

**Spy Reserves the right to decline any application for any reason.**
Telegram FastWalker2 Or Email Fast2 at Bellsouth.net
for details.
Spy Logo,Fast's Avatar Bar,The Alliance,Etc (c) 1998 By Fast.
**************************************************************


--------------215194E71868F2CCF62C5F4B
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<HTML>
<FONT FACE="Century Gothic">I Will Be Buying a World For Spy WB As a Demo
World.And I need some helpers?No.Sorry.Just alerting ya.Updates Later</FONT>
<BR><FONT FACE="Century Gothic"></FONT>&nbsp;

<P>--Fast
<BR>**************************************************************
<BR>Spy WorldBuilders Offer:
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Hosting
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; All Avatars On Request
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; All Objects On Request
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Reasonable Pricing
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *Trial* worlds(ie:Sample)
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Bot Scripts
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Monitering(Ie:We Moniter
the world for Spammers Vandals Etc)
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Etc

<P>Spy WorldBuilders Asks:
<BR>That We Be allowed to have (and keep) Build,PS,Eject,CareTaker,Etc

<P>**Spy Reserves the right to decline any application for any reason.**
<BR>Telegram FastWalker2 Or Email Fast2 at Bellsouth.net
<BR>for details.
<BR>Spy Logo,Fast's Avatar Bar,The Alliance,Etc (c) 1998 By Fast.
<BR>**************************************************************
<BR>&nbsp;</HTML>

--------------215194E71868F2CCF62C5F4B--

Bot has hearing impairments =(

Feb 5, 1999, 3:38am
--------------AC635C7D47E345541AFBBE64
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Sounds Like Abbot's working on a ChatBot clone:)

FastWalker2

--------------AC635C7D47E345541AFBBE64
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<HTML>
<FONT FACE="Century Gothic">Sounds Like Abbot's working on a ChatBot clone:)</FONT><FONT FACE="Century Gothic"></FONT>

<P><FONT FACE="Century Gothic">FastWalker2</FONT></HTML>

--------------AC635C7D47E345541AFBBE64--

Free Bots?

Feb 1, 1999, 1:32am
--------------D16CA454C5D5165DFA82B118
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

I was wondering:Is Anyone willing to start something where you offer
free SDK Compiled Scripts and charge like a Fee for OTHER Bots after a
user gets a taste of what your C Programing can do?That'd be
cool.Yet....N/m.Reply if ya like dat Idea:)

FW2 Protector Of The Innocent

--------------D16CA454C5D5165DFA82B118
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<HTML>
<FONT FACE="Century Gothic">I was wondering:Is Anyone willing to start
something where you offer free SDK Compiled Scripts and charge like a Fee
for OTHER Bots after a user gets a taste of what your C Programing can
do?That'd be cool.Yet....N/m.Reply if ya like dat Idea:)</FONT><FONT FACE="Century Gothic"></FONT>

<P><FONT FACE="Century Gothic">FW2 Protector Of The Innocent</FONT></HTML>

--------------D16CA454C5D5165DFA82B118--

Free Bots?

Feb 5, 1999, 3:32am
--------------13E25EF8BCBEFFDD8D57C2FD
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

So Its an Idea?

Fast

--------------13E25EF8BCBEFFDD8D57C2FD
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<HTML>


<P><FONT FACE="Century Gothic">So Its an Idea?</FONT><FONT FACE="Century Gothic"></FONT>

<P><FONT FACE="Century Gothic">Fast</FONT></HTML>

--------------13E25EF8BCBEFFDD8D57C2FD--

Free Bots?

Feb 5, 1999, 4:00am
--------------6E7FB123B39CA28D86DA54C3
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

It would be intresting to at least try and see if it could become
popular...and you could charge whatever u wanted...so on and so on...

FastWalker2

--------------6E7FB123B39CA28D86DA54C3
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<HTML>
<FONT FACE="Century Gothic">It would be intresting to at least <B>try</B>
and see if it could become popular...and you could charge whatever u wanted...so
on and so on...</FONT><FONT FACE="Century Gothic"></FONT>

<P><FONT FACE="Century Gothic">FastWalker2</FONT></HTML>

--------------6E7FB123B39CA28D86DA54C3--

Easy Make SDK

Feb 5, 1999, 3:55am
--------------D23743B63843C8075E60B50F
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

anyone thought of that?Have a program that MAKES SDKs not runs them.like
it asks "What Do You Want TO Make?" and someone says "I want It To Sing
Happy Birthday".All It Asks then is "Input Words Please!" and it makes a
..C file.Then it Compiles it and Volia! Instant SDK?GIve Er a Bit Of
Throught.and remember:This Message came from a SDK NewBie:)But NOt an AW
newBie:)and not a C Newbie.

--------------D23743B63843C8075E60B50F
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<HTML>
<FONT FACE="Century Gothic">anyone thought of that?Have a program that
MAKES SDKs not runs them.like it asks "What Do You Want TO Make?" and someone
says "I want It To Sing Happy Birthday".All It Asks then is "Input Words
Please!" and it makes a .C file.Then it Compiles it and Volia! Instant
SDK?GIve Er a Bit Of Throught.and remember:This Message came from a SDK
NewBie:)But NOt an AW newBie:)and not a C Newbie.</FONT></HTML>

--------------D23743B63843C8075E60B50F--

(no subject)

Nov 29, 1998, 10:06pm
TEST
--
Fast's Avatar Bar:Making Fine Quality Avatars For the
citizens of Active Worlds.
A Division Of SPY WorldBuilders(www.FastWalker2.8m.com)


|_______|
( )
( * * )
( .. )
( _____ ) // \\
(_________) \\ //
___F___A___B____ \__/
| a v a | | |
| s a r | |__|
| t t | / /
| ' a | / /
| s r |_________/ /

The GLobe

Nov 30, 1998, 3:09am
http://www.geocities.com/SiliconValley/Bridge/4191/index.html is where
You can find the Globe at.There are only a handful of stories but i hear
they are hiring

--
**************************************************************
*Fast's Avatar Bar:Making Fine Quality Avatars For the *
* citizens of Active Worlds. *
* A Division Of SPY WorldBuilders(www.FastWalker2.8m.com) *
* *
* Fas2 at Bellsouth.net *
**************************************************************

Invisible Mode!!

Dec 3, 1998, 12:14am
--------------A3010F6A3DD8272A0B9704E3
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

I wish that Cof'd add an Invisible mode where you could come on and no
one would see you.Like your on AW's GZ and You want to go invisible and
just listen then you can.That sounds cool to me.

--
**************************************************************
Spy WorldBuilders Offer:
Hosting
All Avatars On Request
All Objects On Request
Reasonable Pricing
*Trial* worlds(ie:Sample)
Bot Scripts
Monitering(Ie:We Moniter the world for Spammers Vandals Etc)
Etc

Spy WorldBuilders Asks:
That We Be allowed to have (and keep) Build,PS,Eject,CareTaker,Etc

**Spy Reserves the right to decline any application for any reason.**
Telegram FastWalker2 Or Email Fast2 at Bellsouth.net
for details.
Spy Logo,Fast's Avatar Bar,The Alliance,Etc (c) 1998 By Fast.
**************************************************************


--------------A3010F6A3DD8272A0B9704E3
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<HTML>
<FONT FACE="Century Gothic">I wish that Cof'd add an Invisible mode where
you could come on and no one would see you.Like your on AW's GZ and You
want to go invisible and just listen then you can.That sounds cool to me.</FONT>

<P>--
<BR>**************************************************************
<BR>Spy WorldBuilders Offer:
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Hosting
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; All Avatars On Request
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; All Objects On Request
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Reasonable Pricing
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *Trial* worlds(ie:Sample)
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Bot Scripts
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Monitering(Ie:We Moniter
the world for Spammers Vandals Etc)
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Etc

<P>Spy WorldBuilders Asks:
<BR>That We Be allowed to have (and keep) Build,PS,Eject,CareTaker,Etc

<P>**Spy Reserves the right to decline any application for any reason.**
<BR>Telegram FastWalker2 Or Email Fast2 at Bellsouth.net
<BR>for details.
<BR>Spy Logo,Fast's Avatar Bar,The Alliance,Etc (c) 1998 By Fast.
<BR>**************************************************************
<BR>&nbsp;</HTML>

--------------A3010F6A3DD8272A0B9704E3--

WorldBuilders World

Dec 3, 1998, 12:16am
--------------215194E71868F2CCF62C5F4B
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

I Will Be Buying a World For Spy WB As a Demo World.And I need some
helpers?No.Sorry.Just alerting ya.Updates Later


--Fast
**************************************************************
Spy WorldBuilders Offer:
Hosting
All Avatars On Request
All Objects On Request
Reasonable Pricing
*Trial* worlds(ie:Sample)
Bot Scripts
Monitering(Ie:We Moniter the world for Spammers Vandals Etc)
Etc

Spy WorldBuilders Asks:
That We Be allowed to have (and keep) Build,PS,Eject,CareTaker,Etc

**Spy Reserves the right to decline any application for any reason.**
Telegram FastWalker2 Or Email Fast2 at Bellsouth.net
for details.
Spy Logo,Fast's Avatar Bar,The Alliance,Etc (c) 1998 By Fast.
**************************************************************


--------------215194E71868F2CCF62C5F4B
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<HTML>
<FONT FACE="Century Gothic">I Will Be Buying a World For Spy WB As a Demo
World.And I need some helpers?No.Sorry.Just alerting ya.Updates Later</FONT>
<BR><FONT FACE="Century Gothic"></FONT>&nbsp;

<P>--Fast
<BR>**************************************************************
<BR>Spy WorldBuilders Offer:
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Hosting
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; All Avatars On Request
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; All Objects On Request
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Reasonable Pricing
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *Trial* worlds(ie:Sample)
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Bot Scripts
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Monitering(Ie:We Moniter
the world for Spammers Vandals Etc)
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Etc

<P>Spy WorldBuilders Asks:
<BR>That We Be allowed to have (and keep) Build,PS,Eject,CareTaker,Etc

<P>**Spy Reserves the right to decline any application for any reason.**
<BR>Telegram FastWalker2 Or Email Fast2 at Bellsouth.net
<BR>for details.
<BR>Spy Logo,Fast's Avatar Bar,The Alliance,Etc (c) 1998 By Fast.
<BR>**************************************************************
<BR>&nbsp;</HTML>

--------------215194E71868F2CCF62C5F4B--

1  |  
Awportals.com is a privately held community resource website dedicated to Active Worlds.
Copyright (c) Mark Randall 2006 - 2024. All Rights Reserved.
Awportals.com   ·   ProLibraries Live   ·   Twitter   ·   LinkedIn