Author Topic: Tutorial from scratch  (Read 5144 times)

0 Members and 1 Guest are viewing this topic.

HarleyDavidson
  • Guest
Tutorial from scratch
« on: January 17, 2017, 03:00:21 PM »
Hi there!
At first, thank you very much for developing this great piece of software.

I watched several of the official tutorials on youtube, but these are all zelda-themed.

Is there a tutorial for developing a game from scratch?
Like creating a tilemap, generating the first map,
implementing a hero, treasures, items, npc?

I did not found anything. If there's really nothing at this point, I will document my process
and write a tutorial.

Christopho

  • Administrator
  • Hero Member
  • *****
  • Posts: 1195
    • View Profile
Re: Tutorial from scratch
« Reply #1 on: January 17, 2017, 03:35:04 PM »
We are working on a non Zelda resource pack, but at this point it not finished enough to make a full game with it or to make a lot of tutorials.
You have to create your own tilesets and sprites.

HarleyDavidson
  • Guest
Re: Tutorial from scratch
« Reply #2 on: January 19, 2017, 12:35:19 PM »
So I created a new quest and deleted everything (sprites, maps, entities and so on)
except my hero and my map with tileset.
The game starts, but the console displays:

Code: [Select]
Info: Solarus 1.5.1
Info: Opening quest 'C:/Users/admin/Dropbox/SolarusQuests/meinQuest'
Info: Sound volume: 100
Info: Music volume: 100
Info: Joypad support enabled: true
Info: 2D acceleration: yes
Info: Turbo mode: no
Info: Video mode: normal
Info: LuaJIT: yes (LuaJIT 2.0.3)
Info: Language: en
Info: Lua console: yes
Info: Simulation started
Error: Cannot find quest file 'sprites/hero/tunic1.dat'
Error: Cannot find quest file 'sprites/entities/shadow.dat'
Error: Cannot find quest file 'sprites/hero/sword1.dat'
Error: Cannot find quest file 'sprites/hero/sword_stars1.dat'
Error: Cannot find quest file 'sprites/hero/trail.dat'
Error: Missing entities image for tileset 'TileSet': tilesets/TileSet.entities.png

I cannot find any links to these files mentioned in the error messages.
Why are they shown?
Please see the attached zip file

Christopho

  • Administrator
  • Hero Member
  • *****
  • Posts: 1195
    • View Profile
Re: Tutorial from scratch
« Reply #3 on: January 19, 2017, 12:43:17 PM »
You cannot just delete all sprites and hope the game will work correctly. Some sprites are required for the game to run correctly, in particular hero sprites.

HarleyDavidson
  • Guest
Re: Tutorial from scratch
« Reply #4 on: January 19, 2017, 12:46:19 PM »
Ok, so these files are linked to the engine internally.
My quest starts and works without any errors so far (it is only the main hero and one map).

I try to fix these errors my copying them out of the example quest. Thanks so far! :)

Christopho

  • Administrator
  • Hero Member
  • *****
  • Posts: 1195
    • View Profile
Re: Tutorial from scratch
« Reply #5 on: January 19, 2017, 02:24:28 PM »
Here is the exact list of filenames currently hardcoded in the engine: https://github.com/solarus-games/solarus/blob/dev/work/data_files.txt

HarleyDavidson
  • Guest
Re: Tutorial from scratch
« Reply #6 on: January 19, 2017, 02:26:05 PM »
Thank you!
This list is very helpful.
At this moment I'm watching your tutorials  ;)

zutokaza

  • Full Member
  • ***
  • Posts: 146
  • Active - Making stories can take the most time.
    • View Profile
Re: Tutorial from scratch
« Reply #7 on: January 19, 2017, 07:45:16 PM »
Here is the exact list of filenames currently hardcoded in the engine: https://github.com/solarus-games/solarus/blob/dev/work/data_files.txt

Is there a list of hardcoded animation names?

I know "walking" and "stopped" are some hardcoded keywords.