Home Database Mysql Tutorial LGame文档及0.2.8版发布预告

LGame文档及0.2.8版发布预告

Jun 07, 2016 pm 03:38 PM
for release document Preview

为了证明小弟最近 不是什么都没干,为了某位网友的呼唤,也为了表白在下确实正艰苦卓绝的构建着 文档及代码, LGame文档及0.2.8版,已决定于9月15日正式发布, 以下是一些相关信息。 LGame-0.2.8 版包结构如下 自 0.2.8 版起, LGame 中新增了 AVGScreen 类

 为了证明小弟最近不是什么都没干,为了某位网友的呼唤,也为了表白在下确实正艰苦卓绝的构建着 文档及代码, LGame文档及0.2.8版,已决定于9月15日正式发布, 以下是一些相关信息。

————————————————————————————————

LGame-0.2.8 版包结构如下

 

 LGame文档及0.2.8版发布预告

 

0.2.8 版起, LGame 中新增了 AVGScreen 类,以方便用户快速制作 AVG 类型游戏(当然, H Game 也可以的说……),或以此实现比较绚丽的动漫过场以及动漫交互效果 ( 没错,以后作贪食蛇都可以加 AVG 过场了 )


 

LGame文档及0.2.8版发布预告

 

以下本次更新后将会出现的,LGmae-0.2.8 AVGScreen中默认的脚本命令。


PS LGame 中脚本命令不区分大小写。

 

脚本命令

命令说明

Include

作用:

在当前脚本中载入另外一个脚本的内容,当导入脚本结束时将继续读取当前脚本。

写法:

Include res/myscript.txt

If …… else …… endif

作用:

分支判断脚本流程。

写法:

if a>b

XXXX

else if a==b

XXXX

else

XXXX

endif

begin …… end

作用:

此命令用以构造一组脚本,但不立即执行,仅在调用 call 命令时才能触发此命令内部的脚本。

写法:

Begin showMessage

  Mescolor red

Mes 孔曰成仁,孟曰取义。

XXXXX

End

Call

作用:

此命令用以调用指定的命令段,需要和 begin …… end 命令配合使用。

写法:

Call showMessage

此时 showMessage 命令段将被执行。

In …… out

作用:

这是一组从输入到输出的命令,在两组命令之间的字符串数据将被以选择框形式展现给用户。

写法:

In

A. 景德镇瓷器

B. 景德镇戏剧

C. 景德镇餐具

Out

select

作用:

为选择框加上标题,如果 select 命令为空,则 in …… out 命令输出的选择框将只有选项,而没有标题。

写法:

Select 景德镇盛产什么?

In

A. 景德镇瓷器

B. 景德镇戏剧

C. 景德镇餐具

Out

selleft

作用:

设定选择框文字在显示时距离选择框左侧的偏移距离,用以调节文字位置。

写法:

seleft 10

seltop

作用:

设定选择框文字在显示时距离选择框顶端的偏移距离,用以调节文字位置。

写法:

Seltop 10

mes

作用:

显示一组对话,用以令游戏角色向用户传递信息。

写法:

1 、单纯显示

Mes 吃了吗?没吃?!……没吃回家吃去吧。

2 、强制换行

Mes 吃了吗? /n 没吃?!…… /n 没吃回家吃去吧。

3 、转换指定范围内文字颜色

Mes 吃了吗 /> /n 没吃?!…… /n 没吃回家吃去吧。 (r 为红, w 为白, b 为黑, o 为橘黄 )

meslen            

作用:

规定 mes 命令在显示对话时每行最多的显示字数,超过将自动换行(不填时以系统判断的默认行数执行)。

写法:

Meslen 20

mescolor

作用:

规定 mes 命令在显示对话时文字的默认颜色。

写法:

Mescolor yellow

mestop

作用:

规定 mes 命令在显示时距离消息框上方的距离,用以调节文字位置。

写法:

Mestop 10

