Jump to content

wayneg

Members
  • Posts

    115
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

wayneg's Achievements

Newbie

Newbie (1/14)

15

Reputation

  1. would this be the right path to success? Get Sqlite3 here: https://www.sqlite.org/download.html Get DLL here: https://www.dll-files.com/lua5.1.dll.html Rename Lua5.1.dll to sqlite3.dll regsvr32 C:\Windows\System32\sqlite3.dll Directory of C:\Temp <DIR> luasql lua5.1.exe sqlite3.dll hello.lua require "luasql.sqlite3" env = luasql.sqlite3() conn = env:connect("test.sqlite") assert(conn:execute("create table if not exists tbl1(one varchar(10), two smallint)")) assert(conn:execute("insert into tbl1 values('hello!',10)")) assert(conn:execute("insert into tbl1 values('goodbye',20)")) cursor = assert(conn:execute("select * from tbl1")) row = {} while cursor:fetch(row) do print(table.concat(row, '|')) end cursor:close() conn:close() env:close()
  2. Do you think tcp and udp will be on different thread?
  3. Will the leadwerks client use a separate thread to send and receive packets?
  4. When I see something this it makes me think, and understand where the bottlenecks occur and why. This may require different design approaches, and let's face it, in the end it's all about performance.
  5. wayneg

    Vegetation Demo

    Looks like great start, and I love the performance, just wondering: Whats the algorithm for tree generation look like? What parameters are available to the algorithm ? If I decide a tree at x,y,z doesn't exist anymore is it easy to not show it? Can I add extra stuff like algorithm for rocks, flowers ?
  6. While beta drivers fixed LE it impacted some my newer games, ugh. Maybe AMD gets there act together before windows 10.
  7. Windows update clearly fixed the issue on integrated graphics intel machine. Who would of thought.
  8. Can't wait for commercial version of Oculus VR, let's hope more Leadwerks goodness follows! Imagine nice sunny day, sandy beach, wind, waves, and a few birds all this on cold winters day, Relax while Leadwerks and Oculus take you away. Ahhhhh
  9. So what would Rick charge to flattened the RakNet classes and make it more procedural, and have Functions like: Connect(), Host(), CreateBitStream(), WriteBitStream(), ReadBitStream(), Send(), NetworkLoop(), BindEvent() ? What would a new user need to do ? Would a simple chat program be good example? What limitations might there be?
  10. This possible for LUA script, or C++ ? This something I can add ?
  11. Be nice to see normals and flip one or more faces.
  12. LE 3.1 (current) - could duplicate to some degree the issue, but also had stability issues while using GUI. LE 3.1 (beta) - could NOT duplicate issues, beta was fast and had no stability issues that I encountered. note: perhaps a terrain is required, but I didn't try that.
  13. cool, like to check it out, maybe learn something new.
  14. Josh, Doesn't this seem to suggest a solution, especially since the objects in question are static ? Or maybe he just hides that stuff once he enters his structure ? http://http.developer.nvidia.com/GPUGems2/gpugems2_chapter06.html
×
×
  • Create New...