04-24-2006, 02:53 PM,
|
|
abs1nth
Senior Member
   
|
Posts: 358
Threads: 5
Joined: Sep 2005
|
|
great progress!
anyhow, i'm having problems when changing display options now:
Thread 0 Crashed:
0 org.vdrift-team.vdrift 0x0008b8f8 TEXTURES::Load(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, bool, int&, int&) + 64 (basic_string.h:585)
1 org.vdrift-team.vdrift 0x0002d20c PARTICLE::Load() + 224 (textures.h:73)
2 org.vdrift-team.vdrift 0x000170e8 ChangeDisplay(int, int, int, bool, bool) + 924 (main.cpp:374)
3 org.vdrift-team.vdrift 0x000174d4 ReloadDisplay() + 816 (basic_string.h:480)
4 org.vdrift-team.vdrift 0x000a8afc VGUI::Gui:  rocessAction(std::basic_string<char, std::char_traits<char>, std::allocator<char> >) + 272 (gui.cpp:2810)
5 org.vdrift-team.vdrift 0x000a97b0 VGUI::Gui::MouseRelease() + 376 (gui.cpp:2608)
|
|
04-24-2006, 03:15 PM,
|
|
thelusiv
Administrator
      
|
Posts: 2,346
Threads: 223
Joined: Jun 2005
|
|
I thought you might find that one! I ran across it last night but like this:
Code: (gdb) bt
#0 0xb7d509cb in std::string::compare () from /usr/lib/libstdc++.so.6
#1 0x08054632 in std::operator==<char, std::char_traits<char>, std::allocator<char> > (__lhs=@0x1c, __rhs=@0xbfedb110)
at basic_string.h:2075
#2 0x0809ab1a in TEXTURES::Load (this=0x8164ca8, newtexfile=
{static npos = 4294967295, _M_dataplus = {<std::allocator<char>> = {<__gnu_cxx::new_allocator<char>> = {<No data fields>}, <No data fields>}, _M_p = 0x8797a5c "hud/timerbox.png"}}, mipmap=false, w=@0xbfedb128, h=@0xbfedb124)
at src/textures.cpp:126
#3 0x080582e9 in TEXTURES::Load (this=0x8164ca8, newtexfile=
{static npos = 4294967295, _M_dataplus = {<std::allocator<char>> = {<__gnu_cxx::new_allocator<char>> = {<No data fields>}, <No data fields>}, _M_p = 0x0}}, mipmap=false) at textures.h:73
#4 0x0809babb in TIMER::Load (this=0x8167f80) at src/timer.cpp:190
#5 0x0804e360 in ChangeDisplay (w=1024, h=768, bpp=16, fullscreen=false, reloadtextures=true) at src/main.cpp:375
#6 0x0804e8f4 in ReloadDisplay () at src/main.cpp:413
#7 0x0811ca68 in VGUI::Gui::ProcessAction (this=0x869b6e0, action=
{static npos = 4294967295, _M_dataplus = {<std::allocator<char>> = {<__gnu_cxx::new_allocator<char>> = {<No data fields>}, <No data fields>}, _M_p = 0x88d6194 "ReloadDisplay"}}) at src/gui/gui.cpp:2808
#8 0x0811c17c in VGUI::Gui::MouseRelease (this=0x869b6e0) at src/gui/gui.cpp:2608
#9 0x08053711 in main (argc=1, argv=0xbfedb4a4) at src/main.cpp:2323
(btw if you compile with -g3 you get all that nice extra debug info.)
So for me, it crashes when TIMER::Load tries to reload its textures after a display change. For you, it looks like i'ts crashing when reloading Particle textures. Why mine makes it through loading particles but yours doesn't is beyond me...but it seems like this is a bug with the TEXTURES class.
|
|
04-24-2006, 06:57 PM,
|
|
thelusiv
Administrator
      
