.:: Bots United ::.  
filebase forums discord server github wiki web
cubebot epodbot fritzbot gravebot grogbot hpbbot ivpbot jkbotti joebot
meanmod podbotmm racc rcbot realbot sandbot shrikebot soulfathermaps yapb

Go Back   .:: Bots United ::. > Cyborg Factory > POD-Bot mm > Releases, Installers, Docs & Coding
Releases, Installers, Docs & Coding Where the official development happens

Closed Thread
 
Thread Tools
Re: POD-bot back into shape.
Old
  (#291)
sPlOrYgOn
<-- He did it.
 
sPlOrYgOn's Avatar
 
Status: Offline
Posts: 1,558
Join Date: Jan 2004
Location: Los Angeles, California, USA, North America, Earth, Solar System, Milky Way.
Default Re: POD-bot back into shape. - 30-03-2004

yes we know you're the best at mapping and waypointing
  
Re: POD-bot back into shape.
Old
  (#292)
SoUlFaThEr
Moderator
 
SoUlFaThEr's Avatar
 
Status: Offline
Posts: 860
Join Date: Mar 2004
Default Re: POD-bot back into shape. - 30-03-2004

dude.......that was not my point

i am not the best at anything, and never claimed to be, otherwise i would be making money. hehe

any help is appreciated !!!!!


  
Re: POD-bot back into shape.
Old
  (#293)
sPlOrYgOn
<-- He did it.
 
sPlOrYgOn's Avatar
 
Status: Offline
Posts: 1,558
Join Date: Jan 2004
Location: Los Angeles, California, USA, North America, Earth, Solar System, Milky Way.
Default Re: POD-bot back into shape. - 31-03-2004

but you are really good...

help with what?

[edit]
damn these podbot source code files are huge...
[/edit]

Last edited by sPlOrYgOn; 31-03-2004 at 09:13..
  
Re: POD-bot back into shape.
Old
  (#294)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default Re: POD-bot back into shape. - 31-03-2004

Code:
 bool IsGroupOfEnemies (bot_t *pBot, Vector vLocation)
 {
 ......
    // search the world for enemy players...
    for (i = 1; i <= gpGlobals->maxClients; i++) // BUG
    {
 	  if (!ThreatTab[i].IsUsed || !ThreatTab[i].IsAlive || (ThreatTab[i].pEdict == pEdict))
 		 continue;
The ThreatTab range is [0, gpGlobals->maxClients) so this is wrong
it should be:
for (i = 0; i < gpGlobals->maxClients; i++)


Code:
    if (!(pEdict->v.button & (IN_LEFT | IN_RIGHT)))
    {
 	  if (pBot->f_sidemove_speed > 0)
 		 pEdict->v.button |= IN_RIGHT;
 	  else
 		 pEdict->v.button |= IN_LEFT;
    }
The buttons should be IN_MOVELEFT and IN_MOVERIGHT. IN_LEFT and IN_RIGHT means "look left" and "look right" (Anyway I don't think this button thing is necessary)


Code:
 		 if (pBot->iCampDirection < 1)
 		 {
 			v_dest.x = paths[pBot->curr_wpt_index]->fcampstartx;
 			v_dest.y = paths[pBot->curr_wpt_index]->fcampstarty;
 			v_dest.z = 0;
 		 }
 		 .
 		 .
 		 .
 		 MAKE_VECTORS (v_dest);
 		 pBot->vecCamp = paths[pBot->curr_wpt_index]->origin + gpGlobals->v_forward * 500;
The fcampstartx, fcampstarty, fcampendx, fcampendy aren't angles. Take a look at this in waypoint.cpp...
Code:
 	  case 5: // Camping Point
 		 p->flags |= W_FL_CROSSING;
 		 p->flags |= W_FL_CAMP;
 		 p->flags |= W_FL_NOHOSTAGE;
 		 MAKE_VECTORS (pHostEdict->v.v_angle);
 		 v_forward = pHostEdict->v.origin + pHostEdict->v.view_ofs + gpGlobals->v_forward * 640;
 		 p->fcampstartx = v_forward.x;
 		 p->fcampstarty = v_forward.y;
 		 WaypointDrawBeam (start, end, 30, 0, 0, 255, 255, 250, 5);
 		 break;
This camping direction bug is too difficult to handle, and I haven't found a good way to fix it without changing the waypoint format to add "fcampstartz" and "fcampendz" and redo all waypoints... well, IMHO the PB waypoint format is really bad, it just limits the max connections to 8 waypoints, so I can't reflect the old RealBot waypoint system without changing waypoint format


Code:
    if (*fAngle >= 180)
 	  *fAngle -= 360 * ((int) (*fAngle / 360) + 1);
    if (*fAngle < -180)
 	  *fAngle += 360 * ((int) (-*fAngle / 360) + 1); // don't forget the "-" (bugfix by Myung Jee)
...You shouldn't have been reading that "Myung Jee"'s email carefully
That "Myung Jee" should have mailed you this...

Quote:
You code won't work if the angle is 360, 720, 1080, etc.
eg. 360 - 360 * ((int)(360 / 360) + 1) = 360 - 720 = -360
...and:
Code:
 float WrapAngle (float angle_to_wrap)
 {
    static float angle;
    angle = angle_to_wrap;
 
    if (angle >= 180.0)
 	  angle -= 360.0 * ((int)(angle / 360 + 0.5));
    if (angle < -180.0)
 	  angle += 360.0 * ((int)(-angle / 360 + 0.5));
 
    return (angle);
 }

(P.S. If you don't know why I know that "Myung Jee"'s email so much, take a look at botman's forum archive (all the names shown in it are login names instead of display names), the post #5006 in developer forum is post by "him" )
  
Re: POD-bot back into shape.
Old
  (#295)
Pierre-Marie Baty
Roi de France
 
Pierre-Marie Baty's Avatar
 
Status: Offline
Posts: 5,049
Join Date: Nov 2003
Location: 46°43'60N 0°43'0W 0.187A
Default Re: POD-bot back into shape. - 01-04-2004

l33t, guys. Thanks a lot Whistler again for contributing to the bugfixes

but FYI the campstart and campend values ARE MEANT TO BE angles. It's Count Floyd that messed it all up and confused everything Hence the fix goes in waypoint.cpp, not the other way around.

Here's the new changelog:
Quote:
+ Fixed a bug where CT bots could not be added (choosing auto team instead).
+ Waypointers can now type "ap" instead of "autopath".
+ Fixed strafe key bug (thanks Whistler)
+ Fixed potential crash bug by ThreatTab array overflow (thanks Whistler)
+ Bots should not be trying to toss grenades over the walls in de_dust or
through the ceilings like in de_nuke anymore.
+ Finally FI-XED wicked bug of bots not able to see through certain types of
glass !!! w00h00h00h00h0000000t!!!!!
+ Bots should approach crouched waypoints correctly now (ducking)
+ Bots now estimate crouched waypoints using a slower travel speed while
pathfinding (should help them not believe crouched routes are the fastest)
+ Fixed bug where bots would spin around with the head upside down (!!!)
+ Made the waypoint index display cleaner in waypoint editing mode. It doesn't
flood the console anymore and it's visible in CS 1.5 and 1.6 identically.
+ Fixed "wp teleport" function in the waypoint editor so that players can't be
stuck into the ground anymore when teleporting from one waypoint to another.
+ Fixed incorrect recording of "campstart" and "campangle" angles when adding
a waypoint. These values are meant to be ANGLES, NOT vector locations.
Here's the link
http://racc.bots-united.com/releases/podbot.zip
Keep me aware of what works and what not. Enjoy!



RACC home - Bots-United: beer, babies & bots (especially the latter)
"Learn to think by yourself, else others will do it for you."
  
Re: POD-bot back into shape.
Old
  (#296)
SoUlFaThEr
Moderator
 
SoUlFaThEr's Avatar
 
Status: Offline
Posts: 860
Join Date: Mar 2004
Default Re: POD-bot back into shape. - 01-04-2004

THANKS for an extremely fast update.......here i thought i was going to sleep!

AP.....thanks dude
nades.....thanks dude
index display in 1.6........thanks dude
crouch waypoints........thanks dude
teleport......thanks dude

JESUS!!!!!!!

OMG THIS ROCKS!!!!! yer knockin me out.......i cant sleep!!!!!


EDIT
first things:
in the podbot.cfg

1) put the "=" as bot menu by default......its B right now and thats the default buy menu for CS.........
2) the botfollow should be set by default at 3.......12 is just too many
3) the weapon pickup should be max 2 by default......12 is rediculous


these are my opinions and these are things that one must change when installing the bot.......

are those my waypoints in the default folder now? just curious
/EDIT



Last edited by SoUlFaThEr; 01-04-2004 at 06:10..
  
Re: POD-bot back into shape.
Old
  (#297)
sPlOrYgOn
<-- He did it.
 
sPlOrYgOn's Avatar
 
Status: Offline
Posts: 1,558
Join Date: Jan 2004
Location: Los Angeles, California, USA, North America, Earth, Solar System, Milky Way.
Default Re: POD-bot back into shape. - 01-04-2004

the strangest bug ever...
I was using SoulFather's cs_assault waypoints for this demo...
they seem to love facing walls and jumping now...
[edit]
btw i don't think the waypoints have anything to do with this.. because i've used his waypoints before this update and they worked just fine...
[/edit]
Attached Files
File Type: zip jumping.zip (748.1 KB, 243 views)

Last edited by sPlOrYgOn; 01-04-2004 at 06:14..
  
Re: POD-bot back into shape.
Old
  (#298)
SoUlFaThEr
Moderator
 
SoUlFaThEr's Avatar
 
Status: Offline
Posts: 860
Join Date: Mar 2004
Default Re: POD-bot back into shape. - 01-04-2004

looks like there is no full waypoint there........like only a few to be able to save it.......it looks like they have no direction........

does it do that on other maps too.....check them all........i have no problems like this

oooooo


  
Re: POD-bot back into shape.
Old
  (#299)
sPlOrYgOn
<-- He did it.
 
sPlOrYgOn's Avatar
 
Status: Offline
Posts: 1,558
Join Date: Jan 2004
Location: Los Angeles, California, USA, North America, Earth, Solar System, Milky Way.
Default Re: POD-bot back into shape. - 01-04-2004

i even checked de_dust and they do the same stuff...
they seem to try to jump out of the map or sumthing..
they all start piling up at a wall on the corner of the map and start jumping...
[edit]
they seem to be trying to go to the sky...
all the bots are all looking up and bumping into walls and such then start jumping..
[/edit]

Last edited by sPlOrYgOn; 01-04-2004 at 06:23..
  
Re: POD-bot back into shape.
Old
  (#300)
SoUlFaThEr
Moderator
 
SoUlFaThEr's Avatar
 
Status: Offline
Posts: 860
Join Date: Mar 2004
Default Re: POD-bot back into shape. - 01-04-2004

i tried cs_waterside.....with t-wrecks waypoint......same stuff

so its the bot.......and dang.......i had to overwrite the last version of it9_9


  
Closed Thread


Currently Active Users Viewing This Thread: 2 (0 members and 2 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
vBulletin Skin developed by: vBStyles.com