481 lines
19 KiB
Plaintext
481 lines
19 KiB
Plaintext
// Filename: graphicsOutput.I
|
|
// Created by: drose (06Feb04)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_gsg
|
|
// Access: Published
|
|
// Description: Returns the GSG that is associated with this window.
|
|
// There is a one-to-one association between windows and
|
|
// GSG's.
|
|
//
|
|
// This may return NULL if the graphics context has not
|
|
// yet been created for the window, e.g. before the
|
|
// first frame has rendered; or after the window has
|
|
// been closed.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE GraphicsStateGuardian *GraphicsOutput::
|
|
get_gsg() const {
|
|
return _gsg;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_pipe
|
|
// Access: Published
|
|
// Description: Returns the GraphicsPipe that this window is
|
|
// associated with. It is possible that the
|
|
// GraphicsPipe might have been deleted while an
|
|
// outstanding PT(GraphicsOutput) prevented all of its
|
|
// children windows from also being deleted; in this
|
|
// unlikely case, get_pipe() may return NULL.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE GraphicsPipe *GraphicsOutput::
|
|
get_pipe() const {
|
|
return _pipe;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_name
|
|
// Access: Published
|
|
// Description: Returns the name that was passed to the
|
|
// GraphicsOutput constructor.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE const string &GraphicsOutput::
|
|
get_name() const {
|
|
return _name;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::count_textures
|
|
// Access: Published
|
|
// Description: If the GraphicsOutput is set to render into a
|
|
// texture, returns the number of textures that are
|
|
// being rendered into. Normally, the textures would
|
|
// be associated with different buffers - a color
|
|
// texture, a depth texture, and a stencil texture.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int GraphicsOutput::
|
|
count_textures() const {
|
|
return _textures.size();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::has_texture
|
|
// Access: Published
|
|
// Description: Returns true if the GraphicsOutput is rendering
|
|
// into any textures at all.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
has_texture() const {
|
|
return (_textures.size() > 0);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_texture
|
|
// Access: Published
|
|
// Description: Returns the nth texture into which the GraphicsOutput
|
|
// renders. Returns NULL if there is no such texture.
|
|
//
|
|
// If the texture is non-NULL, it may be applied to
|
|
// geometry to be rendered for any other windows or
|
|
// outputs that share the same GSG as this
|
|
// GraphicsOutput. The effect is undefined for windows
|
|
// that share a different GSG; usually in these cases
|
|
// the texture will be invalid.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE Texture *GraphicsOutput::
|
|
get_texture(int i) const {
|
|
if ((i < 0) || (i >= ((int)_textures.size()))) {
|
|
return (Texture *)NULL;
|
|
}
|
|
return _textures[i]._texture;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_rtm_mode
|
|
// Access: Published
|
|
// Description: Returns the RenderTextureMode associated with the
|
|
// nth texture. Returns RTM_none if there is no such
|
|
// texture.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE GraphicsOutput::RenderTextureMode GraphicsOutput::
|
|
get_rtm_mode(int i) const {
|
|
if ((i < 0) || (i >= ((int)_textures.size()))) {
|
|
return RTM_none;
|
|
}
|
|
return _textures[i]._rtm_mode;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_x_size
|
|
// Access: Published
|
|
// Description: Returns the width of the graphics frame buffer, if it
|
|
// is known. In certain cases (e.g. fullscreen
|
|
// windows), the size may not be known until after the
|
|
// object has been fully created. Check has_size()
|
|
// first.
|
|
//
|
|
// Certain objects (like windows) may change size
|
|
// spontaneously; this method is not thread-safe. To
|
|
// get the size of a window in a thread-safe manner,
|
|
// query get_properties().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int GraphicsOutput::
|
|
get_x_size() const {
|
|
return _x_size;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_y_size
|
|
// Access: Published
|
|
// Description: Returns the height of the graphics frame buffer, if it
|
|
// is known. In certain cases (e.g. fullscreen
|
|
// windows), the size may not be known until after the
|
|
// object has been fully created. Check has_size()
|
|
// first.
|
|
//
|
|
// Certain objects (like windows) may change size
|
|
// spontaneously; this method is not thread-safe. To
|
|
// get the size of a window in a thread-safe manner,
|
|
// query get_properties().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int GraphicsOutput::
|
|
get_y_size() const {
|
|
return _y_size;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::has_size
|
|
// Access: Published
|
|
// Description: Returns true if the size of the window/frame buffer
|
|
// is known, false otherwise. In certain cases the size
|
|
// may not be known until after the object has been
|
|
// fully created. Also, certain objects (like windows)
|
|
// may change size spontaneously.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
has_size() const {
|
|
return _has_size;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::is_valid
|
|
// Access: Published
|
|
// Description: Returns true if the output is fully created and ready
|
|
// for rendering, false otherwise.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
is_valid() const {
|
|
return _is_valid;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::set_one_shot
|
|
// Access: Published
|
|
// Description: Changes the current setting of the one-shot flag.
|
|
// When this is true, the GraphicsOutput will
|
|
// automatically detach its texture (if it has one) and
|
|
// remove itself from the GraphicsEngine after it
|
|
// renders the next frame.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void GraphicsOutput::
|
|
set_one_shot(bool one_shot) {
|
|
_one_shot = one_shot;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_one_shot
|
|
// Access: Published
|
|
// Description: Returns the current setting of the one-shot flag.
|
|
// When this is true, the GraphicsOutput will
|
|
// automatically detach its texture (if it has one) and
|
|
// remove itself from the GraphicsEngine after it
|
|
// renders the next frame.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
get_one_shot() const {
|
|
return _one_shot;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_inverted
|
|
// Access: Published
|
|
// Description: Returns the current setting of the inverted flag.
|
|
// When this is true, the scene is rendered into the
|
|
// window upside-down, flipped like a mirror along the X
|
|
// axis. See set_inverted().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
get_inverted() const {
|
|
return _inverted;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::clear_delete_flag
|
|
// Access: Published
|
|
// Description: Resets the delete flag, so the GraphicsOutput will
|
|
// not be automatically deleted before the beginning of
|
|
// the next frame.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void GraphicsOutput::
|
|
clear_delete_flag() {
|
|
_delete_flag = false;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_delete_flag
|
|
// Access: Published
|
|
// Description: Returns the current setting of the delete flag. When
|
|
// this is true, the GraphicsOutput will automatically
|
|
// be removed before the beginning of the next frame by
|
|
// the GraphicsEngine.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
get_delete_flag() const {
|
|
// We only delete the window or buffer automatically when it is
|
|
// no longer associated with a texture.
|
|
for (int i=0; i<(int)_hold_textures.size(); i++) {
|
|
if (_hold_textures[i].is_valid_pointer()) {
|
|
return false;
|
|
}
|
|
}
|
|
return _delete_flag;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_sort
|
|
// Access: Published
|
|
// Description: Returns the sorting order of this particular
|
|
// GraphicsOutput. The various GraphicsOutputs within a
|
|
// particular thread will be rendered in the indicated
|
|
// order.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int GraphicsOutput::
|
|
get_sort() const {
|
|
return _sort;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::trigger_copy
|
|
// Access: Published
|
|
// Description: When the GraphicsOutput is in triggered copy mode,
|
|
// this function triggers the copy (at the end of the
|
|
// next frame).
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void GraphicsOutput::
|
|
trigger_copy() {
|
|
_trigger_copy = true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::make_display_region
|
|
// Access: Published
|
|
// Description: Creates a new DisplayRegion that covers the entire
|
|
// window.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE DisplayRegion *GraphicsOutput::
|
|
make_display_region() {
|
|
return add_display_region(new DisplayRegion(this));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::make_display_region
|
|
// Access: Published
|
|
// Description: Creates a new DisplayRegion that covers the indicated
|
|
// sub-rectangle within the window. The range on all
|
|
// parameters is 0..1.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE DisplayRegion *GraphicsOutput::
|
|
make_display_region(float l, float r, float b, float t) {
|
|
return add_display_region(new DisplayRegion(this, l, r, b, t));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::make_screenshot_filename
|
|
// Access: Published, Static
|
|
// Description: Saves a screenshot of the region to a default
|
|
// filename, and returns the filename, or empty string
|
|
// if the screenshot failed. The default filename is
|
|
// generated from the supplied prefix and from the
|
|
// Config variable screenshot-filename, which contains
|
|
// the following strings:
|
|
//
|
|
// %~p - the supplied prefix
|
|
// %~f - the frame count
|
|
// %~e - the value of screenshot-extension
|
|
// All other % strings in strftime().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE Filename GraphicsOutput::
|
|
make_screenshot_filename(const string &prefix) {
|
|
return DisplayRegion::make_screenshot_filename(prefix);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::save_screenshot_default
|
|
// Access: Published
|
|
// Description: Saves a screenshot of the region to a default
|
|
// filename, and returns the filename, or empty string
|
|
// if the screenshot failed. The filename is generated
|
|
// by make_screenshot_filename().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE Filename GraphicsOutput::
|
|
save_screenshot_default(const string &prefix) {
|
|
return _default_display_region->save_screenshot_default(prefix);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::save_screenshot
|
|
// Access: Published
|
|
// Description: Saves a screenshot of the region to the indicated
|
|
// filename. Returns true on success, false on failure.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
save_screenshot(const Filename &filename) {
|
|
return _default_display_region->save_screenshot(filename);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::get_screenshot
|
|
// Access: Published
|
|
// Description: Captures the most-recently rendered image from the
|
|
// framebuffer into the indicated PNMImage. Returns
|
|
// true on success, false on failure.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
get_screenshot(PNMImage &image) {
|
|
return _default_display_region->get_screenshot(image);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::flip_ready
|
|
// Access: Public
|
|
// Description: Returns true if a frame has been rendered and needs
|
|
// to be flipped, false otherwise.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
flip_ready() const {
|
|
return _flip_ready;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::needs_context
|
|
// Access: Public
|
|
// Description: Returns true if make_context() still needs to be
|
|
// called, false otherwise.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
needs_context() const {
|
|
return _needs_context;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::operator <
|
|
// Access: Public
|
|
// Description: The sorting operator is used to order the
|
|
// GraphicsOutput object in order by their sort number,
|
|
// so that they will render in the correct order in the
|
|
// GraphicsEngine.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool GraphicsOutput::
|
|
operator < (const GraphicsOutput &other) const {
|
|
if (_sort != other._sort) {
|
|
return _sort < other._sort;
|
|
}
|
|
return _internal_sort_index < other._internal_sort_index;
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::determine_display_regions
|
|
// Access: Private
|
|
// Description: Recomputes the list of active DisplayRegions within
|
|
// the window, if they have changed recently.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void GraphicsOutput::
|
|
determine_display_regions() const {
|
|
// This function isn't strictly speaking const, but we pretend it is
|
|
// because it only updates a transparent cache value.
|
|
if (_display_regions_stale) {
|
|
((GraphicsOutput *)this)->do_determine_display_regions();
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::win_display_regions_changed
|
|
// Access: Private
|
|
// Description: Intended to be called when the active state on a
|
|
// nested display region changes, forcing the window to
|
|
// recompute its list of active display regions.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void GraphicsOutput::
|
|
win_display_regions_changed() {
|
|
_display_regions_stale = true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::begin_frame_spam
|
|
// Access: Public
|
|
// Description: Display the spam message associated with begin_frame
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void GraphicsOutput::
|
|
begin_frame_spam() {
|
|
if (display_cat.is_spam()) {
|
|
display_cat.spam()
|
|
<< "begin_frame(): " << get_type() << " "
|
|
<< get_name() << " " << (void *)this << "\n";
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::end_frame_spam
|
|
// Access: Public
|
|
// Description: Display the spam message associated with end_frame
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void GraphicsOutput::
|
|
end_frame_spam() {
|
|
if (display_cat.is_spam()) {
|
|
display_cat.spam()
|
|
<< "end_frame(): " << get_type() << " "
|
|
<< get_name() << " " << (void *)this << "\n";
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::clear_cube_map_selection
|
|
// Access: Public
|
|
// Description: Clear the variables that select a cube-map face.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void GraphicsOutput::
|
|
clear_cube_map_selection() {
|
|
_cube_map_index = -1;
|
|
_cube_map_dr = NULL;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GraphicsOutput::trigger_flip
|
|
// Access: Public
|
|
// Description: Set the flip_ready flag, only if legal to do so.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void GraphicsOutput::
|
|
trigger_flip() {
|
|
if (!_gsg->get_properties().is_single_buffered()) {
|
|
_flip_ready = true;
|
|
}
|
|
}
|
|
|