|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The Loader interface is used to specify the location and elements of a file format to load. The interface is used to give loaders of various file formats a common public interface. Ideally the Scene interface will be implemented to give the user a consistent interface to extract the data.
Scene
Field Summary | |
static int |
LOAD_ALL
This flag enables the loading of all objects into the scene. |
static int |
LOAD_BACKGROUND_NODES
This flag enables the loading of background objects into the scene. |
static int |
LOAD_BEHAVIOR_NODES
This flag enables the loading of behaviors into the scene. |
static int |
LOAD_FOG_NODES
This flag enables the loading of fog objects into the scene. |
static int |
LOAD_LIGHT_NODES
This flag enables the loading of light objects into the scene. |
static int |
LOAD_SOUND_NODES
This flag enables the loading of sound objects into the scene. |
static int |
LOAD_VIEW_GROUPS
This flag enables the loading of view (camera) objects into the scene. |
Method Summary | |
java.lang.String |
getBasePath()
Returns the current base path setting. |
java.net.URL |
getBaseUrl()
Returns the current base URL setting. |
int |
getFlags()
Returns the current loading flags setting. |
Scene |
load(java.io.Reader reader)
This method loads the Reader and returns the Scene containing the scene. |
Scene |
load(java.lang.String fileName)
This method loads the named file and returns the Scene containing the scene. |
Scene |
load(java.net.URL url)
This method loads the named file and returns the Scene containing the scene. |
void |
setBasePath(java.lang.String pathName)
This method sets the base path name for data files associated with the file passed into the load(String) method. |
void |
setBaseUrl(java.net.URL url)
This method sets the base URL name for data files associated with the file passed into the load(URL) method. |
void |
setFlags(int flags)
This method sets the load flags for the file. |
Field Detail |
public static final int LOAD_LIGHT_NODES
public static final int LOAD_FOG_NODES
public static final int LOAD_BACKGROUND_NODES
public static final int LOAD_BEHAVIOR_NODES
public static final int LOAD_VIEW_GROUPS
public static final int LOAD_SOUND_NODES
public static final int LOAD_ALL
Method Detail |
public Scene load(java.lang.String fileName) throws java.io.FileNotFoundException, IncorrectFormatException, ParsingErrorException
public Scene load(java.net.URL url) throws java.io.FileNotFoundException, IncorrectFormatException, ParsingErrorException
public Scene load(java.io.Reader reader) throws java.io.FileNotFoundException, IncorrectFormatException, ParsingErrorException
public void setBaseUrl(java.net.URL url)
public void setBasePath(java.lang.String pathName)
public java.net.URL getBaseUrl()
public java.lang.String getBasePath()
public void setFlags(int flags)
public int getFlags()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |