/xbmc/visualizations/Vortex/angelscript/docs/manual/doc_adv_class_hierarchy.html
http://github.com/xbmc/xbmc · HTML · 102 lines · 86 code · 15 blank · 1 comment · 0 complexity · bb428231106db82cc50076621a59d08f MD5 · raw file
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
- <title>AngelScript: Class hierarchies</title>
- <link href="tabs.css" rel="stylesheet" type="text/css">
- <link href="doxygen.css" rel="stylesheet" type="text/css">
- </head><body>
- <!-- Generated by Doxygen 1.5.9 -->
- <div class="contents">
- <h1><a class="anchor" name="doc_adv_class_hierarchy">Class hierarchies </a></h1>AngelScript cannot automatically determine relationships between registered classes, so in order to establish the hierarchies for use within the script language it is necessary to do a bit more registration beyond the normal <a class="el" href="doc_register_type.html">object registration</a>.<p>
- Hierarchies can currently only be registered for <a class="el" href="doc_reg_basicref.html">reference types</a>, not for <a class="el" href="doc_register_val_type.html">value types</a>.<h2><a class="anchor" name="doc_adv_class_hierarchy_1">
- Establishing the relationship</a></h2>
- In order to let AngelScript know that two types are related you need to register the reference cast behaviours <a class="el" href="angelscript_8h.html#7e38df5b10ec8cbf2a688f1d114097c520746394824509f369f860ea1e96d1f6">asBEHAVE_REF_CAST</a> and <a class="el" href="angelscript_8h.html#7e38df5b10ec8cbf2a688f1d114097c59b23cc523e8aa4984e5e56e54b95dee4">asBEHAVE_IMPLICIT_REF_CAST</a>. The asBEHAVE_REF_CAST should be used if you only want to allow the cast through an explicit call with the <code><a class="el" href="doc_expressions.html#conversion">cast<class></a></code> operator. asBEHAVE_IMPLICIT_REF_CAST should be used when you want to allow the compiler to implicitly perform the cast as necessary.<p>
- Usually you'll want to use asBEHAVE_IMPLICIT_REF_CAST for casts from a derived type to the base type, and asBEHAVE_REF_CAST for casts from a base type to a derived type.<p>
- <div class="fragment"><pre class="fragment"><span class="comment">// Example REF_CAST behaviour</span>
- <span class="keyword">template</span><<span class="keyword">class</span> A, B>
- B* refCast(A* a)
- {
- <span class="comment">// If the handle already is a null handle, then just return the null handle</span>
- <span class="keywordflow">if</span>( !a ) <span class="keywordflow">return</span> 0;
- <span class="comment">// Now try to dynamically cast the pointer to the wanted type</span>
- B* b = <span class="keyword">dynamic_cast<</span>B*<span class="keyword">></span>(a);
- <span class="keywordflow">if</span>( b != 0 )
- {
- <span class="comment">// Since the cast was made, we need to increase the ref counter for the returned handle</span>
- b->addref();
- }
- <span class="keywordflow">return</span> b;
- }
- <span class="comment">// Example registration of the behaviour</span>
- r = engine-><a class="code" href="classas_i_script_engine.html#7ea3c93dea338b0287027de0e4895dcb" title="Registers a behaviour for the object type.">RegisterObjectBehaviour</a>(<span class="stringliteral">"base"</span>, <a class="code" href="angelscript_8h.html#7e38df5b10ec8cbf2a688f1d114097c520746394824509f369f860ea1e96d1f6" title="Explicit reference cast operator.">asBEHAVE_REF_CAST</a>, <span class="stringliteral">"derived@ f()"</span>, <a class="code" href="angelscript_8h.html#78f8f2c7f1c88b12e74a5ac47b4184ae" title="Returns an asSFuncPtr representing the function specified by the name.">asFUNCTION</a>((refCast<base,derived>)), <a class="code" href="angelscript_8h.html#3ec92ea3c4762e44c2df788ceccdd1e4c08652c72f1cc0dc81c37812fab0e253" title="A cdecl function that takes the object pointer as the last parameter.">asCALL_CDECL_OBJLAST</a>); assert( r >= 0 );
- r = engine-><a class="code" href="classas_i_script_engine.html#7ea3c93dea338b0287027de0e4895dcb" title="Registers a behaviour for the object type.">RegisterObjectBehaviour</a>(<span class="stringliteral">"derived"</span>, <a class="code" href="angelscript_8h.html#7e38df5b10ec8cbf2a688f1d114097c59b23cc523e8aa4984e5e56e54b95dee4" title="Implicit reference cast operator.">asBEHAVE_IMPLICIT_REF_CAST</a>, <span class="stringliteral">"base@ f()"</span>, <a class="code" href="angelscript_8h.html#78f8f2c7f1c88b12e74a5ac47b4184ae" title="Returns an asSFuncPtr representing the function specified by the name.">asFUNCTION</a>((refCast<derived,base>)), <a class="code" href="angelscript_8h.html#3ec92ea3c4762e44c2df788ceccdd1e4c08652c72f1cc0dc81c37812fab0e253" title="A cdecl function that takes the object pointer as the last parameter.">asCALL_CDECL_OBJLAST</a>); assert( r >= 0 );
- </pre></div><p>
- Note that it may be necessary to add extra parenthesis to the <code>asFUNCTION</code> macro so that the preprocessor doesn't interpret the <code>,</code> in the template declaration as the argument separator in the macro.<p>
- Remember that it is legal for the script to attempt a cast on a null pointer, in which case the result is also a null pointer. This means that the reference cast behaviour must not be implemented as a virtual class method, because then the call will crash if the object pointer is null.<h2><a class="anchor" name="doc_adv_class_hierarchy_2">
- Inherited methods and properties</a></h2>
- Just as relationships cannot be determined, there is also no way to automatically let AngelScript add inherited methods and properties to derived types. The reason for this is that method pointers and property offsets may differ between the base class and derived class, especially when multiple inheritance is used, and there is no way to automatically determine exactly what the difference is.<p>
- For this reason the application needs to register all the inherited methods and properties for the derived classes, which may lead to a bit of duplicate code. However, you may be able to avoid the duplication through a bit of clever thinking. Here is an example of registering the methods and properties for a base class and the derived class (registration of behaviours has been omitted for briefness):<p>
- <div class="fragment"><pre class="fragment"><span class="comment">// The base class</span>
- <span class="keyword">class </span>base
- {
- <span class="keyword">public</span>:
- <span class="keyword">virtual</span> <span class="keywordtype">void</span> aMethod();
-
- <span class="keywordtype">int</span> aProperty;
- };
- <span class="comment">// The derived class</span>
- <span class="keyword">class </span>derived : <span class="keyword">public</span> base
- {
- <span class="keyword">public</span>:
- <span class="keyword">virtual</span> <span class="keywordtype">void</span> aNewMethod();
-
- <span class="keywordtype">int</span> aNewProperty;
- };
- <span class="comment">// The code to register the classes</span>
- <span class="comment">// This is implemented as a template function, to support multiple inheritance</span>
- <span class="keyword">template</span> <<span class="keyword">class</span> T>
- <span class="keywordtype">void</span> RegisterBaseMembers(<a class="code" href="classas_i_script_engine.html" title="The engine interface.">asIScriptEngine</a> *engine, <span class="keyword">const</span> <span class="keywordtype">char</span> *type)
- {
- <span class="keywordtype">int</span> r;
- r = engine-><a class="code" href="classas_i_script_engine.html#6686c12ef37f4a4b1f9e90997b4756d0" title="Registers a method for the object type.">RegisterObjectMethod</a>(type, <span class="stringliteral">"void aMethod()"</span>, <a class="code" href="angelscript_8h.html#7345e6b3afabec24efd0ff77886d49a6" title="Returns an asSFuncPtr representing the class method specified by class and method...">asMETHOD</a>(T, aMethod), <a class="code" href="angelscript_8h.html#3ec92ea3c4762e44c2df788ceccdd1e4ea516c8742acc1edff6a43dc1bb09e96" title="A thiscall class method.">asCALL_THISCALL</a>); assert( r >= 0 );
-
- r = engine-><a class="code" href="classas_i_script_engine.html#33f3cd249307f5f11120a395579410f6" title="Registers a property for the object type.">RegisterObjectProperty</a>(type, <span class="stringliteral">"int aProperty"</span>, offsetof(T, aProperty)); assert( r >= 0 );
- }
- <span class="keyword">template</span> <<span class="keyword">class</span> T>
- <span class="keywordtype">void</span> RegisterDerivedMembers(<a class="code" href="classas_i_script_engine.html" title="The engine interface.">asIScriptEngine</a> *engine, <span class="keyword">const</span> <span class="keywordtype">char</span> *type)
- {
- <span class="keywordtype">int</span> r;
- <span class="comment">// Register the inherited members by calling </span>
- <span class="comment">// the registration of the base members</span>
- RegisterBaseMembers<T>(engine, type);
- <span class="comment">// Now register the new members</span>
- r = engine->RegisterObjectMethod(type, <span class="stringliteral">"void aNewMethod()"</span>, <a class="code" href="angelscript_8h.html#7345e6b3afabec24efd0ff77886d49a6" title="Returns an asSFuncPtr representing the class method specified by class and method...">asMETHOD</a>(T, aNewMethod), <a class="code" href="angelscript_8h.html#3ec92ea3c4762e44c2df788ceccdd1e4ea516c8742acc1edff6a43dc1bb09e96" title="A thiscall class method.">asCALL_THISCALL</a>); assert( r >= 0 );
- r = engine->RegisterObjectProperty(type, <span class="stringliteral">"int aProperty"</span>, offsetof(T, aProperty)); assert( r >= 0 );
- }
- <span class="keywordtype">void</span> RegisterTypes(<a class="code" href="classas_i_script_engine.html" title="The engine interface.">asIScriptEngine</a> *engine)
- {
- <span class="keywordtype">int</span> r;
- <span class="comment">// Register the base type</span>
- r = engine-><a class="code" href="classas_i_script_engine.html#29c6c087c8c5b5cdb6271cfd161cc5a6" title="Registers a new object type.">RegisterObjectType</a>(<span class="stringliteral">"base"</span>, 0, <a class="code" href="angelscript_8h.html#855d86fa9ee15b9f75e553ee376b5c7a9450e038342b36c745858d2e5ae4b861" title="A reference type.">asOBJ_REF</a>); assert( r >= 0 );
- RegisterBaseMembers<base>(engine, <span class="stringliteral">"base"</span>);
- <span class="comment">// Register the derived type</span>
- r = engine->RegisterObjectType(<span class="stringliteral">"derived"</span>, 0, <a class="code" href="angelscript_8h.html#855d86fa9ee15b9f75e553ee376b5c7a9450e038342b36c745858d2e5ae4b861" title="A reference type.">asOBJ_REF</a>); assert( r >= 0 );
- RegisterDerivedMembers<derived>(engine, <span class="stringliteral">"derived"</span>);
- }
- </pre></div> </div>
- <hr size="1"><address style="text-align: right;"><small>Generated on Wed Dec 16 19:34:50 2009 for AngelScript by
- <a href="http://www.doxygen.org/index.html">
- <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.9 </small></address>
- </body>
- </html>