There are some very good books about Lua. What they cannot cover is the big picture, when it comes to real applications (doc/view-type of applications). The interesting things are around those questions:
- Use C++ in Lua or Lua in C++?
- Who gets the main-loop?
- What plays where?
- How are model (document) and Lua-State kept in sync? Should the model be translated to lua-data and passed to the state and get back?
- Or should the Lua-state act directly on the model by lots of access-functions?
- ... probably much more.
Hence my Question: Which open-source-progams are worth to be studied in order to learn about those aspects?