Вот просмоторщик картинок следующих форматов: BMP,PNM,XPM,XCF,PCX,GIF,JPG,TIF,PNG,LBM. Умеет показывать физическое разрешение картинки и ее вес.
Код:
-- image viewer v0.1 by zaero
-- http://bbrclan.dc-swat.net.ru/dreamshell/
-- This version does not support that was for is planned
-- Коментарии не давал т.к. этот скрипт основан на примерах Свата.
if argv.n < 1 then
print"\n==========================================="
print"========Lua image viewer v0.1 by zaero====="
print"==========================================="
print"\n Flags:"
print" -i -- information on picture"
print" -o -- open file"
print" -v -- version"
print" Usage:\n view flag time(if need)"
print" Exemple:\n view -o /rd/image/logos/DSXT1.jpg 3000"
print" view -i image.jpg"
end
SDL.SDL_BlitSurface = SDL.SDL_UpperBlit;
if argv[1]=="-v" then
print"\nLua image viewer v0.1 by zaero, 1.12.2005";
end
function ShowIMG_xy(file, screen, x, y)
local img_t, dest, slide, time dest = SDL.SDL_Rect_new();
img_t = SDL.IMG_Load(file);
if img_t == nil then
print("DS_ERROR: Couldn't load", file);
return;
end
dest.x =x
dest.y = y
SDL.SDL_BlitSurface(img_t, NULL, screen, dest);
SDL.SDL_Flip(screen);
SDL.SDL_FreeSurface(img_t);
end
function WhatTime(time)
local time
if argv[3] == nil then
time = 3000
else
time = argv[3]
end
SDL.SDL_Delay(time)
end
if argv[1] == "-o" then
DS.ds_draw_shutdown();
SDL.SDL_Init(SDL.SDL_INIT_VIDEO);
flags = SDL.bit_or(SDL.SDL_HWSURFACE, SDL.SDL_DOUBLEBUF);
screen = SDL.SDL_SetVideoMode(640,480,16,flags);
ShowIMG_xy(argv[2], screen, 0, 0)
WhatTime(time);
DS.ds_draw_init();
end
if argv[1] == "-i" then
local width_im, dest
width_im = SDL.IMG_Load(argv[2])
if width_im == nil then
print("DS_ERROR: Couldn't load", argv[2]);
return;
end
print("-----alert--------------------------------")
print("\nInformation on picture ",'"',argv[2],'"\n')
print("-----end----------------------------------")
print("\nWidth= ",width_im.w,"x",width_im.h)
f = DS.fs_open(argv[2],DS.O_RDONLY)
sizef = DS.fs_total(f);
print("Size =",sizef)
end
Небольшая примитивная игрушка.
Я переделал ее под DS, это полностью рабочая версия, в отличии от предыдущей:)
Ресурсы ее я прикрепил к сообщению.
Код:
-- meteor_shower.lua
-- by Thatcher Ulrich <tu@tulrich.com> November 2001 (updated June 2003)
-- Modified for DS and DSS by SWAT (http://www.dc-swat.net.ru)
SDL.SDL_BlitSurface = SDL.SDL_UpperBlit;
-- keep a table of previously-loaded sprites, to maximize sharing.
sprite_cache = {}
function sprite(file)
-- sprite constructor. Pass in a bitmap filename. Returns an SDL_Surface which
-- is ready to be blitted.
if sprite_cache[file] then
return sprite_cache[file]
end
local temp, s;
-- Load the sprite image
s = SDL.SDL_LoadBMP(file);
if s == nil then
print("Couldn't load " .. file .. ": " .. SDL.SDL_GetError());
return nil
end
-- Set transparent color to black (?)
SDL.SDL_SetColorKey(s, SDL.SDL_SRCCOLORKEY + SDL.SDL_RLEACCEL, 0)
-- Convert sprite to video format
temp = SDL.SDL_DisplayFormat(s);
SDL.SDL_FreeSurface(s);
if temp == nil then
print("Couldn't convert background: " .. SDL.SDL_GetError());
return nil
end
s = temp;
sprite_cache[file] = s
return s
end
function show_sprite(screen, sprite, x, y)
-- make sure we have a temporary rect structure
if not temp_rect then
temp_rect = SDL.SDL_Rect_new()
end
temp_rect.x = x - sprite.w / 2
temp_rect.y = y - sprite.h / 2
temp_rect.w = sprite.w
temp_rect.h = sprite.h
SDL.SDL_BlitSurface(sprite, NULL, screen, temp_rect)
end
--
-- vec2 type
--
vec2_meta = nil-- be sure to re-init the vector type if we reload
function vec2(t)
-- constructor
if not vec2_meta then
vec2_meta = {}
vec2_meta["__add"] =
function (a, b) return vec2{ a.x + b.x, a.y + b.y } end
vec2_meta.__sub =
function (a, b) return vec2{ a.x - b.x, a.y - b.y } end
vec2_meta.__mul =
function (a, b)
if tonumber(a) then
return vec2{ a * b.x, a * b.y }
elseif tonumber(b) then
return vec2{ a.x * b, a.y * b }
else
-- dot product.
return (a.x * b.x) + (a.y * b.y)
end
end
vec2_meta.__unm =
function (a) return vec2{ -a.x, -a.y } end
end
local v = {}
if type(t) == 'table' or getmetatable(t) == vec2_meta then
v.x = tonumber(t[1]) or tonumber(t.x) or 0
v.y = tonumber(t[2]) or tonumber(t.y) or 0
else
v.x = 0
v.y = 0
end
setmetatable(v, vec2_meta)
v.normalize = vec2_normalize
return v
end
function vec2_normalize(a)
-- normalizes a. If a has 0 or near-zero length, sets a to an arbitrary unit vector (go ahead and sue me!)
local d2 = a * a
if d2 < 0.000001 then
-- infinitesimal vector. Return arbitrary unit vector!
a.x = 1
a.y = 0
else
-- divide by the length to get a unit vector
local length = math.sqrt(d2)
a.x = a.x / length
a.y = a.y / length
end
end
update_period = 33,-- interval between calls to update_tick(), in ms
active = 1,
screen = nil,
background = nil,
new_actors = {},
actors = {},
add_actor = function(self, a)
assert(a)
table.insert(self.new_actors, a)
end
}
function handle_event(event)
-- called by main loop when it detects an SDL event.
if event.type == SDL.SDL_KEYDOWN then
localsym = event.key.keysym.sym
if sym == SDL.SDLK_q or sym == SDL.SDLK_ESCAPE then
gamestate.active = nil
elseif sym == SDL.SDLK_s then
-- take a screenshot...
SDL.SDL_SaveBMP(gamestate.screen, "screenshot.bmp")
end
elseif event.type == SDL.SDL_QUIT then
gamestate.active = nil
end
end
function update_tick()
-- called at regular intervals, to update the game state.
-- remove dead actors, and add in new actors
for i = 1, table.getn(gamestate.actors) do
if gamestate.actors[i].active then
-- add to the new list
table.insert(gamestate.new_actors, gamestate.actors[i])
end
end
gamestate.actors = gamestate.new_actors
gamestate.new_actors = {}
-- call the update handler for each actor
for i = 1, table.getn(gamestate.actors) do
gamestate.actors[i]:update(gamestate)
end
end
function render_frame(screen, background)
-- called to render a new frame.
-- draw the actors
for i = 1, table.getn(gamestate.actors) do
gamestate.actors[i]:render(screen)
end
-- flip
SDL.SDL_UpdateRect(screen, 0, 0, 0, 0)
end
function gameloop_iteration()
-- call this to update the game state. Runs update ticks and renders
-- according to elapsed time.
if gamestate.event_buffer == nil then
gamestate.event_buffer = SDL.SDL_Event_new()
end
-- consume any pending events
while SDL.SDL_PollEvent(gamestate.event_buffer) ~= 0 do
handle_event(gamestate.event_buffer)
end
-- run any necessary updates
local time = SDL.SDL_GetTicks();
local delta_ticks = time - gamestate.last_update_ticks
local update_count = 0
while delta_ticks > gamestate.update_period do
update_tick();
-- don't let more than 3 update ticks pile up before a render
if update_count >= 3 then
gamestate.last_update_ticks = time
break
end
end
-- if we did any updates, then render a frame
if update_count > 0 then
render_frame(gamestate.screen, gamestate.background)
gamestate.frames = gamestate.frames + 1
end
end
function engine_init(argv)
local width, height;
local video_bpp;
local videoflags;
local i
-- Initialize SDL
if SDL.SDL_Init(SDL.SDL_INIT_VIDEO) < 0 then
print("Couldn't initialize SDL: ",SDL.SDL_GetError());
exit(1);
end
videoflags = SDL.SDL_HWSURFACE + SDL.SDL_ANYFORMAT-- SDL.SDL_HWSURFACE was SDL.SDL_SWSURFACE; any benefit to that?
width = 800
height = 600
video_bpp = 16
argv = argv or {}
for i = 1, table.getn(argv) do
if argv[i] == "-width" then
width = tonumber(argv[i+1]);
i = i + 1
elseif argv[i] == "-height" then
height = tonumber(argv[i+1]);
i = i + 1
elseif argv[i] == "-fullscreen" then
videoflags = videoflags + SDL.SDL_FULLSCREEN
_ = [[
elseif
if ( strcmp(argv[argc-1], "-bpp") == 0 ) {
video_bpp = atoi(argv[argc]);
videoflags = SDL.bit_and(videoflags, ~SDL.SDL_ANYFORMAT);
--argc;
} else
if ( strcmp(argv[argc], "-fast") == 0 ) {
videoflags = FastestFlags(videoflags, width, height, video_bpp);
} else
if ( strcmp(argv[argc], "-hw") == 0 ) {
videoflags ^= SDL.SDL_HWSURFACE;
} else
if ( strcmp(argv[argc], "-flip") == 0 ) {
videoflags ^= SDL.SDL_DOUBLEBUF;
} else
if ( isdigit(argv[argc][0]) ) {
numsprites = atoi(argv[argc]);
]]; _ = nil;
else
print("Usage: main_program [-bpp N] [-hw] [-flip] [-fast] [-fullscreen] [numsprites]\n");
exit(1);
end
end
-- Set video mode
gamestate.screen = SDL.SDL_SetVideoMode(width, height, video_bpp, videoflags);
if gamestate.screen == nil then
print("Couldn't set ", width, "x", height, " video mode: ", SDL.SDL_GetError());
exit(2);
end
-- Print out information about our surfaces
print("Screen is at " .. gamestate.screen.format.BitsPerPixel .. " bits per pixel\n");
--if SDL.bit_and(gamestate.screen.flags, SDL.SDL_HWSURFACE) == SDL.SDL_HWSURFACE then
--print("Screen is in video memory");
--else
--print("Screen is in system memory");
--end
--if SDL.bit_and(gamestate.screen.flags, SDL.SDL_DOUBLEBUF) == SDL.SDL_DOUBLEBUF then
--print("Screen has double-buffering enabled");
--end
-- init timer
gamestate.begin_time = SDL.SDL_GetTicks();
gamestate.last_update_ticks = gamestate.begin_time;
end
function engine_loop()
-- Loop, blitting sprites and waiting for a keystroke
while gamestate.active do
gameloop_iteration()
end
-- Print out some timing information
localcurrent_time = SDL.SDL_GetTicks();
if current_time > gamestate.begin_time then
print((gamestate.frames * 1000) / (current_time - gamestate.begin_time) .. " frames per second\n");
end
SDL.SDL_Quit();
end
engine_init{
--"-fullscreen"
}
--
-- game-specific stuff
--
--
-- actor type
--
function actor_update(self, gs)
-- update this actor. Default does linear motion according to velocity.
-- gs is the gamestate
localdt = gamestate.update_period / 1000.0
-- update according to velocity & time
localdelta = self.velocity * dt
self.position = self.position + delta
-- wrap around at screen edge
if self.position.x < -self.radius and self.velocity.x <= 0 then
self.position.x = self.position.x + (gs.screen.w + self.radius * 2)
end
if self.position.x > gs.screen.w + self.radius and self.velocity.x >= 0 then
self.position.x = self.position.x - (gs.screen.w + self.radius * 2)
end
if self.position.y < -self.radius and self.velocity.y <= 0 then
self.position.y = self.position.y + (gs.screen.h + self.radius * 2)
end
if self.position.y > gs.screen.h + self.radius and self.velocity.y >= 0 then
self.position.y = self.position.y - (gs.screen.h + self.radius * 2)
end
end
function actor_render(self, screen)
-- draw this actor. Default implementation blits the actor's sprite
-- to the screen at the actor's position.
show_sprite(screen, self.sprite, self.position.x, self.position.y)
end
function actor(t)
-- actor constructor. Pass in the name of a sprite bitmap.
local a = {}
-- copy elements of t
for k,v in t do
a[k] = v
end
a.type = "actor"
a.active = 1
a.sprite = (t[1] or t.sprite and sprite(t[1] or t.sprite)) or nil
a.position = vec2(t.position)
a.velocity = vec2(t.velocity)
a.radius = a.radius
or (a.sprite and a.sprite.w * 0.5)
or 0
a.update = actor_update
a.render = actor_render
return a
end
--
-- particle type
--
function particle_update(self, gs)
-- update this particle. Do linear motion, and expire after a while.
-- gs is the gamestate
localdt = gamestate.update_period / 1000.0
-- update according to velocity & time
localdelta = self.velocity * dt
self.position = self.position + delta
self.countdown = self.countdown - gamestate.update_period
if self.countdown <= 0 then
-- kill ourself
self.active = nil
end
end
function particle_render(self, screen)
-- draw this actor. Default implementation blits the actor's sprite
-- to the screen at the actor's position.
show_sprite(screen, self.sprite, self.position.x, self.position.y)
end
-- shared particle sprite. @@ change this to a general shared
-- resource table used by sprite() constructor.
particle_sprite = nil
function particle(t)
-- particle constructor.
if not particle_sprite then
particle_sprite = sprite("particle.bmp")
end
-- start with actor defaults.
local a = actor(t)
a.sprite = particle_sprite
a.countdown = a.countdown or 500
function particle_spray(position, velocity, count, spray_speed, average_life)
-- make a spray of count particles at the given location. The given
-- velocity will be applied to all particles. The spray_speed determines
-- the average dispersion speed. average_life determines the average
-- lifetime of the particle in ms.
for i = 1, count do
local p = particle{}
-- need to generate a dispersion vector, of length <= 1
-- generate random vectors until we get a good one. @@ could also try a table.
local dir
repeat
dir = vec2{ math.random() * 2 - 1, math.random() * 2 - 1 }
until dir * dir <= 1
p.position = position
p.velocity = velocity + dir * spray_speed
-- check for collisions against all other actors
for i = 1, table.getn(gs.actors) do
locala = gs.actors[i]
-- if the actor has mass and isn't the player, then compute a gravitational acceleration towards it
if a.mass and a.type ~= 'player' then
local r = a.position - self.position
local d2 = r * r
if d2 < 100 * 100 then
local d = math.sqrt(d2)
if d * 2 > self.radius then
accel = accel + r * ((GRAVITY_CONSTANT * a.mass) / (d2 * d))
end
end
end
-- check for collisions, and respond
if a and a ~= self and a.collidable then
local disp = a.position - self.position
local distance_squared = disp * disp
local sum_radius_squared = (a.radius + self.radius) ^ 2
if distance_squared < sum_radius_squared then
-- we have a collision
-- call the collision handler.
handle_collision(self, a)
end
end
end
self.velocity = self.velocity + accel * dt
end
-- table of masses for the different asteroid sizes
asteroid_masses = { 25, 50, 100 }
ASTEROID_RESTITUTION = 0.3
-- soft speed-limit on asteroids
SPEED_TURNOVER_THRESHOLD = 500
function handle_asteroid_collision(a, b)
-- handles a collision between two asteroids, a and b.
-- impulse will be along the displacement vector between the two asteroids
local normal = b.position - a.position
normal:normalize()
local relative_vel = b.velocity - a.velocity
if relative_vel * normal >= 0 then
-- don't do collision response if asteroids are moving away from each other
return
end
-- separate the colliding asteroids by making them bounce
-- away from each other a la billiard balls.
local impulse_mag =
(1 + ASTEROID_RESTITUTION) * (relative_vel * normal)
/ (1 / a.mass + 1 / b.mass)
a.velocity = a.velocity + normal * (impulse_mag / a.mass)
b.velocity = b.velocity - normal * (impulse_mag / b.mass)
-- split each asteroid into two pieces
local collision_energy = 0.5 * (relative_vel * relative_vel) * (a.mass + b.mass)
local split_dir = vec2{ normal.y, -normal.x }
asteroid_take_damage(a, split_dir, -normal, collision_energy)
asteroid_take_damage(b, split_dir, normal, collision_energy)
-- spray some particles at the split point
localavg_velocity = (a.velocity + b.velocity) * 0.5
localavg_position = (a.position + b.position) * 0.5
particle_spray(avg_position, avg_velocity, (a.size + b.size) * 2, 100 + (a.size + b.size) * 20, 300)
end
function asteroid_take_damage(a, split_direction, collision_normal, collision_energy)
-- damage the asteroid; if it's damaged enough, split the asteroid a
-- into two pieces, along the given split_direction and along the
-- given collision normal
local split_speed = math.sqrt(2 * collision_energy / a.mass) * 0.35
-- asteroid takes damage; when its damage reaches 0 then it splits
-- in two.
a.hitpoints = a.hitpoints - collision_energy / 2000
if a.hitpoints > 0 then
-- collision is not violent enough to split this 'roid
return
end
local new_size = a.size - 1
if new_size < 1 then
-- can't split the smallest asteroid -- it just disintegrates.
a.active = nil
particle_spray(a.position, a.velocity, 6, 100, 300)
add_score(100)
return
end
-- spawn child asteroids
localdir
dir = (collision_normal + split_direction) * (1 / 1.414)
local child1 = asteroid{
size = new_size,
position = a.position,
velocity = a.velocity + dir * split_speed
}
child1.position = child1.position + dir * child1.radius * 2
gamestate:add_actor(child1)
dir = (collision_normal - split_direction) * (1 / 1.414)
local child2 = asteroid{
size = new_size,
position = a.position,
velocity = a.velocity + dir * split_speed
}
child2.position = child2.position + dir * child2.radius * 2
gamestate:add_actor(child2)
-- make some particles at the split point
particle_spray(a.position, a.velocity, 5 + a.size * 2, 100 + a.size * 20, 300)
-- kill a
a.active = nil
if a.size == 2 then
add_score(30)
else
add_score(10)
end
end
function pick_asteroid_image(size)
local image_table = asteroid_images[size]
-- pick one of the asteroid images at random
return image_table[math.random(table.getn(image_table))]
end
function asteroid(t)
-- constructor
-- start with a regular actor
local a = actor(t)
a.type = "asteroid"
a.collidable = 1
a.size = a.size or 3-- make sure caller defined one of the three sizes of asteroid
a.sprite = sprite(pick_asteroid_image(a.size))
a.radius = 0.5 * a.sprite.w
a.mass = asteroid_masses[a.size]
a.hitpoints = a.mass * a.mass
-- implement a soft speed-limit on asteroids
localspeed = math.sqrt(a.velocity * a.velocity)
if speed > SPEED_TURNOVER_THRESHOLD then
local new_speed = SPEED_TURNOVER_THRESHOLD + math.sqrt(speed - SPEED_TURNOVER_THRESHOLD)
a.velocity = a.velocity * (new_speed / speed)
end
-- attach the behavior handlers
a.update = asteroid_update
return a
end
--
-- random asteroid spewer
--
function asteroid_spewer(t)
-- constructs an actor that randomly spawns a new asteroid periodically
a.period = t.period or t[0] or 1000-- period, in ms, between spawning asteroids
a.countdown = a.period
a.render = function () end
a.update =
function (self, gs)
self.countdown = self.countdown - gs.update_period
if self.countdown < 0 then
-- timer has expired; spawn an asteroid
-- pick a random spot around the edge of the screen
local w, h = gs.screen.w, gs.screen.h
local edge = math.random(w * 2 + h * 2)
local pos
if edge < w then
pos = vec2{ edge, 0 }
elseif edge < w*2 then
pos = vec2{ edge - w, h }
elseif edge < w*2 + h then
pos = vec2{ 0, edge - w*2 }
else
pos = vec2{ w, edge - (w*2 + h) }
end
-- aim at the middle of the screen
local vel = vec2{ w/2, h/2 } - pos
vel:normalize()
vel = vel * (math.random(50) + 50)
gs:add_actor(
asteroid{
size = 3,
position = pos,
velocity = vel
}
)
-- reset the timer
self.countdown = self.period
end
end
return a
end
--
-- player actor type
--
function player_update(self, gs)
-- update this asteroid. watch for collisions with other actors.
localdt = gamestate.update_period / 1000
-- get the mouse position, and move the player position towards the mouse position
localm = {}
m.buttons, m.x, m.y = SDL.SDL_GetMouseState(0, 0)
localmpos = vec2{ m.x, m.y }
localdelta = mpos - self.position
localaccel =
delta * 50-- move towards the mouse cursor
- self.velocity * 10-- damping
self.velocity = self.velocity + accel * dt
-- spray some particles according to the acceleration
particle_spray(self.position, accel * -0.10, math.floor(math.sqrt(accel * accel) * 0.0015), 150, 200)
-- move ourself
actor_update(self, gs)
-- check for collisions against all other actors
for i = 1, table.getn(gs.actors) do
locala = gs.actors[i]
-- check for collisions, and respond
if a and a ~= self and a.collidable then
local disp = a.position - self.position
local distance_squared = disp * disp
local sum_radius_squared = (a.radius + self.radius) ^ 2
if distance_squared < sum_radius_squared then
-- we have a collision
-- call the collision handler.
handle_player_collision(self, a)
end
end
end
end
function handle_player_collision(a, b)
-- handles a collision between a player, a, and some other object, b
-- impulse will be along the displacement vector between the two asteroids
local normal = b.position - a.position
normal:normalize()
local relative_vel = b.velocity - a.velocity
if relative_vel * normal >= 0 then
-- don't do collision response if asteroids are moving away from each other
return
end
-- separate the colliding objects by making them bounce
-- away from each other a la billiard balls.
local impulse_mag =
(1 + ASTEROID_RESTITUTION) * (relative_vel * normal)
/ (1 / a.mass + 1 / b.mass)
if a.mass and a.mass > 0 then
a.velocity = a.velocity + normal * (impulse_mag / a.mass)
end
if b.mass and b.mass > 0 then
b.velocity = b.velocity - normal * (impulse_mag / b.mass)
end
if b.type == "asteroid" then
-- split asteroid 'b' into two pieces
local collision_energy = 0.5 * (relative_vel * relative_vel) * (a.mass + b.mass)
local split_dir = vec2{ normal.y, -normal.x }
asteroid_take_damage(b, split_dir, normal, collision_energy)
end
-- attach the behavior handlers
a.update = cursor_update
return a
end
--
-- player manager actor
--
SHIPS_PER_GAME = 3
BASE_SPEW_PERIOD = 2000
function player_manager_update(self, gs)
-- keep track of game functions
if self.state == "pre-setup" then
-- delay, and then enter setup mode.
self.countdown = self.countdown - gamestate.update_period
if self.countdown <= 0 then
self.state = "setup"
self.cursor.active = 1
gamestate:add_actor(self.cursor)
end
elseif self.state == "setup" then
if not self.cursor.active then
-- player has placed her ship. start playing.
-- deduct the ship that we just placed.
self.ships = self.ships - 1
self.state = "playing"
end
elseif self.state == "playing" then
if not self.player.active then
-- player has died.
if self.ships <= 0 then
-- game is over
self.state = "pre-attract"
self.countdown = 1000
else
-- set up for next ship
self.state = "pre-setup"
self.countdown = 1000
end
-- slow down the asteroid spawning
self.asteroid_spewer.period = BASE_SPEW_PERIOD
end
elseif self.state == "pre-attract" then
-- delay, and then enter attract mode
self.countdown = self.countdown - gamestate.update_period
if self.countdown <= 0 then
self.state = "attract"
end
elseif self.state == "attract" then
local m = {}
m.buttons, m.x, m.y = SDL.SDL_GetMouseState(0, 0)
if m.buttons > 0 then
-- start a new game.
self.state = "pre-setup"
self.ships = SHIPS_PER_GAME
self.score = 0
self.countdown = 1000
end
--elseif self.state == "" then
end
end
digit_sprites = nil
function player_manager_render(self, screen)
if self.state == "attract" then
show_sprite(screen, self.game_over_sprite, screen.w / 2, screen.h / 2)
else
-- show the ships remaining
local sprite = self.player.sprite
local x = sprite.w
local y = screen.h - sprite.h
for i = 1, self.ships do
show_sprite(screen, sprite, x, y)
x = x + sprite.w
end
end
-- show the score
if not digit_sprites then
digit_sprites = {}
for i = 0,9 do
digit_sprites[i] = sprite("d" .. i .. ".bmp")
end
end
-- keep a global pointer to the player_manager, for score management. @@ this is a bit grody.
if not manager then
manager = a
end
return a
end
if manager then
if manager.state == "playing" then
localscore0 = manager.score
-- increment the score
manager.score = manager.score + x
-- award free ships at various intervals
localthreshold = 0
localinterval = 10000
for i = 1, table.getn(free_ship_schedule) do
if score0 >= free_ship_schedule[i][1] then
threshold = free_ship_schedule[i][1]
interval = free_ship_schedule[i][2]
end
end
localdelta = math.floor((manager.score - threshold) / interval) - math.floor((score0 - threshold) / interval)
if delta > 0 then
-- award ships
manager.ships = manager.ships + delta
end
-- adjust asteroid spewing rate
localramp = math.exp(-manager.score / 10000) + 0.5
manager.asteroid_spewer.period = (1 + math.sin(manager.score / 500) * 0.25) * ramp * BASE_SPEW_PERIOD
end
end
end
--
-- game collision handler
--
-- I'm sidestepping the double-dispatch problem by just putting
-- the game-specific collision smarts in this function.
function handle_collision(a, b)
-- handles a collision between actors a and b.
-- uses the actor's "type" attributes to help decide what to do.
-- disp is the displacement vector; (b.position - a.position)
if a.type == "asteroid" and b.type == "asteroid" then
handle_asteroid_collision(a, b, disp)
end
-- @@ handle more collision cases here...
end
--
-- initialize the game
--
-- Generate a bunch of asteroids
for i = 1,10 do
gamestate:add_actor(
asteroid{
position = { math.random(gamestate.screen.w), math.random(gamestate.screen.h) },
velocity = { (math.random()*2 - 1) * 100, (math.random()*2 - 1) * 100 },-- pixels/sec
size = math.random(3)
}
)
end
-- create an asteroid spewer
spewer = asteroid_spewer{}
gamestate:add_actor(spewer)
-- create a player manager
gamestate:add_actor(
player_manager{
asteroid_spewer = spewer
}
)
-- run the game
engine_loop()
(Последний раз сообщение было отредактировано 06.06.2006 в 08:58, отредактировал пользователь SWAT.)
-- Наносим текст на кнопку.
SDL.GUI_ButtonSetCaption(button, label);
--SDL.GUI_ObjectDecRef(label);
-- Присваиваем действие к кнопке(функцию которую она выполнит).
-- local cb = SDL.GUI_CallbackCreate(func, nil, data);
-- SDL.GUI_ButtonSetClick(button, cb);
-- SDL.GUI_ObjectDecRef(cb);
-- Устанавливаем картинки к кнопке для разных ее режимов.
SDL.GUI_ButtonSetNormalImage(button, img.normal);
SDL.GUI_ButtonSetHighlightImage(button, img.highlight);
SDL.GUI_ButtonSetPressedImage(button, img.pressed);
SDL.GUI_ButtonSetDisabledImage(button, img.disabled);
return button
end
function callbackf(param)
if param == "Exit" then
SDL.GUI_SetRunning(0);
SDL.GUI_Quit();
end
end
function CreateContents(x, y, w, h)
-- Создаем панель(невидимую) на которой будем рисовать.
local box = SDL.GUI_PanelCreate("box", x, y, w, h);
-- Рисуем форму для ввода текста.
local input = SDL.GUI_TextEntryCreate("button", 20, 305, 200, 30, font, 32);
-- Устанавливаем в форме текст.
SDL.GUI_TextEntrySetText(input, "Exit");
-- Добавляем нашу форму в панель.
SDL.GUI_ContainerAdd(box, input);
-- SDL.GUI_ObjectDecRef(input);
-- Рисуем кнопку с помощью нашей функции.
local button = NormalButton("TestButton", 260, 350, font, btn_img, "OK", callbackf, SDL.GUI_TextEntryGetText(input));
Функции которые находянся в коментарии, являются бажными:(
Там есть проблема с типами аргументов, как всегда млин я с этим сталкиваюсь когда внедряю функции Си в lua.
В принципе главной проблемой является то, что к кнопке не назначить callback функцию, а на DecRef пофиг. А кнопка без действий, это не кнопка:)
Похоже придется выпускать обновление:)А то это уже не первый косяк который я заметил:rolleyes:
Все остальные функции GUI должны работать, теоретически:)все проверить нехватает времени.
(Последний раз сообщение было отредактировано 10.08.2006 в 19:20, отредактировал пользователь SWAT.)
-- Наносим текст на кнопку.
SDL.GUI_ButtonSetCaption(button, label);
SDL.GUI_ObjectDecRef(SDL.GUI_AnyToObject(label));
-- Присваиваем действие к кнопке(функцию которую она выполнит).
-- Эта функция есть только в поледнем обновлении.
local cb = SDL.GUI_LuaCallbackCreate(func);
SDL.GUI_ButtonSetClick(button, cb);
-- Устанавливаем картинки к кнопке для разных ее режимов.
SDL.GUI_ButtonSetNormalImage(button, img.normal);
SDL.GUI_ButtonSetHighlightImage(button, img.highlight);
SDL.GUI_ButtonSetPressedImage(button, img.pressed);
SDL.GUI_ButtonSetDisabledImage(button, img.disabled);
return button
end
local input
function GetInputText()
return SDL.GUI_TextEntryGetText(input);
end
function callbackf(param)
if param == "Exit" then
SDL.GUI_SetRunning(0);
SDL.GUI_Quit();
end
end
function CreateContents(x, y, w, h)
-- Создаем панель(невидимую) на которой будем рисовать.
local box = SDL.GUI_PanelCreate("box", x, y, w, h);
-- Рисуем форму для ввода текста.
input = SDL.GUI_TextEntryCreate("button", 20, 305, 200, 30, font, 32);
-- Устанавливаем в форме текст.
SDL.GUI_TextEntrySetText(input, "Exit");
-- Добавляем нашу форму в панель.
SDL.GUI_ContainerAdd(box, input);
-- Рисуем кнопку с помощью нашей функции.
local button = NormalButton("TestButton", 260, 350, font, btn_img, "OK", "callbackf(GetInputText())");
SDL.GUI_ContainerAdd(box, button);
return box;
end
function Init_gui(w, h)
-- Берем экран GUI.
local screen = SDL.GUI_GetScreen();
-- Загружаем шрифт.
print("Loading font...")
font = SDL.GUI_FontLoadTrueType("/cd/fonts/comic.ttf", 18);
-- Загружаем фоновую картинку.
print("Loading background...")
local background = SDL.GUI_SurfaceLoad("/cd/image/back/water.jpg");
-- Если играет музыка, остановим ее, иначе лаганет :)
DS.ds_exec_one("ogg stop");
-- Загружаем модуль последних обновлений
-- (если вы зами его не загружали до этого)
if LoadUpdate("/vmu/a1/DSUPDATE.KLZ") == 0 then
print("Can't open latest DreamShell update module.")
print("This script cannot run without update.")
return
end
-- значение i = 0 (с 0 символа в строке)
i = "0"
-- значение j = 100 (по 100 символ в строке)
j = "100"
-- выводим длину переменной x
print (string.len (x));
function mytext(i,j, oper)
-- очищаем экран консоли
for i=0, 1000, 1 do
print " "
end
-- выводим наш тескт с параметрами i,j
print (string.sub (x, i, j));
-- прокручиваем ткст вниз и увеличиваем каждую переменную на 10
if oper == "down" then
i = i+10
j = j+10
print ("i=",i)
print ("j=",j)
myfunc(i,j)
end
-- прокручивам текст вверх и уменьшаем каждую переменную на 10
if oper == "up" then
i = i-10
j = j-10
print ("i=",i)
print ("j=",j)
myfunc(i,j)
end
end
local ibuff = {}
local bc = 0
local exit = 1
function myfunc(i,j)
-- ждем ввода с клавиатуры
while exit do
-- 96 (тильда), 50 (цифра 2 на цифровой клавиатуре), 56 (цифра 8 на цифровой клавиатуре)
ibuff[bc] = DS.getchar()
if ibuff[bc] == 96 then
break
end
if ibuff[bc] == 50 then
mytext(i,j, "down")
end
if ibuff[bc] == 56 then
mytext(i,j, "up")
end
bc = bc+1
end
end
myfunc(i,j)
Dreamshell fAn
(Последний раз сообщение было отредактировано 19.12.2006 в 04:39, отредактировал пользователь zaero.)
-- Здесь нижняя часть экрана, теперь всегда одна и та же,
-- выделили мы под нее 50 пикселей, делаем с ними что хотим, например меню
-- code
-- Сообщаем какая страница откроется первой.
-- мы выбрали самую первую страницу(под нулевым значением), называется у нас MainPage
-- В дальнейшем эта функция вам пригодится для перехода по вашим страничкам,
-- например в вышенаписанном меню.
SDL.GUI_CardStackShowIndex(cards, 0);
return box;
end
function AppInit(w, h)
local screen = SDL.GUI_GetScreen();
local mainpage;
local background;
-- Тут загружаем картинку которую растянем на фон.
background = GUI_SurfaceLoad("background.jpg");
if background == nil then
print("ERROR: Can't load gui background.");
end