|
Posts: 2,346
Threads: 223
Joined: Jun 2005
|
|
If I insert a line that reads
Code: cout << curnode->texfile << endl;
at src/textures.cpp:126, then recompile and run VDrift, I get lots of printouts every time a texture is loaded, since this function searches through the textures that have already been loaded to see if it should return an already loaded texture id number.
When I go to Options :arrow: Display and change the resolution or something and then press OK, here's what I get:
Code: gui/newfontt3.png
weather/star.png
gui/newfontt3.png
weather/raindrop.tga
weather/star.png
gui/newfontt3.png
weather/clouds.png
weather/raindrop.tga
weather/star.png
gui/newfontt3.png
weather/moon.png
weather/clouds.png
weather/raindrop.tga
weather/star.png
gui/newfontt3.png
smoke/particle0.png
smoke/particle1.png
smoke/particle2.png
smoke/particle3.png
smoke/particle4.png
smoke/particle5.png
UP
Don't ask me what that bit of garbage at the end there is...  it looks like either something else has overwritten the memory here or there is a null pointer (which shouldn't happen...)
|
|
04-29-2006, 05:30 PM,
|
|
abs1nth
Senior Member
   
|
Posts: 358
Threads: 5
Joined: Sep 2005
|
|
thelusiv Wrote:[...] nor does my screen go all white when I change texture sizes
heh, i said nothing about /texture sizes/, it occurs (reproducibly) when changing the *viewing distance* (and nothing else)...
any idea about how i'd start debugging that?
|
|
05-03-2006, 03:47 AM,
|
|
thelusiv
Administrator
      
|
Posts: 2,346
Threads: 223
Joined: Jun 2005
|
|
The Calibrate widget is now mostly done (r987). It draws the way I want it to, minus the text it needs to display. Currently it displays up to three grids, each representing two axes. You can move your joystick axes around and see the cursor move around on the grid. There is no visual cue yet for where the calibration points are set, this needs to be done. It was tricky to do this, but I made it so that if you haven't moved any axes yet, it doesn't display anything. if you move one stick (two axes) it will display only one grid and cursor. If you move another stick it splits into two grids with two cursors, one for each stick.
Screen shots:
before movement
after movement of 1 joystick (2 axes)
after movement of 2 joysticks (4 axes)
Bugs:
* for some reason joystick move events are not generated when the joystick is at 0, so the joystick cursor never actually crosses the grid axes.
* if you mouse over the cancel or ok button the calibrate widget no longer responds to joystick movement
* the gui is not yet aware when a calibration has been done, so it still doesn't allow you to add joystick controls or use the joystick in the menus even though you've calibrated.
Stuff to add:
* a way to change to and calibrate the next joystick(s), if there's more than one
* text displaying which axes are where
* some sort of visual cue showing where the upper and lower boundaries have been set
* in-game joystick calibration menu needs to be added
* it'd be nice if the calibration widget reacted to the joystick deadzone so you can get a feel for how much of the stick range is usable before playing
|
|
05-04-2006, 03:02 AM,
|
|
thelusiv
Administrator
      
|
Posts: 2,346
Threads: 223
Joined: Jun 2005
|
|
In SVN r992 all the "stuff to add" from 2 posts ago is fixed, except for a way to change to and calibrate the next joystick(s). Actually, the way it works now, if there are two joysticks being calibrated at the same time, it will draw one joystick's set of axis grids on top of the other one. I plan to add a wheel widget that lists all available joysticks and switches the calibration grids between then when changed. The only other thing mentioned as needed 2 posts ago was some some visualization or something of the deadzone, but I'm going to hold off on this one, because I realized it's a lot more complex than I thought... :?
Also I fixed the bug that only allowed the first three controls in a controlgrab to be clicked on. Now the clickable area is extended to fit any number of controls.
gui todo list
* replays (record/play)
* text overlay for controlgrab icons
* textbox voodoo magic
* control double-assignments...
* prettier multiple joystick calibration
p.s. no I don't plan to implement car parts yet, I want to wait until the new game world/player system is set up...
|
|
|