![]() |
net.cpp AND what on earth is vector<string>::const_ite - Printable Version +- Forums (https://www.vdrift.net/Forum) +-- Forum: Project (https://www.vdrift.net/Forum/forumdisplay.php?fid=4) +--- Forum: Development (https://www.vdrift.net/Forum/forumdisplay.php?fid=9) +--- Thread: net.cpp AND what on earth is vector<string>::const_ite (/showthread.php?tid=235) Pages:
1
2
|
net.cpp AND what on earth is vector<string>::const_ite - nael - 06-05-2006 Hi, I had a look at the net.cpp module. Is there somewhere in the source I can take a look how these functions are used to write strings to a UDP port? Also, I am not very familiar with c++ classes, what on earth is Code: vector<string>::const_iterator i I added two new command line inputs, both need to be converted to integers. One is the UDP port number, the other is the frequency of writing to the UDP port. Thanks - thelusiv - 06-05-2006 I am pretty unfamiliar with the network code, but when I search through net.cpp and net.h I don't see the line you're referring to in the code block. What you see there is an iterator for a vector of strings. A vector<string> is like an array of strings, but a vector's a little more flexible than an array. An iterator is just a generic interface for looking at objects from a collection in order. So it makes sense to get the next string in the vector by doing ++i and to dereference the iterator to the string itself with *i. So if you have a vector that looks like this ["blah", "bleh", "bluh", "aaargh"] and you do something like Code: vector<string> blah_string; Re: net.cpp AND what on earth is vector<string>::const - thelusiv - 06-05-2006 nael Wrote:I added two new command line inputs, both need to be converted to integers. One is the UDP port number, the other is the frequency of writing to the UDP port.btw, thanks for taking an interest in the network code, that area of the game hasn't gotten much attention lately. The port number is now configurable through the new menus, and config file. The frequency of writing to the UDP port could be easily added to the config file so we won't have to have more command line options... ![]() - joevenzon - 06-05-2006 For more info about vectors and iterators check out the STL documentation http://www.sgi.com/tech/stl/ - thelusiv - 06-06-2006 The sgi docs help, but even I get lost in them sometimes...if you google for what you're looking for it's not hard to find on other sites. Of course there are those "book" things too... - nael - 06-06-2006 Code: vector<string>::const_iterator i That part was in main.cpp. I am still not sure how to convert this type to an integer. Ill check those docs, maybe ill find something. As for the udp, I am doing this for the motion base I am working on (i.e. the flight simulator): I modified the vamos source to calculate accelerations in all 6 dimensions. Those will be sent using udp to another computer that would map those accelerations to movements for the motion base. I did the same for FlightGear- a flight simulator and now I am working on a race car simulation. FlightGear had options that allow the user to split the physics engine from the game and graphics itself thus improving the response time of the motion base. The computer running the physics engine on FlightGear would then write to a udp port and the root FlightGear node would read from it. I need the conversion to integer because I need it to output at 60Hz for example so that the motion base can operate properly. If you know of any library function that would do this, that would be great. Thanks.[/code] - thelusiv - 06-06-2006 The "right way" to convert a string to an integer in C++ would be something like this: Code: string a = "55"; - joevenzon - 06-06-2006 The function sprintf is the way to do this in C and is faster that using string streams -- although both are equally insignificant if you're just doing this a few times a frame. You can pass C++ strings to functions that expect C-style strings (arrays of chars) by using the .c_str() method. More info on C++ strings: http://www.cppreference.com/cppstring/index.html - nael - 06-07-2006 Thanks guys, that was helpful. In vamosworld.cc, whats the difference between the functions update and physupdate? Which one updates every frame? - joevenzon - 06-07-2006 VAMOSWORLD::Update is called by the Update in main every graphic frame (dependent on current fps) and it calls VAMOSWORLD: ![]() - matthew_i - 06-11-2006 nael Wrote: I added that in. It is just looping through the command line arguments which have been converted to an std::vector<std: ![]() Just me trying to clean up the code. Also for comverting from one type to another there is boost::lexical_cast. boost::lexical_cast<int>("3") would return 3. I think it uses stringstreams under the hood. We of course, are not using any boost libs, but I could write us something very similar. - nael - 06-12-2006 Code: //----------Nael2:Begin check for acceleration update I added that part in VAMOSWORLD::Update I also added the following in RigidBody: ![]() Code: //-----------Begin Nael code to calculate accelerations The .h files were updated to work with these changes and it compiles fine. After running the following two lines I added in VAMOSWORLD::Update Code: cout<<"Accel="<<accel_sum<<endl<<"Rotation="<<rotation_sum<<endl; just write zeros meaning the accelerations in RigidBody: ![]() From my understanding, propagate() updates the center of mass every frame, correct? The strange thing is when I did this with the source code from the last version release, it worked and updated properly - but I had a problem with the car bouncing up and down - apparently because of issues with gcc4 - So, I got gcc 3.3 and the latest svn checkout and now thats fixed but the modifications I made dont update every 'x' frames anymore and I just get that line of zeros...If I somehow put my code in incorrect functions pls correct me. Thanks guys, and I hope I did not lose anybody with my explanation. - joevenzon - 06-12-2006 It looks to me like you've got a few problems. First of all, you're instantiating local variables accel_sum and rotation_sum (which will be set to zero upon creation) right before you either print out their values or increment them. Right after that, they'll be destroyed and the next time through the loop you'll create new local variables accel_sum and rotation_sum (which will be set to zero upon creation), etc. I suggest reading up on the way scope works in C++. Here's a random link from google: http://cplus.about.com/od/beginnerctutorial/l/aa101902a.htm Also, "rotation_sum=accel_sum+..." should be "rotation_sum=rotation_sum+..." - nael - 06-13-2006 woops, that was something I forgot to change. Previously I was printing out accelerations every frame, when I added the frequency stuff I added the declarations globally and forgot to remove them locally..silly me. its working now. - thelusiv - 06-13-2006 So, your work is just to get your sim to move the chair around, right? Does your sim have a single monitor or more than one? I work in a driving sim that uses 4 screens (3 front, 1 rear) and the shell of a real car; sadly it's not a single computer with several video cards, but several computers that pass car position data across the network to each other and each one projects a single view of a certain camera angle. How is your sim set up, does it have multiple views and if so how is it done? |