⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basic.lua

📁 脚本编程语言
💻 LUA
字号:
-- tolua: basic utility functions-- Written by Waldemar Celes-- TeCGraf/PUC-Rio-- Jul 1998-- Last update: Apr 2003-- $Id: $-- This code is free software; you can redistribute it and/or modify it.-- The software provided hereunder is on an "as is" basis, and-- the author has no obligation to provide maintenance, support, updates,-- enhancements, or modifications.-- Basic C types and their corresponding Lua types-- All occurrences of "char*" will be replaced by "_cstring",-- and all occurrences of "void*" will be replaced by "_userdata" _basic = { ['void'] = '', ['char'] = 'number', ['int'] = 'number', ['short'] = 'number', ['long'] = 'number', ['unsigned'] = 'number', ['float'] = 'number', ['double'] = 'number', ['_cstring'] = 'string', ['_userdata'] = 'userdata', ['char*'] = 'string', ['void*'] = 'userdata', ['bool'] = 'boolean', ['lua_Object'] = 'value', ['LUA_VALUE'] = 'value',    -- for compatibility with tolua 4.0}_basic_ctype = { number = "double", string = "const char*", userdata = "void*", boolean = "bool",}-- List of user defined types-- Each type corresponds to a variable name that stores its tag value._usertype = {}-- List of types that have to be collected_collect = {}-- List of auto renaming_renaming = {}function appendrenaming (s) local b,e,old,new = strfind(s,"%s*(.-)%s*@%s*(.-)%s*$")	if not b then	 error("#Invalid renaming syntax; it should be of the form: pattern@pattern")	end	tinsert(_renaming,{old=old, new=new})endfunction applyrenaming (s)	for i=1,getn(_renaming) do	 local m,n = gsub(s,_renaming[i].old,_renaming[i].new)		if n ~= 0 then		 return m		end	end	return nilend-- Error handlerfunction tolua_error (s,f) local out = _OUTPUT _OUTPUT = _STDERR if strsub(s,1,1) == '#' then  write("\n** tolua: "..strsub(s,2)..".\n\n")  if _curr_code then   local _,_,s = strfind(_curr_code,"^%s*(.-\n)") -- extract first line   if s==nil then s = _curr_code end   s = gsub(s,"_userdata","void*") -- return with 'void*'   s = gsub(s,"_cstring","char*")  -- return with 'char*'   write("Code being processed:\n"..s.."\n")  end else  print("\n** tolua internal error: "..f..s..".\n\n")  return end _OUTPUT = outendfunction warning (msg) local out = _OUTPUT _OUTPUT = _STDERR write("\n** tolua warning: "..msg..".\n\n") _OUTPUT = outend-- register an user defined type: returns full typefunction regtype (t) local ft = findtype(t)	if isbasic(t) then	 return t	end if not ft then		return appendusertype(t) endend-- return type name: returns full typefunction typevar(type) if type == '' or type == 'void' then  return type else		local ft = findtype(type)  if ft then   return ft  end		_usertype[type] = type		return type	endend-- check if basic typefunction isbasic (type) local t = gsub(type,'const ','') local m,t = applytypedef(t) local b = _basic[t] if b then  return b,_basic_ctype[b] end return nilend-- split string using a tokenfunction split (s,t) local l = {n=0} local f = function (s)  l.n = l.n + 1  l[l.n] = s  return "" end local p = "%s*(.-)%s*"..t.."%s*" s = gsub(s,"^%s+","") s = gsub(s,"%s+$","") s = gsub(s,p,f) l.n = l.n + 1 l[l.n] = gsub(s,"(%s%s*)$","") return lend-- concatenate strings of a tablefunction concat (t,f,l) local s = '' local i=f while i<=l do  s = s..t[i]  i = i+1  if i <= l then s = s..' ' end end return send-- concatenate all parameters, following output rulesfunction concatparam (line, ...) local i=1 while i<=arg.n do  if _cont and not strfind(_cont,'[%(,"]') and      strfind(arg[i],"^[%a_~]") then 	    line = line .. ' '   end  line = line .. arg[i]  if arg[i] ~= '' then   _cont = strsub(arg[i],-1,-1)  end  i = i+1 end if strfind(arg[arg.n],"[%/%)%;%{%}]$") then   _cont=nil line = line .. '\n' end	return lineend-- output linefunction output (...) local i=1 while i<=arg.n do  if _cont and not strfind(_cont,'[%(,"]') and      strfind(arg[i],"^[%a_~]") then 	    write(' ')   end  write(arg[i])  if arg[i] ~= '' then   _cont = strsub(arg[i],-1,-1)  end  i = i+1 end if strfind(arg[arg.n],"[%/%)%;%{%}]$") then   _cont=nil write('\n') endend

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -