How to get cursor coordinates relative to matrix scale in pyglet/opengl?












0















I am making a 2D game in pyglet and use both glTranslatef and glScalef:



def background_motion(dt):
if stars.left:
pyglet.gl.glTranslatef(stars.speed, 0, 0)
stars.translation[0] += stars.speed
if stars.right:
pyglet.gl.glTranslatef(-stars.speed, 0, 0)
stars.translation[0] -= stars.speed
if stars.up:
pyglet.gl.glTranslatef(0, -stars.speed, 0)
stars.translation[1] -= stars.speed
if stars.down:
pyglet.gl.glTranslatef(0, stars.speed, 0)
stars.translation[1] += stars.speed
pyglet.clock.schedule_interval(background_motion, 0.05)

@window.event
def on_mouse_scroll(x, y, scroll_x, scroll_y):
if scroll_y > 0:
stars.scale += 0.01

elif scroll_y < 0:
stars.scale -= 0.01
@window.event
def on_draw():
window.clear()

pyglet.gl.glScalef(stars.scale,stars.scale, 1, 1)

stars.image.draw()
for s in game.ships:
s.draw()

pyglet.gl.glPushMatrix()
pyglet.gl.glLoadIdentity()

#HUD Start
overlay.draw(stars.image.x,stars.image.y,game.ships,stars.scale,stars.image.width)
if game.pause:
pause_text.draw()
#HUD End

pyglet.gl.glPopMatrix()
stars.scale = 1


However I also need the cursor coordinates relative to the background. For the movement I simply added the translation onto the x y coordinates which works however only when I don't scale the matrix:



@window.event
def on_mouse_motion(x, y, dx, dy):
if player.course_setting:
player.projected_heading = (x - stars.translation[0],y -stars.translation[1])


How can I get the cursor coordinates accounting for scale?










share|improve this question























  • First things first: You shouldn't be using the fixed function matrix stack in the first place. It's been deprecated for well over a decade.

    – datenwolf
    Jan 1 at 12:32











  • Divide player.projected_heading by stars.scale

    – Rabbid76
    Jan 1 at 14:25
















0















I am making a 2D game in pyglet and use both glTranslatef and glScalef:



def background_motion(dt):
if stars.left:
pyglet.gl.glTranslatef(stars.speed, 0, 0)
stars.translation[0] += stars.speed
if stars.right:
pyglet.gl.glTranslatef(-stars.speed, 0, 0)
stars.translation[0] -= stars.speed
if stars.up:
pyglet.gl.glTranslatef(0, -stars.speed, 0)
stars.translation[1] -= stars.speed
if stars.down:
pyglet.gl.glTranslatef(0, stars.speed, 0)
stars.translation[1] += stars.speed
pyglet.clock.schedule_interval(background_motion, 0.05)

@window.event
def on_mouse_scroll(x, y, scroll_x, scroll_y):
if scroll_y > 0:
stars.scale += 0.01

elif scroll_y < 0:
stars.scale -= 0.01
@window.event
def on_draw():
window.clear()

pyglet.gl.glScalef(stars.scale,stars.scale, 1, 1)

stars.image.draw()
for s in game.ships:
s.draw()

pyglet.gl.glPushMatrix()
pyglet.gl.glLoadIdentity()

#HUD Start
overlay.draw(stars.image.x,stars.image.y,game.ships,stars.scale,stars.image.width)
if game.pause:
pause_text.draw()
#HUD End

pyglet.gl.glPopMatrix()
stars.scale = 1


However I also need the cursor coordinates relative to the background. For the movement I simply added the translation onto the x y coordinates which works however only when I don't scale the matrix:



@window.event
def on_mouse_motion(x, y, dx, dy):
if player.course_setting:
player.projected_heading = (x - stars.translation[0],y -stars.translation[1])


How can I get the cursor coordinates accounting for scale?










