Entrar
Últimos assuntos
» player não consegue andarpor lovn7 Qui 21 Nov 2024, 13:33
» É possível fazer istó no game maker
por William Lima Qui 21 Nov 2024, 10:56
» Rio Rise - novo launcher do Gta San Andreas SAMP Brasil
por Lua Sáb 16 Nov 2024, 20:22
» (Resolvido) Cenario longo x Texture Pages
por josuedemoraes Sáb 16 Nov 2024, 15:31
» Kids' band
por Adilson Lucindo Santos Sex 15 Nov 2024, 12:23
» (RESOLVIDO) Engasgos-Troca de Sprites/animações
por josuedemoraes Ter 12 Nov 2024, 01:49
» Block Room - DEMO
por Joton Qua 06 Nov 2024, 22:58
» Game Infinito vertical (subindo)
por macmilam Sáb 26 Out 2024, 12:36
» Retorno da GMBR!!!
por Dancity Ter 22 Out 2024, 16:36
» Máquina de estados
por aminaro Qui 10 Out 2024, 13:33
» como faço pra um objeto colidir com o outro e diminuir a vida do player ?
por josuedemoraes Qui 03 Out 2024, 16:51
» RESOLVIDO: Colisão com objetos moveis
por josuedemoraes Qua 02 Out 2024, 20:28
» Crypt of the Blood Moon
por divin sphere Qua 11 Set 2024, 18:18
» como fazer um objeto seguir?
por divin sphere Dom 18 Ago 2024, 18:08
» Procuro de alguém para Modelar/Texturizar/Animar objetos 3D
por un00brn Dom 11 Ago 2024, 11:10
» Destruição de cenário (estilo DD Tank)
por CoronelZeg Sex 09 Ago 2024, 17:16
» RESOLVIDO-Como destruir uma instancia especifica de um objeto
por josuedemoraes Ter 23 Jul 2024, 00:40
» Automatizar a coleta de id
por GabrielXavier Seg 22 Jul 2024, 18:01
» Preciso de ajuda para concluir um pequeno projeto
por lmoura Qui 27 Jun 2024, 15:45
» ANGULO ACOMPANHAR O OBJETO
por Klinton Rodrigues Qui 27 Jun 2024, 08:34
» Musica reinicia quando sala reinicia
por GabrielXavier Ter 18 Jun 2024, 07:28
» como fazer uma copia de gd
por generico_cube Sex 14 Jun 2024, 15:48
» Square Adventure
por guilherme551 Ter 11 Jun 2024, 09:54
» como posso definir limite de uma variavel
por GabrielXavier Sex 07 Jun 2024, 14:14
» [Resolvido] Dúvida, colisão única de objeto
por vdm842 Sex 24 maio 2024, 09:50
Sem Pausa...
2 participantes
Página 1 de 1
Sem Pausa...
Então...
Dêem uma olhada nesse código de textbox:
Se alguém puder fazer a gentileza de fazer esse mesmo código mas sem que o jogo que está acontecendo em volta seja pausado eu agradeceria...
Obs: O Código está aberto para uso, pois eu não possuo os direitos de uso e o autor disponibiliza-os abertamente...
DRcrusher
Dêem uma olhada nesse código de textbox:
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// //
// script name: show_textbox(x1,y1,x2,y2,text,sprite,img) //
// creator: max_buutz a.k.a Joel Arnott //
// year: 2005 //
// //
// description: Shows a text-box that can be used for dialogue, Game help and many more //
// //
// arguments: argument0 = x1 //
// argument1 = y2 //
// argument2 = x2 //
// argument3 = y2 //
// argument4 = Text //
// argument5 = Speaker Sprite //
// argument6 = Sub Image //
// //
// remarks: A stitch in time saves nine. //
// This script can be used in ANY event. //
// Credit is preferred but not needed. //
// Read the Game Information for more info. //
// //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
{
var x1, y1, x2, y2, text, mar, spd, bcol1, bcol2, fcol1, fcol2, tcol1, tcol2, name;
var tlength, line_break, tchr, tchr_prev, tchr_next, tchr_w, tword_w, tword, ti, tw, th, thick, ckey, cspr, old_alpha;
var tword_chrprev, tword_pos, tpart, text_height, sprite, img, sw, sh;
// Declaring temporary variables
x1 = 170 - 170;
y1 = 172 - 170;
x2 = 470 - 170;
y2 = 308 - 170;
text = argument0;
sprite = spr_character;
img = argument1;
name = argument2;
// IMPORTANT! - Change the variables below to customize all text-boxes. \\
mar = 12; // The margin. E.g. how far from the edge the text stops/starts. Also effects portrait sprite etc.
spd = 35; // Text speed. Low = Fast, High = Slow
bcol1 = make_color_rgb(255,181,0); // Border color 1 (Top)
bcol2 = make_color_rgb(255,181,0); // Border color 2 (Bottom)
fcol1 = make_color_rgb(25,33,66); // Fill color 1 (Top)
fcol2 = make_color_rgb(25,33,66); // Fill color 2 (Bottom)
tcol1 = c_black; // Text color 1 (Top)
tcol2 = c_black; // Text color 2 (Bottom)
thick = 2; // Border Thickness
ckey = vk_enter; // Continue key. What key you press to speed up the text and close the text-box.
cspr = spr_continue; // The small sprite that appears in the bottom-right corner of the text-box, prompting you to continue.
// IMPORTANT! - Do not change anything else (unless of course you are customizing it yourself) \\
if (sprite_exists(sprite))
{
sw = sprite_get_width(sprite) + mar;
sh = sprite_get_height(sprite);
}
else
{
sw = 0;
sh = 0;
}
tlength = string_length(text);
ti = 0;
tw = 0;
th = 0;
line_break = false;
split = false;
text_height = string_height('A#A') - string_height('A');
if y1 + mar*2 + sh > y2 y2 = y1 + mar*2 + sh;
if x1 + mar*2 + sw > x2 x2 = x1 + mar*2 + sw;
// Giving temporary variables values
//if thick > 0 draw_rectangle_color(x1,y1,x2,y2,bcol1,bcol1,bcol2,bcol2,false); //Draw The Border
//draw_rectangle_color(x1 + thick,y1 + thick,x2 - thick,y2 - thick,fcol1,fcol1,fcol2,fcol2,false); //Draw the Textbox
draw_sprite(spr_textbox,0,x1,y1);
if (sprite_exists(sprite))
{
draw_sprite(sprite,img,x1 + mar - 2,y1 + mar - 2);
//draw_text(x1 + mar + 4,y1 + mar - 2 + sh, name);
}
repeat (tlength)
{
ti += 1; // Important! This is the variable holds the current position for reading in the text.
// It is used to read the current character and draw it.
tchr = string_char_at(text,ti); // Reads the current character.
tchr_prev = string_char_at(text,ti-1); // Previous character.
tchr_next = string_char_at(text,ti+1); // Next character.
// Begin Line-break character checking.
if line_break == true // If there there needs to be a line-break.
{
th += text_height;
if th > y2-y1-thick-mar*2 {split = true; break;};
tw = 0;
line_break = false;
}
if tchr != '\' && tchr_next == '#'
{
line_break = true;
}
if tchr == '\' && tchr_next == '#' continue;
if tchr == '#' && tchr_prev == '\' tchr = '\#';
// End Line-break character checking.
// Begin Pause character checking.
if tchr == '\' && tchr_next == '|' continue;
if tchr == '|' && tchr_prev != '\' {if keyboard_check(ckey) sleep(spd*2) else sleep(spd*4); continue;}
// End Pause character checking.
tchr_w = string_width(tchr);
if string_char_at(text,ti-1) == ' ' or string_char_at(text,ti-1) == '.' or string_char_at(text,ti-1) == '-' or ti == 1
// Checks if it is currently at the beginning of a new word.
{
tpart = string_copy(text,ti,tlength-ti);
var temp1, temp2, temp3;
temp1 = string_pos('-',tpart);
if temp1 == 0 temp1 = 10000;
temp2 = string_pos('.',tpart);
if temp2 == 0 temp2 = 10000;
temp3 = string_pos(' ',tpart);
if temp3 == 0 temp3 = 10000;
temp4 = string_pos(' ',tpart);
if temp4 == 0 temp4 = 10000;
temp5 = string_pos(' ',tpart);
if temp5 == 0 temp5 = 10000;
// This bit is simply a 'stop-gap' solution to a slight problem. It still works.
tword_pos = min(temp1,temp2,temp3,temp4,temp5);
// Spaces, full-stops (or periods) and hyphens represent the end of 'words'. This finds the closest one (the correct one)
tword = string_copy(text,ti,tword_pos-1);
// Reads the word about to be typed.
tword_chrprev = ''; // Initiates previous character variable. Empty because at start of string (no prev. character).
for (i = 1; i <= string_length(tword); i += 1;)
{
tword_chr = string_char_at(tword,i); // Reads a character from the word and places in variable.
if tword_chr == '#' && tword_chrprev != '\' {tword = string_delete(tword,i,1) i -= 1;};
// Removes newline characters when they are not specially included using the '\' character.
if tword_chr == '|' && tword_chrprev != '\' {tword = string_delete(tword,i,1); i -= 1;}
// Removes pause characters when they are not specially included using the '\' character.
tword_chrprev = tword_chr;
// Places current character into previous character variable for use in next repetition.
};
tword_w = string_width(tword); // Variable for the width of tword (the word read from the text).
if x1 + mar + tw + tword_w + sw > x2-mar // If the text width + the word width goes outside the margins of the text box
{
th += text_height; // Go down a line.
if th + string_height(tchr) > y2-y1-thick-mar*2 {split = true; break;};
// If the new text height is more than the bottom margin, split the text-box into two in succession
tw = 0; // When you reach the end of a line, go back to the start. Think of a typewriter.
};
};
draw_text_color(x1+mar+tw+sw,y1+mar+th,tchr,tcol1,tcol1,tcol2,tcol2,1);
// Draws the character.
tw += tchr_w;
// Adds the width of the character to tw (text width). This moves the drawing over a bit after each character.
screen_refresh();
// You see screen_refresh() quite a bit in this script. This is because the game is drawing onto the internal image.
// The internal image is invisible. When the drawing events are performed, first the room background is drawn,
// erasing anything you drew on the internal image. But when you use screen_refresh(), the internal image is placed
// directly onto the screen.
if keyboard_check(ckey) sleep(spd/2) else sleep(spd);
// Pauses after each drawn letter.
// If you are holding the 'Continue' key, it only pauses for half the normal time.
};
if cspr != -1 draw_sprite(cspr,-1,x2-mar-sprite_get_width(cspr)+sprite_get_xoffset(cspr),y2-mar-sprite_get_height(cspr)+sprite_get_yoffset(cspr));
// Draws the 'Continue' sprite.
screen_refresh();
do {keyboard_wait();} until (keyboard_check(ckey));
// Freezes game until you press the 'Continue' key.
// Start of darkening
/*old_alpha = draw_get_alpha();
draw_set_alpha(0.4);
draw_rectangle_color(x1,y1,x2,y2,c_black,c_black,c_black,c_black,false);
draw_set_alpha(old_alpha);*/
// End of darkening. After text-box has 'lost focus' (e.g. continue key pressed) it darkens.
screen_refresh();
if split == true show_textbox(string_copy(text,ti,tlength-ti+1),img);
// If there is too much text to fit on one text-box, bring up another one to show the rest.
}
Se alguém puder fazer a gentileza de fazer esse mesmo código mas sem que o jogo que está acontecendo em volta seja pausado eu agradeceria...
Obs: O Código está aberto para uso, pois eu não possuo os direitos de uso e o autor disponibiliza-os abertamente...
DRcrusher
DRcrusher- Data de inscrição : 30/01/2011
Reputação : 0
Número de Mensagens : 17
Prêmios :
x 0 x 0 x 0
x 0 x 0 x 0
x 0 x 0 x 0
Re: Sem Pausa...
A linha já estava até comentada, aliás:
Troque por isso:
- Código:
do {keyboard_wait();} until (keyboard_check(ckey));
// Freezes game until you press the 'Continue' key.
Troque por isso:
- Código:
if not keyboard_check(ckey) then exit;
GameMakerTutoriais- Data de inscrição : 29/01/2011
Reputação : 26
Número de Mensagens : 800
Prêmios :
x 0 x 4 x 0
x 0 x 0 x 0
x 0 x 0 x 0
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos