SDL Framework RSS
NAVIGATION >>
HOME API TOOLS FORUM REPORT BUGS
:. SciTE Ru-Board Edition for SDLFW
RSS

SciTE is a SCIntilla based Text Editor. Originally built to demonstrate Scintilla, it has grown to be a generally useful editor with facilities for building and running programs.

It is best used for jobs with simple configurations - one of its best uses is for building test and demonstration programs as well as SciTE and Scintilla themselves.

All modifications of original SciTE editor has been developed by persons from Ru-Board community.

Main Features
  • Only for Windows
  • Extensive support for Lua programming (debugging, smart highlighting)
  • Further enhance functionality of SciTE source code editor to satisfy needs of its users
  • Maintain high level of customization
  • Provide additional scripts and utilities
:: SDLFW REQUIRED

1.7.1

or better
:: PLATFORMS SUPPORTED
WINDOWS
:: POWERED BY
SciTE
:: DOWNLOAD
DOWNLOAD
:. Simple Password Encryption
Add an password to protect your Zip/Resource files.

Enter a password (For Zip file)
(you should be put it on your Zip/Resource file)

Password encoded data (For Lua Script)
(you should be passed as param to ZIP_SetPassword)

:. Better Password Encryption
Add an password to protect your Zip/Resource files.

Enter a string

Password encoded data (For Zip file)
(you should be put it on your Zip/Resource file)

Password encoded data (For Lua Script)
(you should be passed as param to ZIP_SetPassword)


Usage Password Encryption
local zip = ZIP_OpenFile( SDLFW_PATH .. "../samples/media/res.zip" )
if ( zip ~= nil ) then
  ZIP_EnableEncryption( zip, true )
  ZIP_SetPassword     ( zip, "SGVsbG8gV29ybGQ=" )
  local data = ZIP_RWFromFile( zip, "res/images/bg512x384-1.bmp" )
  if ( data ~= nil ) then
    image = SDL_LoadBMP_RW( data, 1 )
    if ( image ~= nil ) then
      SDL_BlitSurface( image, nil, screen, nil )
      SDL_Flip( screen )
      SDL_FreeSurface( image )
    end
  end
  ZIP_CloseFile( zip )
end
:: SDLFW REQUIRED

1.6

or better
SourceForge.net
SDLFW.sf.net Except where otherwise noted, content on this site is
licensed under a Creative Commons Attribution 3.0 License.