share|improve this question























  • First things first: You shouldn't be using the fixed function matrix stack in the first place. It's been deprecated for well over a decade.

    – datenwolf
    Jan 1 at 12:32











  • Divide player.projected_heading by stars.scale

    – Rabbid76
    Jan 1 at 14:25














0












0








0








I am making a 2D game in pyglet and use both glTranslatef and glScalef:



def background_motion(dt):
if stars.left:
pyglet.gl.glTranslatef(stars.speed, 0, 0)
stars.translation[0] += stars.speed
if stars.right:
pyglet.gl.glTranslatef(-stars.speed, 0, 0)
stars.translation[0] -= stars.speed
if stars.up:
pyglet.gl.glTranslatef(0, -stars.speed, 0)
stars.translation[1] -= stars.speed
if stars.down:
pyglet.gl.glTranslatef(0, stars.speed, 0)
stars.translation[1] += stars.speed
pyglet.clock.schedule_interval(background_motion, 0.05)

@window.event
def on_mouse_scroll(x, y, scroll_x, scroll_y):
if scroll_y > 0:
stars.scale += 0.01

elif scroll_y < 0:
stars.scale -= 0.01
@window.event
def on_draw():
window.clear()

pyglet.gl.glScalef(stars.scale,stars.scale, 1, 1)

stars.image.draw()
for s in game.ships:
s.draw()

pyglet.gl.glPushMatrix()
pyglet.gl.glLoadIdentity()

#HUD Start
overlay.draw(stars.image.x,stars.image.y,game.ships,stars.scale,stars.image.width)
if game.pause:
pause_text.draw()
#HUD End

pyglet.gl.glPopMatrix()
stars.scale = 1


However I also need the cursor coordinates relative to the background. For the movement I simply added the translation onto the x y coordinates which works however only when I don't scale the matrix:



@window.event
def on_mouse_motion(x, y, dx, dy):
if player.course_setting:
player.projected_heading = (x - stars.translation[0],y -stars.translation[1])


How can I get the cursor coordinates accounting for scale?










share|improve this question














I am making a 2D game in pyglet and use both glTranslatef and glScalef:



def background_motion(dt):
if stars.left:
pyglet.gl.glTranslatef(stars.speed, 0, 0)
stars.translation[0] += stars.speed
if stars.right:
pyglet.gl.glTranslatef(-stars.speed, 0, 0)
stars.translation[0] -= stars.speed
if stars.up:
pyglet.gl.glTranslatef(0, -stars.speed, 0)
stars.translation[1] -= stars.speed
if stars.down:
pyglet.gl.glTranslatef(0, stars.speed, 0)
stars.translation[1] += stars.speed
pyglet.clock.schedule_interval(background_motion, 0.05)

@window.event
def on_mouse_scroll(x, y, scroll_x, scroll_y):
if scroll_y > 0:
stars.scale += 0.01

elif scroll_y < 0:
stars.scale -= 0.01
@window.event
def on_draw():
window.clear()

pyglet.gl.glScalef(stars.scale,stars.scale, 1, 1)

stars.image.draw()
for s in game.ships:
s.draw()

pyglet.gl.glPushMatrix()
pyglet.gl.glLoadIdentity()

#HUD Start
overlay.draw(stars.image.x,stars.image.y,game.ships,stars.scale,stars.image.width)
if game.pause:
pause_text.draw()
#HUD End

pyglet.gl.glPopMatrix()
stars.scale = 1


However I also need the cursor coordinates relative to the background. For the movement I simply added the translation onto the x y coordinates which works however only when I don't scale the matrix:



@window.event
def on_mouse_motion(x, y, dx, dy):
if player.course_setting:
player.projected_heading = (x - stars.translation[0],y -stars.translation[1])


How can I get the cursor coordinates accounting for scale?







python-3.x opengl pyglet






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 1 at 11:29









JonasJonas

305