mesleft

作用:

规定 mes 命令在显示时距离消息框左边框的距离,用以调节文字位置。

写法:

Mesleft 10

messtop

作用:

关闭当前画面上的消息框或选择框。

写法:

messtop

gb

作用:

显示指定的背景画面。

写法:

gb res/background.png

cg

作用:

显示指定的角色画面。

写法:

1、  单纯显示

cg res/role.png

2、  显示在指定位置

cg res/role.png 50 50

3、  替换当前 cg

cg res/role.png to res/role1.png

4、  删除指定 cg

cg del res/role.png (ps: 只填写 cg del 则删除全部 cg)

sleep

作用:

令画面延迟指定时间,此段时间内画面将无响应。

写法:

Sleep 1000

flash

作用:

令画面以指定颜色闪烁。

写法:

Flash 200,125,200

cgwait

作用:

暂停当前画面,当点击时继续运行。

写法:

Cgwait

Fadein

作用:

以指定颜色进行屏幕淡入。

写法:

Fadein black

Fadeout

作用:

以指定颜色进行屏幕淡出。

写法:

Fadeout black

shake

作用 ;

让画面产生模拟震荡。

写法:

Shake 30

play

作用:

播放指定音乐。

写法:

Paly res/m1.wav

playloop

作用:

循环播放指定音乐。

写法:

Play res/m1.wav

playstop

作用:

停止音乐的播放。

写法:

Playstop 0 (0 为音乐索引号,按照添加顺序累加,直接 playstop 将停止所有音乐的播放 )

petal

作用:

画面呈现樱花飞舞效果。

写法:

Petal( 停止为 petalstop)

snow

作用:

画面呈现银装素裹效果。

写法:

Snow( 停止为 snowstop)

rain

作用:

画面呈现落雨纷纷效果。

写法:

