Scrolling Game Development Kit Forum
SGDK Version 2 => Projects => Topic started by: bluemonkmn on 2008-03-29, 09:21:10 AM
-
I've upgraded and compiled the TVSGDK2 project using the OpenGL implementation of SGDK2. You can take a look if you like to see how it turned out -- maybe find out if the OpenGL projects will work on some environments where DirectX didn't. Note, since full screen isn't implemented yet, this project will run in a tiny little window :).
http://sgdk2.enigmadream.com/support/TVSGDK2.zip (http://sgdk2.enigmadream.com/support/TVSGDK2.zip)
-
so, when will the the next version/upgrade of sgdk2 come?
-
Okay... just curious, what the heck, man? I just ran it on a 32MB graphics card on a laptop. For reference, I ran the old version, which got about 50 FPS.
Then I played this version. And I got a factor of 10 speedup. 500 FPS. 500.
Makes it kinda unplayable, but it's impressive, I guess. I forget, was the old version artificially slowed down, or... what the heck?
Perhaps the Framerate limiter should be a built-in object from now on?
-
yes the framerate limiter seems to be absolutely necessary now. xD
hmm I cannot even run the game.
(http://img136.imageshack.us/img136/4834/capturelz9.jpg)
:(
-
Perhaps the Framerate limiter should be a built-in object from now on?
i would acclaim that, though it gave me an error. have to check that.
-
Frame rate limiter; right. I'll add that while I'm waiting for the OpenTK author to finish full screen and text word wrap support. That's mostly what I'm waiting for before I can release 2.1. I also have a list of other things to work on that I can add while I wait for the OpenTK author to finish OpenTK features.
I wonder if this program can't run on Vista. Do all the people having problems run Vista? Do all the people running Vista have this problem? What version of opengl.dll do the people with problems have in the Windows\System32 directory?
I wasn't counting on a performance improvement quite that big, but it'd be cool if that's all it was -- if OpenGL performed 10x better than DirectX :). But I suspect it has something to do with VSync implementation being different in the OpenGL drivers for a particular card versus the DirectX drivers for the card... or something like that. I don't dare to hope that OpenGL actually performs that much better than DirectX.
-
i dont have a opengl.dll at all in that folder.
i have a opengl32.dll tho... which is version 6.0.6000.16386
-
Sorry, I meant opengl32.dll. The version I have is 5.1.2600.2180.
-
What video card do you have, and are your drivers current, Jam0864?
-
ATI Radeon Xpress 1150, and I updated the drivers to 8.3 just under a week ago.
-
I'm reviewing the problem with the author of OpenTK, and it appears my code has lots of invisible problems so I'll have to investigate that a bit. I made the problems visible by explicitly checking for errors after every OpenTK call, so now I just need to narrow that down. Hopefully I can find and fix that and then it will work on your system.
-
woo! xD
-
There's a new version at http://sgdk2.enigmadream.com/support/TVSGDK2b.zip (http://sgdk2.enigmadream.com/support/TVSGDK2b.zip). Let me know how that works.
-
Hey, just tried it on an on-campus computer, and when I run it, I get black for the menu, which is good, but instead of text, I get two large white horizontal rectangles. Once I start the game, the whole screen is white.
Graphics card:
Intel(R) 82865G Graphics Controller
Driver:
ialmrnt5.dll v6.14.0010.4299
DirectX 9.0c
OpenGL:
v5.1.2600.2180
-
first time i opened it it was just a window, with white in the middle. I let that go for a minute but it wasn't doing anything so I clicked close, and then it said its not responding and stuff. then when I tried it again it had the same error as before.
-
I'm guessing that this is failing on systems that simply don't have the necessary hardware support. I need to add more checking of hardware to SGDK 2.1 still, but I suspect (hope) that these systems won't be able to run any SGDK2 projects if they can't run this one. Care to help me verify that by running some older DirectX projects?
-
exactly how much hardware support is required? a super computer? average computer? s***ty computer?
Well I am trying it on my laptop, which has the ATI Radeon Xpress 1150.
It is quite a capable graphics card most of the time. (fails to run bioshock due to not having pixel shader 3.0, but it can run almost any new game thrown at it with medium settings.)
I will do anything if it helps fix the problem. :)
edit: btw, if by older directx projects, you mean version 2.0 projects, yes I can run them, I have played a few on this computer.
-
Perhaps some bad news: The first version you posted worked fine, or fine as far as I could tell, on my computer, but the new version is buggy as all get out. Sprites randomly flash and disappear, and the metalman at one point turned into a different graphic, I think.
It may have been doing that on the old version as well, but I just couldn't tell due to the framerate.
-
Durnurd (or anybody), I posted the C# Express 2008 project at http://sgdk2.enigmadream.com/support/TVSGDK2Src.zip (http://sgdk2.enigmadream.com/support/TVSGDK2Src.zip) if you want to help investigate. I'm at a loss. Maybe I'm using some feature not supported on your version of OpenGL or maybe some errors occur in your environment that don't occur in mine. I added a few CheckError calls, so if the project compiles and runs, maybe some errors will be reported that weren't reported before. I can compile and post a version with some more error checking if anyone else wants to check, but I've been on the computer all day so I want to get off now.
-
Does http://sgdk2.enigmadream.com/support/TVSGDK2c.zip (http://sgdk2.enigmadream.com/support/TVSGDK2c.zip) give any different results?
-
same error.
I will try to get one of my mates with vista to try it. Then at least we'll know if that's hte problem.
-
ohhno, my friends pc will run it.
(http://img107.imageshack.us/img107/6302/83783357vx3.jpg)
He has the same opengl32.dll version as me. (6.0.6000.16386)
any sorta thing i can do to fix this...? D:
EDIT: Googled System.AccessViolationException, found a few things about it...
"An access violation occurs in unmanaged or unsafe code when the code attempts to read or write to memory that has not been allocated, or to which it does not have access. This usually occurs because a pointer has a bad value. Not all reads or writes through bad pointers lead to access violations, so an access violation usually indicates that several reads or writes have occurred through bad pointers, and that memory might be corrupted. Thus, access violations almost always indicate serious programming errors. In the .NET Framework version 2.0, an AccessViolationException clearly identifies these serious errors.
In programs consisting entirely of verifiable managed code, all references are either valid or null, and access violations are impossible. An AccessViolationException occurs only when verifiable managed code interacts with unmanaged code or with unsafe managed code.
This exception is new in the .NET Framework version 2.0. In earlier versions of the .NET Framework, an access violation in unmanaged code or unsafe managed code is represented by a NullReferenceException in managed code. A NullReferenceException is also thrown when a null reference is dereferenced in verifiable managed code, an occurrence that does not involve data corruption, and there is no way to distinguish between the two situations in versions 1.0 or 1.1.
Administrators can allow selected applications to revert to the behavior of the .NET Framework version 1.1. Place the following line in the <runtime> Element section of the configuration file for the application:
Copy Code
<legacyNullReferenceExceptionPolicy enabled = "1"/>
I've seen this stack trace on this forum a few times, GdipDrawLineI() is prone to cause an access violation.
I beleive I have a fix for this. Double-buffer your DataGridView.
Now, annoyingly, the DoubleBuffered attribute is protected, so you have to derive from DataGridView & set it yourself. Something like this should work:
class DBDataGridView : System.Windows.Forms.DataGridView
{
public DBDataGridView() { DoubleBuffered = true; }
}
http://notgartner.wordpress.com/2005/05/26/a-class-a-day-systemaccessviolationexception/
I encountered the same problem (AccessViolationExceptions on an
IOCompletion threadpool thread), and tracked it down to Panda Antivirus
software, which had an access violation inside pavlsp.dll
The "culprit" turned out to be my anti virus scanner (NOD32). This post - http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx?feedbackid=d86baf6d-9dcb-408f-8fd8-efebc237edc8 - got me to try and exclude the server exe from being scanned. Having done so the server no longer crashes.
I now believe it must be a bug in the .NET 2.0 remoting framework that doesn't handle exceptions that may be thrown in the unmanaged socket layer of Windows. Reading the stack trace, it seems a callback from an unmanaged, socket-related, dll back to managed code goes wrong.
I'm filing a bug report on this one...
After a couple of people blaming firewalls and antivirus', I will disable it all and see if there's a difference. I'll let you know the results. :)
EDIT2: Didn't help. Later on I might try it in safe mode... (has helped before... it hopefully will again :D)
EDIT3: Different error while in safe mode.
(http://img107.imageshack.us/img107/4821/30703299tv7.jpg)
-
Thanks for the info. I will check back with the OpenTK author. Maybe we will have you run some of the plain OpenTK text programs to see how they run. It's not surprising that you get a message about requiring OpenGL 1.5 when running in safe mode. I think no hardware acceleration is available in safe mode. But that does suggest that the program got far enough to pass minimum requirements when you weren't in safe mode, which means the problem is something else, and not a lack of hardware requirements.
-
Here's something to try. Download OpenTK from http://www.opentk.com/ (http://www.opentk.com/) and look in the folder Binaries\net\Examples and run Examples.exe. See how well the various examples in there run in your environment.
-
At least on my system version c works perfectly, except at the end when the message pops up, the text overflows the box to the right, and the box is too tall, but that's probably due to the text not done in OpenTK. On my friend's computer, it complained about not having OpenGL 1.5, so maybe that should be a link on the main page at some point for download.
-
this sucks, the net examples come out with that same system access violation error i got with sgdk2.
the other examples run... :(
-
At least on my system version c works perfectly, except at the end when the message pops up, the text overflows the box to the right, and the box is too tall, but that's probably due to the text not done in OpenTK. On my friend's computer, it complained about not having OpenGL 1.5, so maybe that should be a link on the main page at some point for download.
I don't think OpenGL 1.5 is a software version. I think it's a feature/specification level to which the hardware/driver conforms. I'm not sure about that, though. I'm just calling GL.SupportsExtension("VERSION_1_5") and failing when that returns false. I'm not sure what it means when that returns false. It was just a suggestion from the folks at OpenTK.
this sucks, the net examples come out with that same system access violation error i got with sgdk2.
the other examples run... :(
I posted about the simplest .NET 2.0 test application possible at http://sgdk2.enigmadream.com/support/DotNet2Test.zip (http://sgdk2.enigmadream.com/support/DotNet2Test.zip) if you want to try to run that just to test .NET 2.0 on your Vista installation.
-
I don't think OpenGL 1.5 is a software version. I think it's a feature/specification level to which the hardware/driver conforms. I'm not sure about that, though. I'm just calling GL.SupportsExtension("VERSION_1_5") and failing when that returns false. I'm not sure what it means when that returns false. It was just a suggestion from the folks at OpenTK.
Well, the DirectX version of any SGDK2 game worked on that computer, so hopefully this 1.5 thing is not a real requirement.
-
I posted about the simplest .NET 2.0 test application possible at http://sgdk2.enigmadream.com/support/DotNet2Test.zip if you want to try to run that just to test .NET 2.0 on your Vista installation.
Hello World!
EDIT://oh btw, it became apparent that my graphics drivers were not loaded in safe mode.
The highest resolution I could achieve was 800x600 and games ran really, really slow... like REALLY slow.
-
OK, I updated the program to not require version 1.5 and to output more debug info. Now it will try to create a log file in the directory where the program is (so make sure if you're running on Vista that the program is in a directory that you and the program are allowed to write to). This debug info comes from OpenTK. If you can get the info about what OpenTK is doing I can send it to the OpenTK development folks and see if they have any tips.
http://sgdk2.enigmadream.com/support/TVSGDK2d.zip (http://sgdk2.enigmadream.com/support/TVSGDK2d.zip)
-
On the same computer that didn't work with 1.5, I get the error "GL_ARB_texture_rectangle must be supported" while running CheckRequirements(). I also get a Null Reference Exception at Project.tvl.WriteLine which presumably is just for writing the debug log or something. For what I do have in the debug log, see below.
I removed the throwing of the exception and recompiled, and was able to view the menu map. I had to disable audio because I couldn't figure out how to use the .bin files to embed the audio into the exe (this was not on a computer with a C# IDE), so it errored out on the fmod call, but the program did run and display the menu map, and then worked the same way I saw it on my other computer, running at about 500 FPS on Level 1. I didn't know how to compile in debug mode, so I can't tell you the exact number, but it was far too fast to be playable.
In any case, GL_ARB_texture_rectangle does not appear to be a requirement. At least, it did not show up in this project. This may be due to the fact that all of the graphic sheets are a power-of-two size.
DisplayDevice 0 (primary) supports 41 resolutions.
320x200x8@60Hz
320x200x16@60Hz
320x200x32@60Hz
320x240x8@60Hz
320x240x16@60Hz
320x240x32@60Hz
400x300x8@60Hz
400x300x16@60Hz
400x300x32@60Hz
512x384x8@60Hz
512x384x16@60Hz
512x384x32@60Hz
640x350x8@60Hz
640x350x16@60Hz
640x350x32@60Hz
640x400x8@60Hz
640x400x16@60Hz
640x400x32@60Hz
640x480x8@60Hz
640x480x16@60Hz
640x480x32@60Hz
720x480x8@60Hz
720x480x16@60Hz
720x480x32@60Hz
720x576x8@60Hz
720x576x16@60Hz
720x576x32@60Hz
800x600x8@60Hz
800x600x16@60Hz
800x600x32@60Hz
848x480x8@60Hz
848x480x16@60Hz
848x480x32@60Hz
1024x768x8@60Hz
1024x768x16@60Hz
1024x768x32@60Hz
1280x800x8@60Hz
1280x800x16@60Hz
>> 1280x800x32@60Hz <<
640x480x4@1Hz
800x600x4@1Hz
Device context: 503385581
Selecting pixel format... Device context: 503385581
Selecting pixel format... Device context: 503385581
Selecting pixel format... Device context: 503385581
Selecting pixel format... Device context: 503385581
Selecting pixel format... Device context: 503385581
Selecting pixel format... Device context: 503385581
Selecting pixel format... Creating GraphicsContext.
GraphicsMode: Index: 3, Color: 32 (8888), Depth: 24, Stencil: False, Samples: 0, Accum: 0 (0000), Buffers: 2, Stereo: False
IWindowInfo: Windows.WindowInfo: Handle 263484, Parent (null)
Loaded opengl32.dll: 1590689792
OpenGL will be bound to handle: 263484
Setting pixel format...
3
Creating render context... done! (id: 65536)
Load extensions for OpenTK.Platform.Windows.Wgl... 43 extensions loaded in 79 ms.
Load extensions for OpenTK.Graphics.OpenGL.GL... 913 extensions loaded in 629 ms.
Load extensions for OpenTK.Graphics.OpenGL.Glu... 58 extensions loaded in 16 ms.
Extension "
1.3.3842 WinXP Release
gl_arb_multitexture
gl_arb_point_parameters
gl_arb_texture_border_clamp
gl_arb_texture_compression
gl_arb_texture_cube_map
gl_arb_texture_env_add
gl_arb_texture_env_combine
gl_arb_texture_env_crossbar
gl_arb_texture_env_dot3
gl_arb_texture_mirrored_repeat
gl_arb_transpose_matrix
gl_arb_vertex_blend
gl_arb_vertex_buffer_object
gl_arb_vertex_program
gl_arb_window_pos
gl_ati_element_array
gl_ati_envmap_bumpmap
gl_ati_fragment_shader
gl_ati_map_object_buffer
gl_ati_texture_env_combine3
gl_ati_texture_mirror_once
gl_ati_vertex_array_object
gl_ati_vertex_attrib_array_object
gl_ati_vertex_streams
gl_atix_texture_env_combine3
gl_atix_texture_env_route
gl_atix_vertex_shader_output_point_size
gl_ext_abgr
gl_ext_bgra
gl_ext_blend_color
gl_ext_blend_func_separate
gl_ext_blend_minmax
gl_ext_blend_subtract
gl_ext_clip_volume_hint
gl_ext_compiled_vertex_array
gl_ext_draw_range_elements
gl_ext_fog_coord
gl_ext_multi_draw_arrays
gl_ext_packed_pixels
gl_ext_point_parameters
gl_ext_rescale_normal
gl_ext_secondary_color
gl_ext_separate_specular_color
gl_ext_stencil_wrap
gl_ext_texgen_reflection
gl_ext_texture_compression_s3tc
gl_ext_texture_cube_map
gl_ext_texture_edge_clamp
gl_ext_texture_env_add
gl_ext_texture_env_combine
gl_ext_texture_env_dot3
gl_ext_texture_filter_anisotropic
gl_ext_texture_lod_bias
gl_ext_texture_object
gl_ext_texture_rectangle
gl_ext_texture3d
gl_ext_vertex_array
gl_ext_vertex_shader
gl_hp_occlusion_test
gl_nv_blend_square
gl_nv_occlusion_query
gl_nv_texgen_reflection
gl_s3_s3tc
gl_sgi_color_matrix
gl_sgis_generate_mipmap
gl_sgis_multitexture
gl_sgis_texture_border_clamp
gl_sgis_texture_edge_clamp
gl_sgis_texture_lod
gl_sun_multi_draw_arrays
gl_version_1_1
gl_version_1_2
gl_version_1_3
gl_win_swap_hint
wgl_ext_extensions_string
wgl_ext_swap_control
-
The good news here is that it runs just fine on my own computer. I noticed that sounds don't play when hitting surfaces any more, but maybe you took that out on purpose because of the annoying thing when it hits the edge of the map. But for all intents and purposes, it works just fine and it runs at a reasonable rate because I have force_vsync turned on at my driver level.
-
well this time it opens what looks like a cmd, some text comes on, more text... then it says you are running in debug mode, unexpected runtime conditions... (im sure u know that message :)) click ok, then it puts some more stuff into the cmd, then it comes up with.
(http://img147.imageshack.us/img147/9271/20863677bx4.jpg)
then when i close that, it comes up with the ol' system access violation error I was getting before.
EDIT:// btw, the text in the scrollable window, in the screenshot is...
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.NullReferenceException: Object reference not set to an instance of an object.
at Project.tvl.WriteLine(String message)
at System.Diagnostics.TraceInternal.WriteLine(String message)
at System.Diagnostics.Debug.WriteLine(String message)
at OpenTK.Graphics.GraphicsContext.Dispose(Boolean manual)
at OpenTK.Graphics.GraphicsContext.Dispose()
at OpenTK.GLControl.OnHandleDestroyed(EventArgs e)
at System.Windows.Forms.Control.WmDestroy(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.UserControl.WndProc(Message& m)
at Display.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** Loaded Assemblies **************
mscorlib
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
TVSGDK2
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Users/User/Desktop/TVSGDK2d/TVSGDK2.exe
----------------------------------------
System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Windows.Forms
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Configuration
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
OpenTK
Assembly Version: 0.9.1.0
Win32 Version: 0.9.1.0
CodeBase: file:///C:/Users/User/Desktop/TVSGDK2d/OpenTK.DLL
----------------------------------------
OpenTK.Utilities
Assembly Version: 0.0.0.0
Win32 Version: 0.0.0.0
CodeBase: file:///C:/Users/User/Desktop/TVSGDK2d/OpenTK.Utilities.DLL
----------------------------------------
************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.
For example:
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>
When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.
-
That error message is not too useful. The one to post would be the debug log file created in the directory the executable is in. It would have the same text as the command window.
-
oh ya sorry forgot about that one >.>
DisplayDevice 0 (primary) supports 21 resolutions.
640x480x8@61Hz
640x480x16@61Hz
640x480x32@61Hz
720x480x8@61Hz
720x480x16@61Hz
720x480x32@61Hz
800x600x8@61Hz
800x600x16@61Hz
800x600x32@61Hz
848x480x8@61Hz
848x480x16@61Hz
848x480x32@61Hz
1024x768x8@61Hz
1024x768x16@61Hz
1024x768x32@61Hz
1280x768x8@61Hz
1280x768x16@61Hz
1280x768x32@61Hz
1280x800x8@61Hz
1280x800x16@61Hz
>> 1280x800x32@61Hz <<
Device context: 704713100
Selecting pixel format... Device context: 704713100
Selecting pixel format... Device context: 704713100
Selecting pixel format... Device context: 704713100
Selecting pixel format... Device context: 704713100
Selecting pixel format... Device context: 704713100
Selecting pixel format... Device context: 704713100
Selecting pixel format... Creating GraphicsContext.
GraphicsMode: Index: 2, Color: 32 (8888), Depth: 24, Stencil: False, Samples: 0, Accum: 0 (0000), Buffers: 2, Stereo: False
IWindowInfo: Windows.WindowInfo: Handle 1835978, Parent (null)
Loaded opengl32.dll: 1808859136
OpenGL will be bound to handle: 1835978
Setting pixel format...
2
Creating render context... done! (id: 65536)
Load extensions for OpenTK.Platform.Windows.Wgl... 47 extensions loaded in 25 ms.
Load extensions for OpenTK.Graphics.OpenGL.GL... 912 extensions loaded in 352 ms.
Load extensions for OpenTK.Graphics.OpenGL.Glu... 58 extensions loaded in 16 ms.
Extension "
2.0.6956 Release
gl_arb_depth_texture
gl_arb_draw_buffers
gl_arb_fragment_program
gl_arb_fragment_shader
gl_arb_multisample
gl_arb_multitexture
gl_arb_occlusion_query
gl_arb_point_parameters
gl_arb_point_sprite
gl_arb_shader_objects
gl_arb_shading_language_100
gl_arb_shadow
gl_arb_shadow_ambient
gl_arb_texture_border_clamp
gl_arb_texture_compression
gl_arb_texture_cube_map
gl_arb_texture_env_add
gl_arb_texture_env_combine
gl_arb_texture_env_crossbar
gl_arb_texture_env_dot3
gl_arb_texture_float
gl_arb_texture_mirrored_repeat
gl_arb_texture_rectangle
gl_arb_transpose_matrix
gl_arb_vertex_buffer_object
gl_arb_vertex_program
gl_arb_vertex_shader
gl_arb_window_pos
gl_ati_draw_buffers
gl_ati_envmap_bumpmap
gl_ati_fragment_shader
gl_ati_meminfo
gl_ati_separate_stencil
gl_ati_texture_env_combine3
gl_ati_texture_float
gl_ext_bgra
gl_ext_blend_color
gl_ext_blend_func_separate
gl_ext_blend_minmax
gl_ext_blend_subtract
gl_ext_compiled_vertex_array
gl_ext_copy_texture
gl_ext_draw_range_elements
gl_ext_fog_coord
gl_ext_framebuffer_object
gl_ext_gpu_program_parameters
gl_ext_multi_draw_arrays
gl_ext_packed_depth_stencil
gl_ext_packed_pixels
gl_ext_point_parameters
gl_ext_rescale_normal
gl_ext_secondary_color
gl_ext_separate_specular_color
gl_ext_shadow_funcs
gl_ext_stencil_wrap
gl_ext_subtexture
gl_ext_texgen_reflection
gl_ext_texture_compression_s3tc
gl_ext_texture_cube_map
gl_ext_texture_edge_clamp
gl_ext_texture_env_add
gl_ext_texture_env_combine
gl_ext_texture_env_dot3
gl_ext_texture_filter_anisotropic
gl_ext_texture_lod_bias
gl_ext_texture_mirror_clamp
gl_ext_texture_object
gl_ext_texture_rectangle
gl_ext_texture3d
gl_ext_vertex_array
gl_ktx_buffer_region
gl_nv_blend_square
gl_nv_texgen_reflection
gl_sgis_generate_mipmap
gl_sgis_texture_edge_clamp
gl_sgis_texture_lod
gl_version_1_1
gl_version_1_2
gl_version_1_3
gl_version_1_4
gl_version_1_5
gl_version_2_0
gl_win_swap_hint
wgl_ext_swap_control
-
I think I updated it so it won't have the NullReferenceException, but it probably will still have the AccessViolationException:
http://sgdk2.enigmadream.com/support/TVSGDK2e.zip (http://sgdk2.enigmadream.com/support/TVSGDK2e.zip)
It might log more information about the real error, though.
Also, durnurd, I never did anything to the sound effects. When I play I hear the footsteps when I run, and when I land on a platform, but not when I run into something. Maybe I used an old version or something.
-
DisplayDevice 0 (primary) supports 21 resolutions.
640x480x8@61Hz
640x480x16@61Hz
640x480x32@61Hz
720x480x8@61Hz
720x480x16@61Hz
720x480x32@61Hz
800x600x8@61Hz
800x600x16@61Hz
800x600x32@61Hz
848x480x8@61Hz
848x480x16@61Hz
848x480x32@61Hz
1024x768x8@61Hz
1024x768x16@61Hz
1024x768x32@61Hz
1280x768x8@61Hz
1280x768x16@61Hz
1280x768x32@61Hz
1280x800x8@61Hz
1280x800x16@61Hz
>> 1280x800x32@61Hz <<
Device context: 486607534
Selecting pixel format... Device context: 486607534
Selecting pixel format... Device context: 486607534
Selecting pixel format... Device context: 486607534
Selecting pixel format... Device context: 486607534
Selecting pixel format... Device context: 486607534
Selecting pixel format... Device context: 486607534
Selecting pixel format... Creating GraphicsContext.
GraphicsMode: Index: 2, Color: 32 (8888), Depth: 24, Stencil: False, Samples: 0, Accum: 0 (0000), Buffers: 2, Stereo: False
IWindowInfo: Windows.WindowInfo: Handle 3605792, Parent (null)
Loaded opengl32.dll: 1804926976
OpenGL will be bound to handle: 3605792
Setting pixel format...
2
Creating render context... done! (id: 65536)
Load extensions for OpenTK.Platform.Windows.Wgl... 47 extensions loaded in 22 ms.
Load extensions for OpenTK.Graphics.OpenGL.GL... 912 extensions loaded in 311 ms.
Load extensions for OpenTK.Graphics.OpenGL.Glu... 58 extensions loaded in 15 ms.
Extension "
2.0.6956 Release
gl_arb_depth_texture
gl_arb_draw_buffers
gl_arb_fragment_program
gl_arb_fragment_shader
gl_arb_multisample
gl_arb_multitexture
gl_arb_occlusion_query
gl_arb_point_parameters
gl_arb_point_sprite
gl_arb_shader_objects
gl_arb_shading_language_100
gl_arb_shadow
gl_arb_shadow_ambient
gl_arb_texture_border_clamp
gl_arb_texture_compression
gl_arb_texture_cube_map
gl_arb_texture_env_add
gl_arb_texture_env_combine
gl_arb_texture_env_crossbar
gl_arb_texture_env_dot3
gl_arb_texture_float
gl_arb_texture_mirrored_repeat
gl_arb_texture_rectangle
gl_arb_transpose_matrix
gl_arb_vertex_buffer_object
gl_arb_vertex_program
gl_arb_vertex_shader
gl_arb_window_pos
gl_ati_draw_buffers
gl_ati_envmap_bumpmap
gl_ati_fragment_shader
gl_ati_meminfo
gl_ati_separate_stencil
gl_ati_texture_env_combine3
gl_ati_texture_float
gl_ext_bgra
gl_ext_blend_color
gl_ext_blend_func_separate
gl_ext_blend_minmax
gl_ext_blend_subtract
gl_ext_compiled_vertex_array
gl_ext_copy_texture
gl_ext_draw_range_elements
gl_ext_fog_coord
gl_ext_framebuffer_object
gl_ext_gpu_program_parameters
gl_ext_multi_draw_arrays
gl_ext_packed_depth_stencil
gl_ext_packed_pixels
gl_ext_point_parameters
gl_ext_rescale_normal
gl_ext_secondary_color
gl_ext_separate_specular_color
gl_ext_shadow_funcs
gl_ext_stencil_wrap
gl_ext_subtexture
gl_ext_texgen_reflection
gl_ext_texture_compression_s3tc
gl_ext_texture_cube_map
gl_ext_texture_edge_clamp
gl_ext_texture_env_add
gl_ext_texture_env_combine
gl_ext_texture_env_dot3
gl_ext_texture_filter_anisotropic
gl_ext_texture_lod_bias
gl_ext_texture_mirror_clamp
gl_ext_texture_object
gl_ext_texture_rectangle
gl_ext_texture3d
gl_ext_vertex_array
gl_ktx_buffer_region
gl_nv_blend_square
gl_nv_texgen_reflection
gl_sgis_generate_mipmap
gl_sgis_texture_edge_clamp
gl_sgis_texture_lod
gl_version_1_1
gl_version_1_2
gl_version_1_3
gl_version_1_4
gl_version_1_5
gl_version_2_0
gl_win_swap_hint
wgl_ext_swap_control
System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
at OpenTK.Graphics.OpenGL.GL.Imports.Begin(BeginMode mode)
at OpenTK.Graphics.OpenGL.GL.Begin(BeginMode mode)
at Display.DrawFrame(TextureRef texture, Rectangle sourceRect, PointF[] corners, Int32 offsetX, Int32 offsetY)
at LayerBase.Draw()
at Menu_Map.Draw()
at MapBase.DrawAllViews()
at GameForm.Run()
at Project.Main()
Disposing context.
-
I posted another version at: http://sgdk2.enigmadream.com/support/TVSGDK2f.zip (http://sgdk2.enigmadream.com/support/TVSGDK2f.zip)
But I didn't do anything to fix the AccessViolation exception. Still no revelations about that at the OpenTK forums. I did add a frame rate limiter, though, and corrected an error that someone reported on the resize event. I suppose there's a slim chance that the resize event could have been related to the AccessViolation exception, but I wouldn't hold out much hope of that. I'm not even sure my fix to the resize event fixed anything.
-
I recently installed the latest release of Ubuntu, and it actually just works on my machine, which in itself is amazing enough, but the ease of use is unparalleled with any other version of Linux I have ever seen. Seriously.
In any case, I was gonna try running TVSGDK2 with OpenGL and see how far I got, but I noticed that the links are now dead, so I can't really do much with that. I have WINE installed (again, really easy to do), but that doesn't go too well with .NET stuff. If you do make that program available again, though, I could try it with Mono (as long as you haven't changed too much to .NET 2.0).
-
I've been making updates. The current URL is http://sgdk2.enigmadream.com/support/TVSGDK2h.zip (http://sgdk2.enigmadream.com/support/TVSGDK2h.zip)
-
DisplayDevice 0 (primary) supports 21 resolutions.
640x480x8@61Hz
640x480x16@61Hz
640x480x32@61Hz
720x480x8@61Hz
720x480x16@61Hz
720x480x32@61Hz
800x600x8@61Hz
800x600x16@61Hz
800x600x32@61Hz
848x480x8@61Hz
848x480x16@61Hz
848x480x32@61Hz
1024x768x8@61Hz
1024x768x16@61Hz
1024x768x32@61Hz
1280x768x8@61Hz
1280x768x16@61Hz
1280x768x32@61Hz
1280x800x8@61Hz
1280x800x16@61Hz
>> 1280x800x32@61Hz <<
Device context: -973012190
Selecting pixel format... Device context: -973012190
Selecting pixel format... Device context: -973012190
Selecting pixel format... Device context: -973012190
Selecting pixel format... Device context: -973012190
Selecting pixel format... Device context: -973012190
Selecting pixel format... Device context: -973012190
Selecting pixel format... Creating GraphicsContext.
GraphicsMode: Index: 2, Color: 32 (8888), Depth: 24, Stencil: False, Samples: 0, Accum: 0 (0000), Buffers: 2, Stereo: False
IWindowInfo: Windows.WindowInfo: Handle 2753732, Parent (null)
Loaded opengl32.dll: 1803026432
OpenGL will be bound to handle: 2753732
Setting pixel format...
2
Creating render context... done! (id: 65536)
Load extensions for OpenTK.Platform.Windows.Wgl... 47 extensions loaded in 45 ms.
Load extensions for OpenTK.Graphics.OpenGL.GL... 912 extensions loaded in 614 ms.
Load extensions for OpenTK.Graphics.OpenGL.Glu... 58 extensions loaded in 16 ms.
Extension "
2.0.6956 Release
gl_arb_depth_texture
gl_arb_draw_buffers
gl_arb_fragment_program
gl_arb_fragment_shader
gl_arb_multisample
gl_arb_multitexture
gl_arb_occlusion_query
gl_arb_point_parameters
gl_arb_point_sprite
gl_arb_shader_objects
gl_arb_shading_language_100
gl_arb_shadow
gl_arb_shadow_ambient
gl_arb_texture_border_clamp
gl_arb_texture_compression
gl_arb_texture_cube_map
gl_arb_texture_env_add
gl_arb_texture_env_combine
gl_arb_texture_env_crossbar
gl_arb_texture_env_dot3
gl_arb_texture_float
gl_arb_texture_mirrored_repeat
gl_arb_texture_rectangle
gl_arb_transpose_matrix
gl_arb_vertex_buffer_object
gl_arb_vertex_program
gl_arb_vertex_shader
gl_arb_window_pos
gl_ati_draw_buffers
gl_ati_envmap_bumpmap
gl_ati_fragment_shader
gl_ati_meminfo
gl_ati_separate_stencil
gl_ati_texture_env_combine3
gl_ati_texture_float
gl_ext_bgra
gl_ext_blend_color
gl_ext_blend_func_separate
gl_ext_blend_minmax
gl_ext_blend_subtract
gl_ext_compiled_vertex_array
gl_ext_copy_texture
gl_ext_draw_range_elements
gl_ext_fog_coord
gl_ext_framebuffer_object
gl_ext_gpu_program_parameters
gl_ext_multi_draw_arrays
gl_ext_packed_depth_stencil
gl_ext_packed_pixels
gl_ext_point_parameters
gl_ext_rescale_normal
gl_ext_secondary_color
gl_ext_separate_specular_color
gl_ext_shadow_funcs
gl_ext_stencil_wrap
gl_ext_subtexture
gl_ext_texgen_reflection
gl_ext_texture_compression_s3tc
gl_ext_texture_cube_map
gl_ext_texture_edge_clamp
gl_ext_texture_env_add
gl_ext_texture_env_combine
gl_ext_texture_env_dot3
gl_ext_texture_filter_anisotropic
gl_ext_texture_lod_bias
gl_ext_texture_mirror_clamp
gl_ext_texture_object
gl_ext_texture_rectangle
gl_ext_texture3d
gl_ext_vertex_array
gl_ktx_buffer_region
gl_nv_blend_square
gl_nv_texgen_reflection
gl_sgis_generate_mipmap
gl_sgis_texture_edge_clamp
gl_sgis_texture_lod
gl_version_1_1
gl_version_1_2
gl_version_1_3
gl_version_1_4
gl_version_1_5
gl_version_2_0
gl_win_swap_hint
wgl_ext_swap_control
System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
at OpenTK.Graphics.OpenGL.GL.Imports.Begin(BeginMode mode)
at OpenTK.Graphics.OpenGL.GL.Begin(BeginMode mode)
at Display.DrawFrame(TextureRef texture, Rectangle sourceRect, PointF[] corners, Int32 offsetX, Int32 offsetY)
at LayerBase.Draw()
at Menu_Map.Draw()
at MapBase.DrawAllViews()
at GameForm.Run()
at Project.Main()
Disposing context.
-
Yeah, still nobody knows what's causing that problem so I can't do anything to even try to fix it. We haven't seen any other systems with that AccessViolation problem. And it must be something down in OpenTK or lower because even the sample programs for OpenTK have the problem. I guess we just wait and hope that OpenTK will get fixed at some point, and SGDK 2 will have to move forward. But I still have to wait until OpenTK provides better text drawing and full screen support before I can release anything.
-
Have you taken a look at the necessity to support GL_ARB_texture_rectangle? I get the same error when trying to run it on my friend's computer as before, even though recompiling it without that check did allow the program to run just fine before. I don't have time to retest that now... gotta go to class.
-
Mono comes built in with the latest version of Ubuntu, so running the program was as simple as typing "mono TVSGDK2.exe". This failed immediately, since it does not come with a System.Windows.Forms wrapper pre-installed, so after I installed a package for that, it got as far as the OpenGL initialization, but couldn't find opengl32.dll.
I checked, and I do have some form of OpenGL installed. I don't know how to get it to work with this just yet. Still, promising results.
--Edit 1:
Copying OpenTK.dll.config from the sample OpenTK project did the trick to get past the problem of finding the dll:
<configuration>
<dllmap os="linux" dll="opengl32.dll" target="libGL.so.1"/>
<dllmap os="linux" dll="glu32.dll" target="libGLU.so.1"/>
</configuration>
The next problem to overcome is that it cannot find winmm.dll for mapping joystick inputs. Specifically, it throws an error trying to run Joystick.GetDeviceCount() from Joystick:joyGetDevCaps
-
What if you delete/disable the joystick code? I assume at some point you will hit a problem with FMODEx.dll. Fortunately FMODEx is also cross-platform and you can probably download a Linux binary for that too.
-
The screenshot speaks for itself.
It's really flickery, but I believe that to be a problem with my video card, as that occurs in all cases of using hardware graphics acceleration.
(http://www.findmyed.com/files/SGDK2OnLinux.png)
Update:
I haven't been able to figure out how to get the Linux version of fmodex to replace the Windows version. However, taking out the code that uses it does allow me to get into the actual game
(http://www.findmyed.com/files/TVOnLinux.png)
Yes, it does actually look that weird. Again, probably the graphics card.
-
Wow! I did not expect it to be that easy to get an SGDK2 project running under Linux! :surprise:
-
Have you taken a look at the necessity to support GL_ARB_texture_rectangle? I get the same error when trying to run it on my friend's computer as before, even though recompiling it without that check did allow the program to run just fine before. I don't have time to retest that now... gotta go to class.
Have you tried running a project without power-of-2 (POT) sized textures? I can't figure out why this wouldn't be required because I'm using about everything that I can think of that GL_ARB_texture_rectangle entails. I do intend to (if I haven't already done it) allow the requirement to be overridden and try to run the project anyway. Something like a pop-up box with an option to proceed.
-
Well, of course I haven't tried running a project like that, Since I don't have an IDE to make one. I guess it was just coincidence that all of the TVSGDK2 images were that size.
Yeah, it was nice to be able to see it actually run. Now the trick is to make it run with sound, and not have those lines on the top of every tile and sprite not in the top row of the graphic sheet.
-
So I'm curious. I had a frame rate limiter in there that was calling QueryPerformanceCounter from Kernel32.dll I think. Did that magically work, or did you change/remove it somehow?
Oh, and on the POT-sized textures... I mean even on a Windows system without support for that feature... never tried it?
-
On the POT-sized textures... how could I try it? SGDK2.1 hasn't been released.
I didn't change anything relating to Kernel32.dll, so perhaps mono automatically fixed that one?
Some more strange effects of running on this system:
(http://www.findmyed.com/files/TVLinuxTiles.png)
-
Oh, right... this is only in 2.1 :-[
I wonder what's causing those strange behaviors you're seeing. Maybe it's because your card doesn't support GL_ARB_texture_rectangle ;).
So the frame rate is limited in the game, but not on the menu, right? It's rather surprising that Mono would know how to convert a Win32 API call!
-
I haven't actually looked at the code to try to find the Win32 call. I have the Mono IDE, so perhaps it can tell me something about that. Also, I switched drivers between the first screenshot and the second, which is why this second one doesn't have the lines above all the sprites and tiles. The proprietary driver may be causing this strange new problem that the community driver did not cause, though it had other problems. (I never actually got to this part of the level with the other driver though, so I can't be sure). I do know that it supports GL_ARB_texture though. At least SGDK2 doesn't complain about it.
-
Audio progress has been made. Getting the compiled library and creating another config for that file:
<configuration>
<dllmap os="linux" dll="fmodex.dll" target="/home/ed/Desktop/tvsgdk2/libfmodex64.so.4.14.03"/>
</configuration>
Allowed it to find the file. Now I get this one:
ERR_INVALID_SPEAKER - An invalid speaker was passed to this function based on the current speaker mode.
As for the QueryPerformanceFrequency issue... I have a guess as to why it works. Probably the same way that what I did above works. There's probably a configuration file that redirects Kernel32.dll to a different dll that has the same functions as supported by linux.
Doing a search on this info, I come up with the following, which confirms my guess:
http://www.go-mono.com/docs/index.aspx?link=xhtml%3Adeploy%2Fmono-api-wapi.html
-
Now I get this one:
ERR_INVALID_SPEAKER - An invalid speaker was passed to this function based on the current speaker mode.
This could be caused by a different FMODEx version... I just downloaded the latest from the website... would that make problems? Are you assuming a different version in the code that would do this?
-
Ah, yes, SGDK2 delivers with FMODEx.dll version 4.6.1. I haven't updated it in a while. I should catch up on some of the new features/fixes. Maybe they fully support SF2 sound fonts now, making it possible to deliver high quality MIDI sound.
-
Ah, yes, SGDK2 delivers with FMODEx.dll version 4.6.1.
Indeed. I'm using v4.14.03. It is strange though that it is not backwards compatible.
-
I got TVSGDK2 to work with FMOD 4.14 by replacing the contents of the fmod.cs file in the TVSGDK2 project with the contents of 3 files delivered with FMOD in the api\csharp folder:
- fmod.cs
- fmod_dsp.cs (delete the duplicate using statements)
- fmod_errors.cs
-
Well, the good news is, it worked! I can hear sound now.
The bad news is that there is no screen capture software that works with audio and video on my computer. So try this instead.
http://www.youtube.com/v/oaXmHu1vf9c
Yeah, with my video camera. And it really is that glitchy. And yes, you did see me walk right through a blob and not get hurt.
-
wow thats cool. :O
-
hey durnard. If you're having graphic acceleration issues, i'd suggest your run glxgears and check if direct rendering is on. If it's off, then it'll greatly reduce performance. I'm a user of ubuntu, but i'm a pretty sucky noob.
-
I've already gone through all that rigamarole, and in the end, if I want to use OpenGL, I basically need to turn off all hardware acceleration that I get with the restricted drivers, set the visual effects to "none" and restart the computer. Then it works much better, but in the end problems still arise from some seemingly random tiles not drawing, apparently heavily based on the water section of the map.
Anyway, it's not as if I'm actually trying to play it. I made it, I know how it ends up. For playing games, I just stick to my laptop for now, which has a much worse graphics card, but it still works for my latest addiction, Lego Indiana Jones.
-
I recently got an auto-upgrade which fixed some issues with my drivers. However, the most recent version (TVSGDK2h.zip) doesn't include the sprite .cs files, and SGDK2IDE doesn't work so I can't compile it myself to get them... Does anybody have them?
-
I have them, but no time to upload them before I have to catch the bus. remind me if I forget later.
-
I added the Sprites folder and posted the result at http://sgdk2.enigmadream.com/support/TVSGDK2i.zip (http://sgdk2.enigmadream.com/support/TVSGDK2i.zip)
-
Have you finished updating this project to SGDK 2.1? Since it's in the samples package, I should get an updated version of that and Tetris before officially releasing SGDK 2.1.
-
Oh, yeah, it works fine. I haven't updated Tetris yet, but that should be simple.
-
Two problems with TVSGDK2:
1) Looks like you totally changed the starting level. It's too hard for a beginner to play I think.
2) It's trying to go into full screen mode and is having errors because it can't find a matching display mode on my system. Do you know anything about that? I wonder when that stopped working ???
-
Whoops. I meant to change the starting level back to level 1 after I was done testing. Don't know anything about the display issue, no. There's a few things I need to update on TVSGDK2 and then I'll upload it again.
It does try to make the game full-screen at 320x240 resolution, that may be the problem in general, but it works for me.
-
I know my monitor won't go anything below 640x480 so that is likely the issue.
-
Yeah, according to OpenTK, all the display modes supported by my display are 640x480 and higher. I tried changing the code to stretch 320x240 to 640x480 for the 320x240 display mode, but then there are lined between the background tiles. I wonder if my coordinates are off by half a pixel or what.
-
Well, the simplest solution would be to make it non-full-screen then, I guess. Or detect whether it's supported or not, and if not, then don't go to full screen (or do go to full screen at the closest resolution available and resize all drawing to accomodate.