305













  • First things first: You shouldn't be using the fixed function matrix stack in the first place. It's been deprecated for well over a decade.

    – datenwolf
    Jan 1 at 12:32











  • Divide player.projected_heading by stars.scale

    – Rabbid76
    Jan 1 at 14:25



















  • First things first: You shouldn't be using the fixed function matrix stack in the first place. It's been deprecated for well over a decade.

    – datenwolf
    Jan 1 at 12:32











  • Divide player.projected_heading by stars.scale

    – Rabbid76
    Jan 1 at 14:25

















First things first: You shouldn't be using the fixed function matrix stack in the first place. It's been deprecated for well over a decade.

– datenwolf
Jan 1 at 12:32





First things first: You shouldn't be using the fixed function matrix stack in the first place. It's been deprecated for well over a decade.

– datenwolf
Jan 1 at 12:32













Divide player.projected_heading by stars.scale

– Rabbid76
Jan 1 at 14:25





Divide player.projected_heading by stars.scale

– Rabbid76
Jan 1 at 14:25












1 Answer
1






active

oldest

votes


















1














You'll have to unproject the pointer position. Projection happens as following:



p_eye = M · p
p_clip = P · p_eye


at this point the primitive is clipped, but we can ignore this for the moment. After clipping comes the homogenous divide, which brings the coordinates into NDC space, i.e. the viewport is treated as a cuboid of dimensions [-1,1]×[-1,1]×[0,1]



p_NDC = p_clip / p_clip.w


From there it's mapped into pixel dimensions. I'm going to omit this step here.



Unprojecting is doing these operations in reverse. There's a small trick in there, regarding the homogenous divide, though; this is kind of an "antisymmetric" (not the proper term for this, but it gets across the point) operation, and happens at the end, for each projection and unprojection. Unprojection hence is



p_NDC.w = 1
p_eye' = inv(P)·p_NDC
p' = inv(M)·p_eye'
p = p' / p'.w


All of this has been wrapped into unproject functions for your convenience by GLU (if you insist on using the fixed function matrix stack) or GLM – but not my linmath.h, though.






share|improve this answer
























  • Okay I tried using opengls unproject function like this: pyglet.gl.gluUnProject(x,y,0,pyglet.gl.GL_MODELVIEW_MATRIX,pyglet.gl.GL_PROJECTION_MATRIX,pyglet.gl.glViewport,0,0,0) But that gave me the error: ctypes.ArgumentError: argument 4: <class 'TypeError'>: expected LP_c_double instance instead of int What am I doing wrong?'

    – Jonas
    Jan 1 at 20:50











  • @Rabbid76 Okay now I get this error TypeError: this function takes at least 2 arguments (1 given) from this line model_view = np.array(pyglet.gl.glGetDoublev(pyglet.gl.GL_MODELVIEW_MATRIX))

    – Jonas
    Jan 2 at 7:24











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53995063%2fhow-to-get-cursor-coordinates-relative-to-matrix-scale-in-pyglet-opengl%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














You'll have to unproject the pointer position. Projection happens as following:



p_eye = M · p
p_clip = P · p_eye


at this point the primitive is clipped, but we can ignore this for the moment. After clipping comes the homogenous divide, which brings the coordinates into NDC space, i.e. the viewport is treated as a cuboid of dimensions [-1,1]×[-1,1]×[0,1]



p_NDC = p_clip / p_clip.w


From there it's mapped into pixel dimensions. I'm going to omit this step here.



Unprojecting is doing these operations in reverse. There's a small trick in there, regarding the homogenous divide, though; this is kind of an "antisymmetric" (not the proper term for this, but it gets across the point) operation, and happens at the end, for each projection and unprojection. Unprojection hence is



p_NDC.w = 1
p_eye' = inv(P)·p_NDC
p' = inv(M)·p_eye'
p = p' / p'.w


All of this has been wrapped into unproject functions for your convenience by GLU (if you insist on using the fixed function matrix stack) or GLM – but not my linmath.h, though.






