.:: 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 > RealBot > General Forum
General Forum Follow progress, give suggestions, reply to bug report threads here.

Reply
 
Thread Tools
Wip 10?
Old
  (#1)
skirecs
Guest
 
Status:
Posts: n/a
Default Wip 10? - 22-04-2004

Don't mean to be pushy, but I am eager for WIP 10, so any hints when it may release?
  
Reply With Quote
Re: Wip 10?
Old
  (#2)
ParkerLewis
Member
 
Status: Offline
Posts: 17
Join Date: Dec 2003
Default Re: Wip 10? - 22-04-2004

heads : ''soon''
tails : ''when it's done''
  
Reply With Quote
Re: Wip 10?
Old
  (#3)
rex
Member
 
rex's Avatar
 
Status: Offline
Posts: 64
Join Date: Feb 2004
Default Re: Wip 10? - 22-04-2004

think it will be within two weeks
before Stefan goes on holidays
i'm going for tails
  
Reply With Quote
Re: Wip 10?
Old
  (#4)
stefanhendriks
RealBot Author
 
stefanhendriks's Avatar
 
Status: Offline
Posts: 3,088
Join Date: Nov 2003
Location: Netherlands
Default Re: Wip 10? - 22-04-2004

i am not gonna say a date here


Author of RealBot, "Arrakis" and "Dune 2 - The Maker" | co-Founder of Bots-United | Fundynamic | Blog | E-Mail me
  
Reply With Quote
Re: Wip 10?
Old
  (#5)
davek
Member
 
davek's Avatar
 
Status: Offline
Posts: 58
Join Date: Dec 2003
Location: san diego, ca
Default Re: Wip 10? - 22-04-2004

:'(


4 chars
  
Reply With Quote
Re: Wip 10?
Old
  (#6)
Onno Kreuzinger
aka: memed / Server Admin
 
Onno Kreuzinger's Avatar
 
Status: Offline
Posts: 705
Join Date: Jan 2004
Location: germany
Default Re: Wip 10? - 22-04-2004

well i tried the cvs version ,but it looks like the linux compilers do not like your coding style
Code:
    bot_client.cpp: In function `void BotClient_CS_SayText(void*, int)':
    bot_client.cpp:708: name lookup of `c' changed for new ISO `for' scoping
    bot_client.cpp:697:   using obsolete binding at `c'
    make: *** [bot_client.o] Error 1
cheers

/edit
b.t.w. both compilers (older 2.95 and newer 3.2 had this error)

/edit 2
ok, i fixed these small issues and added the new objects to the makefile, but now i get this error:
Code:
  gcc-2.95.3 -Dstricmp=strcasecmp -Dstrcmpi=strcasecmp -march=i586 -O2 -w -I"/usr/src/hl_bot_build/metamod-
  1.17/metamod" -I"/usr/src/hl_bot_build/hlsdk-2.3/multiplayer/common" -I"/usr/src/hl_bot_build/hlsdk-2.3/m
  ultiplayer/dlls" -I"/usr/src/hl_bot_build/hlsdk-2.3/multiplayer/engine" -I"/usr/src/hl_bot_build/hlsdk-2.
  3/multiplayer/pm_shared" -c ChatEngine.cpp -o ChatEngine.o
  ChatEngine.cpp: In method `void cChatEngine::set_sentence(char *, char *)':
  ChatEngine.cpp:435: implicit declaration of function `int _strupr(...)'
  make: *** [ChatEngine.o] Error 1
and i ask for permission to have write access to the realbot cvs, to check in these small changes and perhaps later a small linux readme or two


sunny morning view from my balcony:

see our WIKI!
see our filebase!

Last edited by Onno Kreuzinger; 23-04-2004 at 00:14..
  
Reply With Quote
Re: Wip 10?
Old
  (#7)
stefanhendriks
RealBot Author
 
stefanhendriks's Avatar
 
Status: Offline
Posts: 3,088
Join Date: Nov 2003
Location: Netherlands
Default Re: Wip 10? - 23-04-2004

Well, i did not try it on Linux. Thats always a later issue. Btw, the botsaytext could have one of those bugs like:

for (int i = 0; ...)

should be:

int i;
for (i=0; ...)

btw , access granted


Author of RealBot, "Arrakis" and "Dune 2 - The Maker" | co-Founder of Bots-United | Fundynamic | Blog | E-Mail me
  
Reply With Quote
Re: Wip 10?
Old
  (#8)
Onno Kreuzinger
aka: memed / Server Admin
 
Onno Kreuzinger's Avatar
 
Status: Offline
Posts: 705
Join Date: Jan 2004
Location: germany
Default Re: Wip 10? - 23-04-2004

yeah google told me too, i have fixed those errors, but the last one still remains :
ChatEngine.cpp:435: implicit declaration of function `int _strupr(...)

/btw i commited my changes


sunny morning view from my balcony:

see our WIKI!
see our filebase!

Last edited by Onno Kreuzinger; 23-04-2004 at 01:12..
  
Reply With Quote
Re: Wip 10?
Old
  (#9)
stefanhendriks
RealBot Author
 
stefanhendriks's Avatar
 
Status: Offline
Posts: 3,088
Join Date: Nov 2003
Location: Netherlands
Default Re: Wip 10? - 23-04-2004

hmm, well thats to make all things upper case. I bet in linux they do not know that function like that. Perhaps you can find anything on google about that. I will look into that later. Gotta go for school


Author of RealBot, "Arrakis" and "Dune 2 - The Maker" | co-Founder of Bots-United | Fundynamic | Blog | E-Mail me
  
Reply With Quote
Re: Wip 10?
Old
  (#10)
Onno Kreuzinger
aka: memed / Server Admin
 
Onno Kreuzinger's Avatar
 
Status: Offline
Posts: 705
Join Date: Jan 2004
Location: germany
Default Re: Wip 10? - 23-04-2004

*g* well i did find out what to change, i'st rather that this function is MS specific, in ISO C++ there is no function doing toupper for cstring's, so i used ifdefs and the transform function.
eg: transform (str22.begin(),str22.end(), str22.begin(), tolower);
instead of: _strupr(str22);
compiling w/o errors on linux and commited to cvs


sunny morning view from my balcony:

see our WIKI!
see our filebase!

Last edited by Onno Kreuzinger; 23-04-2004 at 13:44..
  
Reply With Quote
Reply


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

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