Rain (停止为 rainstop

set

作用:

预定义脚本变量。脚本变量也可在 AVGScreen 中通过 Command 类设置,也多用于 AVGScreen 与脚本交互,或者定义需要重复使用的数据信息。

写法:

set var = “res/background.png”

set var1 = 100

print

作用:

将脚本中的预定义变量内容于指定位置显示出来。

写法:

1 set var = “res/background.png”

mes print(var)

2 set var =7

   If var == 7

     XXXX

   else

     XXXX

   endif

3 set var=10/2*36-7

reset

作用:

清空脚本中一切缓存,此时所有预订义变量都将不复存在。

写法:

Reset

//,#.’

作用:

以上三者为行注释符号,自该符号起一整行数据将不被脚本读取。

写法:

//XXXX

#XXXX

‘XXXX

/**/

作用:

区域注释符号,自 /* 起,直到 */ 结束的所有数据将不被脚本读取。

写法:

/*

XXXXXXXXX

XXXXX

XXX

*/

exit

作用:

离开 AVGScreen 窗体。当执行此命令时脚本将被强制终止,并执行 onExit 函数,多用于转换 Screen

写法:

exit

 

说到这里,其实我们可以看出 LGame 默认给出的脚本功能非常有限(相对专业 AVG 引擎而言),只包含了最基础的 AVG 功能。

 

但是,那并不重要,因为 LGame 是一款通用(万能)的游戏开发框架,只要 LGame 将相关修改权限交给游戏开发者,游戏开发者就完全可以通过 LGame 组件对 AVGScreen 扩充出任何您所需要的功能。

     

下列是一个继承自 AVGScreen 的窗体:



值得说明的是,即便什么都不再实现,继承自 AVGScreen 的窗体也可以起到解释并执行指定脚本的作用。另外 J2SE 版与 Android 版更新内容完全相同,故不再赘述。

 

事实上, AVGScreen 的操作使用非常之简便,只要结合 LGame 现有的强大组件与精灵支持,就算要制作出传说级的 AVG (或 galgame ),也只是轻而易举的事情罢了(当然,大前提是有美工支持,或者套用其它游戏图片……)。

 

再者,虽然 AVG 类游戏制作非常简单,某些类型的 AVG 游戏甚至非常卖座(比如月姬、圣杯战争、初音岛之类以及很多纯 H 的),但在 Android 上的 AVG 游戏却非常罕见,这给无论是原创或移植游戏都留下了巨大的商机。

 

另外 0.2.8 中也修正了所有大家反馈回来的 Bug (这次改版后应该没有特别明显的 Bug 存在了),并针对精灵类作了优化,修正了一些耗时的算法,同时为 LGame 的标准精类(不是仿 j2me 的那个)添加了自由旋转以及色彩过滤功能,并且增加了一些画面特效,具体留待正式发布时再详细说明。

 

小弟本周六、日两天准备死磕文档,没有发生人力不可抗拒之意外的话(诸如停电、受伤、其它项目赶工、硬盘崩溃、乃至海啸、地震、战争、外星人入侵、小弟蒙主召唤等等),文档以及 LGame-0.2.8 会在 2010 9 15 日晚 准时发布,不见不散。

 


 

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Insufficient memory or disk space to repagin or print this document Word error Insufficient memory or disk space to repagin or print this document Word error Feb 19, 2024 pm 07:15 PM

This article will introduce how to solve the problem of insufficient memory or disk space to repage or print the document in Microsoft Word. This error usually occurs when users try to print a Word document. If you encounter a similar error, please refer to the suggestions provided in this article to resolve it. Insufficient memory or disk space to repage or print this document Word error How to resolve the Microsoft Word printing error "There is not enough memory or disk space to repage or print the document." Update Microsoft Office Close memory-hogging applications Change your default printer Start Word in safe mode Rename the NorMal.dotm file Save the Word file as another

How to publish works on Xiaohongshu How to publish articles and pictures on Xiaohongshu How to publish works on Xiaohongshu How to publish articles and pictures on Xiaohongshu Mar 22, 2024 pm 09:21 PM

You can view various contents on Xiaohongshu, which can provide you with various help and help you discover a better life. If you have anything you want to share, you can post it here so that everyone can take a look. , and at the same time, it can bring you profits. It is very cost-effective. If you don’t know how to publish your works here, you can check out the tutorial. You can use this software every day and publish various contents to help everyone use it better. Don’t miss it if you need it! 1. Open Xiaohongshu and click the plus icon below. 2. There are [Video] [Picture] [Live Picture] options here; select the content you want to publish and click to check. 3. Select [Next] on the content editing page. 4. Enter the text content you want to publish and click [Publish Pen]

Why can't Xiaohongshu publish videos of works? How does it publish its work? Why can't Xiaohongshu publish videos of works? How does it publish its work? Mar 21, 2024 pm 06:36 PM

With the rapid development of social media, short video platforms have become the main channel for many users to express themselves and share their lives. Many users may encounter various problems when publishing videos of their works on Xiaohongshu. This article will discuss the reasons that may cause the video publishing of Xiaohongshu works to fail and provide the correct publishing method. 1. Why can’t Xiaohongshu publish videos of works? The Xiaohongshu platform may occasionally experience system failures, which may be caused by system maintenance or upgrades. In this case, users may encounter the problem of being unable to publish videos of their works. Users need to wait patiently for the platform to return to normal before trying to publish. An unstable or slow network connection may prevent users from posting videos of their work on Xiaohongshu. Users should confirm their network environment to ensure that the connection is stable and

Why can't Xiaohongshu be released? What should I do if the content published by Xiaohongshu cannot be displayed? Why can't Xiaohongshu be released? What should I do if the content published by Xiaohongshu cannot be displayed? Mar 21, 2024 pm 07:47 PM

As a lifestyle sharing platform, Xiaohongshu has attracted a large number of users to share their daily life and grow products. Many users have reported that their published content cannot be displayed. What is going on? This article will analyze the possible reasons why Xiaohongshu cannot be released and provide solutions. 1. Why can’t Xiaohongshu be released? Xiaohongshu implements strict community guidelines and has zero tolerance for publishing advertisements, spam, vulgar content, etc. If the user's content violates the regulations, the system will block it and the content will not be displayed. Xiaohongshu requires users to publish high-quality and valuable content, and the content needs to be unique and innovative. If the content is too generic and lacks innovation, it may not pass review and therefore not be displayed on the platform. 3. Account abnormality

When is the best time to publish Xiaohongshu? Where does it post the most traffic recommendations from? When is the best time to publish Xiaohongshu? Where does it post the most traffic recommendations from? Mar 21, 2024 pm 08:11 PM

In today's social network era, Xiaohongshu has become an important platform for young people to share their lives and obtain information. Many users hope to attract more attention and traffic by publishing content on Xiaohongshu. So, when is the best time to post content? This article will explore in detail the selection of Xiaohongshu’s publishing time and the publishing location with the most traffic recommendations. 1. When is the best time to publish Xiaohongshu? The best time to publish content on Xiaohongshu is usually during periods of high user activity. According to the characteristics and behavioral habits of Xiaohongshu users, there are several time periods that are more appropriate. During the time period from 7 pm to 9 pm, most users have returned home from get off work and started browsing content on their mobile phones in search of relaxation and entertainment. Therefore, content posted during this period is more likely to attract users

How to delete Xiaohongshu releases? How to recover after deletion? How to delete Xiaohongshu releases? How to recover after deletion? Mar 21, 2024 pm 05:10 PM

As a popular social e-commerce platform, Xiaohongshu has attracted a large number of users to share their daily life and shopping experiences. Sometimes we may inadvertently publish some inappropriate content, which needs to be deleted in time to better maintain our personal image or comply with platform regulations. 1. How to delete Xiaohongshu releases? 1. Log in to your Xiaohongshu account and enter your personal homepage. 2. At the bottom of the personal homepage, find the "My Creations" option and click to enter. 3. On the "My Creations" page, you can see all published content, including notes, videos, etc. 4. Find the content that needs to be deleted and click the "..." button on the right. 5. In the pop-up menu, select the "Delete" option. 6. After confirming the deletion, the content will disappear from your personal homepage and public page.

How to add redline to Word document How to add redline to Word document Mar 01, 2024 am 09:40 AM

It is 395 words, which is 495. This article will show you how to add red lines in Word documents. Redlining a document refers to making modifications to the document so that users can clearly see the changes. This feature is very important when multiple people are editing a document together. What redline means Marking a document Redlining means using red lines or callouts to indicate changes, edits, or revisions to a document. The term was inspired by the practice of using a red pen to mark printed documents. Redline comments are widely used in different scenarios, such as clearly showing recommended changes to authors, editors, and reviewers when editing a document. Propose changes and modifications in legal agreements or contracts Provide constructive criticism and suggestions on papers, presentations, etc. How to give W

How to publish works on Xiaohongshu app? Tutorial on publishing works on Xiaohongshu app in five minutes How to publish works on Xiaohongshu app? Tutorial on publishing works on Xiaohongshu app in five minutes Mar 12, 2024 pm 05:10 PM

How does the Xiaohongshu app publish works? Many friends know that there are a large number of creative works and a strong dating circle in this software. For users who are new to this software, they probably don’t know how to publish their works, so that more people can watch the other side of you. If you still don’t know how to publish the works in it, then quickly refer to the five-minute tutorial on publishing works on the Xiaohongshu app recommended by the editor of this site. Tutorial on publishing works in Xiaohongshu app in five minutes 1. Click [Three] As shown in the picture, click [Three] pointed by the red arrow in the upper left corner. 2. Click [Creation Center] As shown in the picture, click [Creation Center] pointed by the red arrow. 3. Click [Go to Publish] as shown in the picture,

See all articles