share|improve this answer
























  • Okay I tried using opengls unproject function like this: pyglet.gl.gluUnProject(x,y,0,pyglet.gl.GL_MODELVIEW_MATRIX,pyglet.gl.GL_PROJECTION_MATRIX,pyglet.gl.glViewport,0,0,0) But that gave me the error: ctypes.ArgumentError: argument 4: <class 'TypeError'>: expected LP_c_double instance instead of int What am I doing wrong?'

    – Jonas
    Jan 1 at 20:50











  • @Rabbid76 Okay now I get this error TypeError: this function takes at least 2 arguments (1 given) from this line model_view = np.array(pyglet.gl.glGetDoublev(pyglet.gl.GL_MODELVIEW_MATRIX))

    – Jonas
    Jan 2 at 7:24
















1














You'll have to unproject the pointer position. Projection happens as following:



p_eye = M · p
p_clip = P · p_eye


at this point the primitive is clipped, but we can ignore this for the moment. After clipping comes the homogenous divide, which brings the coordinates into NDC space, i.e. the viewport is treated as a cuboid of dimensions [-1,1]×[-1,1]×[0,1]



p_NDC = p_clip / p_clip.w


From there it's mapped into pixel dimensions. I'm going to omit this step here.



Unprojecting is doing these operations in reverse. There's a small trick in there, regarding the homogenous divide, though; this is kind of an "antisymmetric" (not the proper term for this, but it gets across the point) operation, and happens at the end, for each projection and unprojection. Unprojection hence is



p_NDC.w = 1
p_eye' = inv(P)·p_NDC
p' = inv(M)·p_eye'
p = p' / p'.w


All of this has been wrapped into unproject functions for your convenience by GLU (if you insist on using the fixed function matrix stack) or GLM – but not my linmath.h, though.






share|improve this answer
























  • Okay I tried using opengls unproject function like this: pyglet.gl.gluUnProject(x,y,0,pyglet.gl.GL_MODELVIEW_MATRIX,pyglet.gl.GL_PROJECTION_MATRIX,pyglet.gl.glViewport,0,0,0) But that gave me the error: ctypes.ArgumentError: argument 4: <class 'TypeError'>: expected LP_c_double instance instead of int What am I doing wrong?'

    – Jonas
    Jan 1 at 20:50











  • @Rabbid76 Okay now I get this error TypeError: this function takes at least 2 arguments (1 given) from this line model_view = np.array(pyglet.gl.glGetDoublev(pyglet.gl.GL_MODELVIEW_MATRIX))

    – Jonas
    Jan 2 at 7:24














1












1








1







You'll have to unproject the pointer position. Projection happens as following:



p_eye = M · p
p_clip = P · p_eye


at this point the primitive is clipped, but we can ignore this for the moment. After clipping comes the homogenous divide, which brings the coordinates into NDC space, i.e. the viewport is treated as a cuboid of dimensions [-1,1]×[-1,1]×[0,1]



p_NDC = p_clip / p_clip.w


From there it's mapped into pixel dimensions. I'm going to omit this step here.



Unprojecting is doing these operations in reverse. There's a small trick in there, regarding the homogenous divide, though; this is kind of an "antisymmetric" (not the proper term for this, but it gets across the point) operation, and happens at the end, for each projection and unprojection. Unprojection hence is



p_NDC.w = 1
p_eye' = inv(P)·p_NDC
p' = inv(M)·p_eye'
p = p' / p'.w


All of this has been wrapped into unproject functions for your convenience by GLU (if you insist on using the fixed function matrix stack) or GLM – but not my linmath.h, though.






share|improve this answer













You'll have to unproject the pointer position. Projection happens as following:



p_eye = M · p
p_clip = P · p_eye


at this point the primitive is clipped, but we can ignore this for the moment. After clipping comes the homogenous divide, which brings the coordinates into NDC space, i.e. the viewport is treated as a cuboid of dimensions [-1,1]×[-1,1]×[0,1]



