historical/toontown-classic.git/panda/include/modelLoadRequest.I

62 lines
1.6 KiB
Text
Raw Normal View History

2024-01-16 11:20:27 -06:00
/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file modelLoadRequest.I
* @author drose
* @date 2006-08-29
*/
/**
* Returns the filename associated with this asynchronous ModelLoadRequest.
*/
INLINE const Filename &ModelLoadRequest::
get_filename() const {
return _filename;
}
/**
* Returns the LoaderOptions associated with this asynchronous
* ModelLoadRequest.
*/
INLINE const LoaderOptions &ModelLoadRequest::
get_options() const {
return _options;
}
/**
* Returns the Loader object associated with this asynchronous
* ModelLoadRequest.
*/
INLINE Loader *ModelLoadRequest::
get_loader() const {
return _loader;
}
/**
* Returns true if this request has completed, false if it is still pending or
* if it has been cancelled. When this returns true, you may retrieve the
* model loaded by calling get_model().
* Equivalent to `req.done() and not req.cancelled()`.
* @see done()
*/
INLINE bool ModelLoadRequest::
is_ready() const {
return (FutureState)AtomicAdjust::get(_future_state) == FS_finished;
}
/**
* Returns the model that was loaded asynchronously, if any, or null if there
* was an error. It is an error to call this unless done() returns true.
* @deprecated Use result() instead.
*/
INLINE PandaNode *ModelLoadRequest::
get_model() const {
nassertr_always(done(), nullptr);
return (PandaNode *)_result;
}