124 lines
4.9 KiB
HTML
124 lines
4.9 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<title>LuaPerks</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="generator" content="HelpNDoc Personal Edition 3.8.0.560">
|
|
<link type="text/css" rel="stylesheet" media="all" href="css/reset.css" />
|
|
<link type="text/css" rel="stylesheet" media="all" href="css/base.css" />
|
|
<link type="text/css" rel="stylesheet" media="all" href="css/hnd.css" />
|
|
<!--[if lte IE 8]>
|
|
<link type="text/css" rel="stylesheet" media="all" href="css/ielte8.css" />
|
|
<![endif]-->
|
|
<style type="text/css">
|
|
#topic_header
|
|
{
|
|
background-color: #EFEFEF;
|
|
}
|
|
</style>
|
|
<script type="text/javascript" src="js/jquery.min.js"></script>
|
|
<script type="text/javascript" src="js/hnd.js"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function()
|
|
{
|
|
if (top.frames.length == 0)
|
|
{
|
|
var sTopicUrl = top.location.href.substring(top.location.href.lastIndexOf("/") + 1, top.location.href.length);
|
|
top.location.href = "fceux.html?" + sTopicUrl;
|
|
}
|
|
else if (top && top.FrameTOC && top.FrameTOC.SelectTocItem)
|
|
{
|
|
top.FrameTOC.SelectTocItem("LuaPerks");
|
|
}
|
|
});
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="topic_header">
|
|
<div id="topic_header_content">
|
|
<h1>LuaPerks</h1>
|
|
|
|
<div id="topic_breadcrumb">
|
|
<a href="LuaScripting.html">Lua Scripting</a> ›› </div>
|
|
</div>
|
|
<div id="topic_header_nav">
|
|
<a href="LuaScripting.html"><img src="img/arrow_up.png" alt="Parent"/></a>
|
|
|
|
<a href="LuaFunctionsList.html"><img src="img/arrow_left.png" alt="Previous"/></a>
|
|
|
|
<a href="LuaBot.html"><img src="img/arrow_right.png" alt="Next"/></a>
|
|
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<div id="topic_content">
|
|
|
|
<p></p>
|
|
<p><span class="rvts17">LuaPerks</span></p>
|
|
<p><span class="rvts17"><br/></span></p>
|
|
<p>The following Lua libraries are integrated into FCEUX win32-executable (statically linked) and are available for using in your scripts. You can also use any other Lua library by placing its .dll files into FCEUX folder.</p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p><span class="rvts62">IUP library</span></p>
|
|
<p><br/></p>
|
|
<p>IUP (Portable User Interface) is a toolkit for building graphical user interfaces.</p>
|
|
<p><br/></p>
|
|
<p>Usage example: \luaScripts\GUI-iup_example.lua </p>
|
|
<p><br/></p>
|
|
<p><a class="rvts79" href="http://www.tecgraf.puc-rio.br/iup/" target="_blank">http://www.tecgraf.puc-rio.br/iup/</a></p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p><span class="rvts62">IM library</span></p>
|
|
<p><br/></p>
|
|
<p>IM is a toolkit for Digital Imaging. The main goal of the library is to provide a simple API and abstraction of images for applications.</p>
|
|
<p>File formats supported: TIFF, BMP, PNG, JPEG, GIF and AVI. Image representation includes scientific data types. About a hundred Image Processing operations are available.</p>
|
|
<p><br/></p>
|
|
<p><a class="rvts79" href="http://www.tecgraf.puc-rio.br/im/" target="_blank">http://www.tecgraf.puc-rio.br/im/</a></p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p><span class="rvts62">CD library</span></p>
|
|
<p><br/></p>
|
|
<p>Canvas Draw is a graphics library.</p>
|
|
<p>The library contains functions to support both vector and image applications, and the visualization surface can be either a window or a more abstract surface, such as Image, Clipboard, Metafile, PS, and so on.</p>
|
|
<p><br/></p>
|
|
<p><a class="rvts79" href="http://www.tecgraf.puc-rio.br/cd/" target="_blank">http://www.tecgraf.puc-rio.br/cd/</a></p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p><span class="rvts62">LuaSocket library</span></p>
|
|
<p><br/></p>
|
|
<p>LuaSocket is a Lua extension library that is composed by two parts: a C core that provides support for the TCP and UDP transport layers, and a set of Lua modules that add support for the SMTP (sending e-mails), HTTP (WWW access) and FTP (uploading and downloading files) protocols and other functionality commonly needed by applications that deal with the Internet.</p>
|
|
<p><br/></p>
|
|
<p>Usage: netplay, local data transmission.</p>
|
|
<p><br/></p>
|
|
<p><a class="rvts79" href="http://w3.impa.br/~diego/software/luasocket/home.html" target="_blank">http://w3.impa.br/~diego/software/luasocket/home.html</a></p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p><span class="rvts62">WinAPI library</span></p>
|
|
<p><br/></p>
|
|
<p>This module provides basic tools for working with Windows system resources.</p>
|
|
<p><br/></p>
|
|
<p>Usage example: \luaScripts\JumpingFCEUXWindow.lua</p>
|
|
<p><br/></p>
|
|
<p><a class="rvts79" href="https://github.com/stevedonovan/winapi" target="_blank">https://github.com/stevedonovan/winapi</a></p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p><br/></p>
|
|
<p></p>
|
|
<p class="rvps2"><span class="rvts13">Created with the Personal Edition of HelpNDoc: </span><a class="rvts14" href="http://www.helpndoc.com">Free EBook and documentation generator</a></p>
|
|
</div>
|
|
|
|
<div id="topic_footer">
|
|
|
|
<div id="topic_footer_content">
|
|
2016</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|
|
|