p_NDC = p_clip / p_clip.w


From there it's mapped into pixel dimensions. I'm going to omit this step here.



Unprojecting is doing these operations in reverse. There's a small trick in there, regarding the homogenous divide, though; this is kind of an "antisymmetric" (not the proper term for this, but it gets across the point) operation, and happens at the end, for each projection and unprojection. Unprojection hence is



p_NDC.w = 1
p_eye' = inv(P)·p_NDC
p' = inv(M)·p_eye'
p = p' / p'.w


All of this has been wrapped into unproject functions for your convenience by GLU (if you insist on using the fixed function matrix stack) or GLM – but not my linmath.h, though.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 1 at 13:03









datenwolfdatenwolf

133k10135238




133k10135238













  • Okay I tried using opengls unproject function like this: pyglet.gl.gluUnProject(x,y,0,pyglet.gl.GL_MODELVIEW_MATRIX,pyglet.gl.GL_PROJECTION_MATRIX,pyglet.gl.glViewport,0,0,0) But that gave me the error: ctypes.ArgumentError: argument 4: <class 'TypeError'>: expected LP_c_double instance instead of int What am I doing wrong?'

    – Jonas
    Jan 1 at 20:50











  • @Rabbid76 Okay now I get this error TypeError: this function takes at least 2 arguments (1 given) from this line model_view = np.array(pyglet.gl.glGetDoublev(pyglet.gl.GL_MODELVIEW_MATRIX))

    – Jonas
    Jan 2 at 7:24



















  • Okay I tried using opengls unproject function like this: pyglet.gl.gluUnProject(x,y,0,pyglet.gl.GL_MODELVIEW_MATRIX,pyglet.gl.GL_PROJECTION_MATRIX,pyglet.gl.glViewport,0,0,0) But that gave me the error: ctypes.ArgumentError: argument 4: <class 'TypeError'>: expected LP_c_double instance instead of int What am I doing wrong?'

    – Jonas
    Jan 1 at 20:50











  • @Rabbid76 Okay now I get this error TypeError: this function takes at least 2 arguments (1 given) from this line model_view = np.array(pyglet.gl.glGetDoublev(pyglet.gl.GL_MODELVIEW_MATRIX))

    – Jonas
    Jan 2 at 7:24

















Okay I tried using opengls unproject function like this: pyglet.gl.gluUnProject(x,y,0,pyglet.gl.GL_MODELVIEW_MATRIX,pyglet.gl.GL_PROJECTION_MATRIX,pyglet.gl.glViewport,0,0,0) But that gave me the error: ctypes.ArgumentError: argument 4: <class 'TypeError'>: expected LP_c_double instance instead of int What am I doing wrong?'

– Jonas
Jan 1 at 20:50





Okay I tried using opengls unproject function like this: pyglet.gl.gluUnProject(x,y,0,pyglet.gl.GL_MODELVIEW_MATRIX,pyglet.gl.GL_PROJECTION_MATRIX,pyglet.gl.glViewport,0,0,0) But that gave me the error: ctypes.ArgumentError: argument 4: <class 'TypeError'>: expected LP_c_double instance instead of int What am I doing wrong?'

– Jonas
Jan 1 at 20:50













@Rabbid76 Okay now I get this error TypeError: this function takes at least 2 arguments (1 given) from this line model_view = np.array(pyglet.gl.glGetDoublev(pyglet.gl.GL_MODELVIEW_MATRIX))

– Jonas
Jan 2 at 7:24





@Rabbid76 Okay now I get this error TypeError: this function takes at least 2 arguments (1 given) from this line model_view = np.array(pyglet.gl.glGetDoublev(pyglet.gl.GL_MODELVIEW_MATRIX))

– Jonas
Jan 2 at 7:24




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53995063%2fhow-to-get-cursor-coordinates-relative-to-matrix-scale-in-pyglet-opengl%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter